diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..264bc0564aee199db9512d6d5c00d697e03c7c83 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +from node:16.10.0 + +copy . /data + +workdir /data \ No newline at end of file diff --git a/app.js b/app.js index 137f520566e2704db40824a98ced16f471bf4fa2..81583b034a31f4e1f2e27aedee14493549b8baf4 100755 --- a/app.js +++ b/app.js @@ -40,10 +40,10 @@ let opts = { } -app.use('/callComponent', proxy('http://192.168.100.108:8088', opts)); -app.use('/app', proxy('http://192.168.100.108:8088', opts)); +app.use('/callComponent', proxy('http://hc:8008', opts)); +app.use('/app', proxy('http://hc:8008', opts)); app.use('/ws', createProxyMiddleware({ - target: 'http://192.168.100.108:8008', + target: 'http://hc:8008', changeOrigin: true, ws: true })); diff --git a/public/.DS_Store b/public/.DS_Store index 982f3fda72555f5c356492cacd3ba5138f5fcb67..41f4eb79ec642cd355b77c0b4600e3d13636bdbd 100755 Binary files a/public/.DS_Store and b/public/.DS_Store differ diff --git a/public/components/contract/contractDetailFee/contractDetailFee.html b/public/components/contract/contractDetailFee/contractDetailFee.html index 407127e07fbcd69d931c8f934e4ee356961ba582..d6087001e550e82fd3ad2df43d127af7315a0172 100644 --- a/public/components/contract/contractDetailFee/contractDetailFee.html +++ b/public/components/contract/contractDetailFee/contractDetailFee.html @@ -7,16 +7,13 @@
- - -
@@ -96,7 +93,9 @@ {{_getContractAttrValue(fee.feeAttrs,'390003')}} -
+
+ +
@@ -112,29 +111,22 @@ {{fee.stateName}} - - - - @@ -152,7 +144,7 @@ - {{contractDetailRoomFeeInfo.totalAmount}} + {{contractDetailFeeInfo.totalAmount}}
@@ -160,6 +152,6 @@
- + \ No newline at end of file diff --git a/public/components/contract/contractDetailFile/contractDetailFile.js b/public/components/contract/contractDetailFile/contractDetailFile.js index 21ad957fba452de5a0867768bee0fcf3d0beab09..000f67851670f60e5d118341ea8109429bbb5410 100644 --- a/public/components/contract/contractDetailFile/contractDetailFile.js +++ b/public/components/contract/contractDetailFile/contractDetailFile.js @@ -35,8 +35,8 @@ vc.http.apiGet('/contractFile/queryContractFile', param, function (json, res) { - var _contractTFile = JSON.parse(json); - vc.component.contractDetailInfo.files = _contractTFile.data; + let _contractTFile = JSON.parse(json); + $that.contractDetailFileInfo.files = _contractTFile.data; }, function (errInfo, error) { console.log('请求失败处理'); diff --git a/public/components/dev/addBusinessType/addBusinessType.html b/public/components/dev/addBusinessType/addBusinessType.html index 7e3189437b43711761582dde0b845b6232afb726..81493b5c1372013edb806059007726bb41dee84e 100755 --- a/public/components/dev/addBusinessType/addBusinessType.html +++ b/public/components/dev/addBusinessType/addBusinessType.html @@ -22,7 +22,7 @@
-
+
diff --git a/public/components/fee/downloadCollectionLetterOrder/downloadCollectionLetterOrder.html b/public/components/fee/downloadCollectionLetterOrder/downloadCollectionLetterOrder.html new file mode 100644 index 0000000000000000000000000000000000000000..96587184c8f9e8d8d22dcf8832aec8c2244e3505 --- /dev/null +++ b/public/components/fee/downloadCollectionLetterOrder/downloadCollectionLetterOrder.html @@ -0,0 +1,46 @@ + +
\ No newline at end of file diff --git a/public/components/fee/downloadCollectionLetterOrder/downloadCollectionLetterOrder.js b/public/components/fee/downloadCollectionLetterOrder/downloadCollectionLetterOrder.js new file mode 100644 index 0000000000000000000000000000000000000000..d2bfa9fa233ab8b54ef2a80650504ab1b2479a8d --- /dev/null +++ b/public/components/fee/downloadCollectionLetterOrder/downloadCollectionLetterOrder.js @@ -0,0 +1,76 @@ +(function(vc) { + vc.extends({ + data: { + downloadCollectionLetterOrderInfo: { + floors: [], + floorId:'', + roomId:'' + } + }, + _initMethod: function() { + + }, + _initEvent: function() { + vc.on('downloadCollectionLetterOrder', 'openExportExcel', + function(_room) { + $that.clearRoomCreateFeeAddData(); + $that._loadDownloadCollectionLetterFloors(); + $that.downloadCollectionLetterOrderInfo.roomId = _room.roomId; + $('#downloadCollectionLetterOrderModel').modal('show'); + }); + }, + methods: { + _loadDownloadCollectionLetterFloors: function() { + let param = { + params: { + page: 1, + row: 100, + communityId: vc.getCurrentCommunity().communityId, + } + } + vc.http.apiGet( + '/floor.queryFloors', + param, + function (json, res) { + let _json = JSON.parse(json); + $that.downloadCollectionLetterOrderInfo.floors = _json.apiFloorDataVoList; + }, + function (errInfo, error) { + console.log('请求失败处理'); + vc.toast(errInfo); + }); + }, + clearRoomCreateFeeAddData: function() { + $that.downloadCollectionLetterOrderInfo = { + floors: [], + floorId:'', + roomId:'' + }; + }, + _exportCollectionLetterExcel: function() { + $('#downloadCollectionLetterOrderModel').modal('hide'); + let param = { + params: { + communityId:vc.getCurrentCommunity().communityId, + pagePath:'dataFeeManualCollection', + floorId:$that.downloadCollectionLetterOrderInfo.floorId, + roomId:$that.downloadCollectionLetterOrderInfo.roomId + + } + }; + //发送get请求 + vc.http.apiGet('/export.exportData', param, + function(json, res) { + let _json = JSON.parse(json); + vc.toast(_json.msg); + if (_json.code == 0) { + vc.jumpToPage('/#/pages/property/downloadTempFile?tab=下载中心') + } + }, + function(errInfo, error) { + console.log('请求失败处理'); + }); + }, + } + }); +})(window.vc); \ No newline at end of file diff --git a/public/components/frame/dataPrivilegeStaff/dataPrivilegeStaff.js b/public/components/frame/dataPrivilegeStaff/dataPrivilegeStaff.js index a90d0918b841333cad6723461a421a6d38d9c4a6..33808ab402f814985c8598fc1626f74d13236a26 100644 --- a/public/components/frame/dataPrivilegeStaff/dataPrivilegeStaff.js +++ b/public/components/frame/dataPrivilegeStaff/dataPrivilegeStaff.js @@ -73,7 +73,7 @@ vc.component._listDataPrivilegeStaffs(DEFAULT_PAGE, DEFAULT_ROWS); }, _toStaffDetail: function (_dataPrivilegeStaff) { - vc.jumpToPage('/#/pages/frame/staffDetail?staffId=' + _dataPrivilegeStaff.staffId) + vc.jumpToPage('/#/pages/staff/staffDetail?staffId=' + _dataPrivilegeStaff.staffId) } } }); diff --git a/public/components/frame/roleStaff/roleStaff.js b/public/components/frame/roleStaff/roleStaff.js index c87826d1d1e7b109e4b3350b57b060f8238ba952..62f299efdb948bd4993920f2618d9a42ccd99a94 100644 --- a/public/components/frame/roleStaff/roleStaff.js +++ b/public/components/frame/roleStaff/roleStaff.js @@ -74,7 +74,7 @@ vc.component._listRoleStaffs(DEFAULT_PAGE, DEFAULT_ROWS); }, _toStaffDetail: function (_roleStaff) { - vc.jumpToPage('/#/pages/frame/staffDetail?staffId=' + _roleStaff.userId) + vc.jumpToPage('/#/pages/staff/staffDetail?staffId=' + _roleStaff.userId) } } }); diff --git a/public/components/property/addFeeConfig/addFeeConfig.html b/public/components/property/addFeeConfig/addFeeConfig.html index 4ba854583057ab79efb69f36880d315b4e8b76c2..1fe68ce48b98456028763696e3539a5e4909c2f5 100755 --- a/public/components/property/addFeeConfig/addFeeConfig.html +++ b/public/components/property/addFeeConfig/addFeeConfig.html @@ -82,16 +82,17 @@
- + + + + + + + +
- +
diff --git a/public/components/property/addOwner/addOwner.js b/public/components/property/addOwner/addOwner.js index 508aa7683898172d01fded5d5271da3852783a7e..78bc17badedf4b9ad6cedf4a1194cf795557e14e 100755 --- a/public/components/property/addOwner/addOwner.js +++ b/public/components/property/addOwner/addOwner.js @@ -87,6 +87,7 @@ }); }, saveOwnerInfo: function() { + let _url = "/owner.saveOwner"; if (!vc.component.addOwnerValidate()) { vc.toast(vc.validate.errInfo); return; @@ -98,8 +99,11 @@ if (vc.component.addOwnerInfo.componentTitle == '业主') { vc.component.addOwnerInfo.ownerTypeCd = '1001'; } + if($that.addOwnerInfo.ownerTypeCd && $that.addOwnerInfo.ownerTypeCd != '1001'){ + _url = "/owner.saveOwnerMember" + } vc.component.addOwnerInfo.communityId = vc.getCurrentCommunity().communityId; - vc.http.apiPost('/owner.saveOwner', + vc.http.apiPost(_url, JSON.stringify(vc.component.addOwnerInfo), { emulateJSON: true }, diff --git a/public/components/property/addOwnerRepair/addOwnerRepair.html b/public/components/property/addOwnerRepair/addOwnerRepair.html index d796c5e92ffd9ea24432c03fda80fd2cfb2599b4..7820475d60f4c6f7f1a2f9a8d3bab8f48fa44f0b 100755 --- a/public/components/property/addOwnerRepair/addOwnerRepair.html +++ b/public/components/property/addOwnerRepair/addOwnerRepair.html @@ -78,7 +78,7 @@
- +
diff --git a/public/components/property/bindOwnerShops/bindOwnerShops.html b/public/components/property/bindOwnerShops/bindOwnerShops.html index 28a2a866b7820c8db4857464c5625050a8338d3a..cd868a788777522a84910967fe5459e8d7bad483 100755 --- a/public/components/property/bindOwnerShops/bindOwnerShops.html +++ b/public/components/property/bindOwnerShops/bindOwnerShops.html @@ -10,7 +10,7 @@
-
+
-
+
-
-
+
+ +
+ +
+
-
- - +
+
+
-
-
-
\ No newline at end of file diff --git a/public/pages/property/editEquipmentAccount/editEquipmentAccount.html b/public/pages/property/editEquipmentAccount/editEquipmentAccount.html index 890f5aee49bc0670460de3ea9b1e54595f7fb9c5..62fda46eccd97810f38846c484bb5a1d3ba85b5d 100644 --- a/public/pages/property/editEquipmentAccount/editEquipmentAccount.html +++ b/public/pages/property/editEquipmentAccount/editEquipmentAccount.html @@ -1,169 +1,151 @@
-
-
-
-
- - - -
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file diff --git a/public/pages/property/handover/handover.html b/public/pages/property/handover/handover.html index fb942e6ae694a4c5520c7e25c46ee275b0f73e18..420ddf94eb701a6b5b244be6eb7b7e49bef0153f 100644 --- a/public/pages/property/handover/handover.html +++ b/public/pages/property/handover/handover.html @@ -59,7 +59,7 @@
- +
diff --git a/public/pages/property/inspectionTaskManage/inspectionTaskManage.js b/public/pages/property/inspectionTaskManage/inspectionTaskManage.js index de4f1e3e7076da127886d2a945af1a87d43e0fc5..71145e34c914b2b73c289f26c2140de563c81c93 100755 --- a/public/pages/property/inspectionTaskManage/inspectionTaskManage.js +++ b/public/pages/property/inspectionTaskManage/inspectionTaskManage.js @@ -20,7 +20,8 @@ actInsTime: '', startTime: '', endTime: '', - state: '' + state: '', + orderByDesc: 'desc' } } }, diff --git a/public/pages/property/owePayFeeOrder/owePayFeeOrder.js b/public/pages/property/owePayFeeOrder/owePayFeeOrder.js index 08d564e57aa4b795a055d1c5539fda1fc14a72d5..5a89781060f72a8326621a682876fb4bcd5ec759 100755 --- a/public/pages/property/owePayFeeOrder/owePayFeeOrder.js +++ b/public/pages/property/owePayFeeOrder/owePayFeeOrder.js @@ -293,7 +293,7 @@ $that._closeDoOwePayFeeModal(); let _data = _json.data; let receiptIds = ''; - _data.forEach(item => { + _data.receipts.forEach(item => { receiptIds += (item.receiptId + ','); }) $that.owePayFeeOrderInfo.receiptIds = receiptIds; diff --git a/public/pages/property/printOweFee/printOweFee.html b/public/pages/property/printOweFee/printOweFee.html index 271ac07dbf04523e7ae331fc45ca076408d85952..22d8e2eee95504f7844532de002e681571817d4a 100755 --- a/public/pages/property/printOweFee/printOweFee.html +++ b/public/pages/property/printOweFee/printOweFee.html @@ -18,13 +18,27 @@ - - - - - - - + + + + + + + @@ -32,8 +46,7 @@ @@ -43,7 +56,7 @@ - + diff --git a/public/pages/property/reportFeeSummary/reportFeeSummary.html b/public/pages/property/reportFeeSummary/reportFeeSummary.html index 3f57247a3fb35b18767d5899751a35ac7143049e..fa939ee586dff98e6a955a40495ccfc1d9a70feb 100755 --- a/public/pages/property/reportFeeSummary/reportFeeSummary.html +++ b/public/pages/property/reportFeeSummary/reportFeeSummary.html @@ -120,13 +120,22 @@ + + + @@ -146,10 +155,25 @@ {{fee.receivedFee}} + + - + + + - - @@ -151,20 +145,18 @@ - diff --git a/public/user.html b/public/user.html index 2a731b3ff8dbd55d4d695e68b04ea7cce2ced39b..5ff4ac88241df8d9f004ce01fda2f73b3cc95dfc 100755 --- a/public/user.html +++ b/public/user.html @@ -36,13 +36,6 @@
-
- diff --git a/public/vcCore/vc-validate.js b/public/vcCore/vc-validate.js index 478d89707440707da2375d4fcad739f0553837ab..1951f8999ee0bf6aa8da7c0457244fd1f66d9ef1 100755 --- a/public/vcCore/vc-validate.js +++ b/public/vcCore/vc-validate.js @@ -36,9 +36,18 @@ vc 校验 工具类 -method 校验手机号 **/ phone:function(text){ - var regPhone =/^0?1[3|4|5|6|7|8][0-9]\d{8}$/; + console.log('(vc-validate)phone:' + text) + var regPhone =/^.*$/; return regPhone.test(text); }, + + /** + 校验手机号 + **/ + // newPhone:function(text){ + // var regPhone =/^0?1[3|4|5|6|7|8][0-9]\d{1}$/; + // return regPhone.test(text); + // }, /** 校验邮箱 **/ diff --git a/public/vcCore/vcFramework-0.4.js b/public/vcCore/vcFramework-0.4.js index 2e176cb91d7594128ae606ff2c71c5300760001c..88f6cf59de854d0e7932077b2a63541e1c3cb3d6 100755 --- a/public/vcCore/vcFramework-0.4.js +++ b/public/vcCore/vcFramework-0.4.js @@ -1687,7 +1687,8 @@ vc 校验 工具类 -method 校验手机号 **/ phone: function (text) { - let regPhone = /^0?1[3|4|5|6|7|8|9][0-9]\d{8}$/; + console.log('(vcFramework-0.4)phone:' + text) + var regPhone =/^.*$/; return regPhone.test(text); }, /** diff --git a/public/vcCore/vcFramework.js b/public/vcCore/vcFramework.js index b10a655122fa14bff8b87a832e19cdd1c14781c8..d9a6e131a489c832e4ac9cbf96ef266219d0bef5 100755 --- a/public/vcCore/vcFramework.js +++ b/public/vcCore/vcFramework.js @@ -2337,7 +2337,8 @@ 校验手机号 **/ phone: function(text) { - let regPhone = /^0?1[3|4|5|6|7|8|9][0-9]\d{8}$/; + console.log('(vcFramework)phone:' + text) + var regPhone =/^.*$/; return regPhone.test(text); }, /**
+ + + + + + + + + + + + + +
{{item.payerObjName}} {{item.feeName}} - {{vc.dateFormat(item.endTime)}} - {{_getDeadlineTime(item)}} + {{vc.dateFormat(item.endTime)}}至{{_getDeadlineTime(item)}}
{{item.preDegrees}} 至 {{item.curDegrees}}
{{(item.curDegrees-item.preDegrees).toFixed(2)}} {{printPayFeeInfo.builtUpArea}}{{item.mwPrice}}{{item.mwPrice}} {{item.squarePrice}}/{{item.additionalAmount}} {{item.feeTotalPrice}}
- + + + + + - + + +
+ {{fee.curReceivableFee}} + + {{(fee.curReceivableFee-fee.curOweFee).toFixed(2)}} + {{((fee.feeRoomCount-fee.oweRoomCount)/fee.feeRoomCount*100).toFixed(2)}}% - {{((fee.receivedFee-fee.preReceivedFee)/(fee.hisOweFee+fee.curReceivableFee)*100).toFixed(2)}}% + + 0% + + {{((fee.curReceivableFee-fee.curOweFee)/(fee.curReceivableFee)*100).toFixed(2)}}% + + 0% + + {{((fee.hisReceivedFee)/(fee.hisReceivedFee+fee.hisOweFee)*100).toFixed(2)}}% 0% diff --git a/public/pages/property/reportFeeSummary/reportFeeSummary.js b/public/pages/property/reportFeeSummary/reportFeeSummary.js index 30117cb3feb5824b5b486a68990e35943489bdbf..42b57acc9afeec70d34e95e1e0a6a6dbc1d20d22 100755 --- a/public/pages/property/reportFeeSummary/reportFeeSummary.js +++ b/public/pages/property/reportFeeSummary/reportFeeSummary.js @@ -56,11 +56,12 @@ } $that.reportFeeSummaryInfo.conditions.startDate = _newDate; _data.setMonth(_data.getMonth() + 1); + _data.setDate(0); _month = _data.getMonth() + 1; if (_month < 10) { - _newDate = _data.getFullYear() + "-0" + _month + "-01"; + _newDate = _data.getFullYear() + "-0" + _month + '-' + _data.getDate(); } else { - _newDate = _data.getFullYear() + "-" + _month + "-01"; + _newDate = _data.getFullYear() + "-" + _month + '-'+ _data.getDate(); } $that.reportFeeSummaryInfo.conditions.endDate = _newDate; }, diff --git a/public/pages/property/reportHuaning/reportHuaning.html b/public/pages/property/reportHuaning/reportHuaning.html index c4d97a6969adbc0c93b96fdaa2a6fad70f3b9fa4..1e74daea03ea4ba25b71e90a717677419bf51319 100644 --- a/public/pages/property/reportHuaning/reportHuaning.html +++ b/public/pages/property/reportHuaning/reportHuaning.html @@ -1,19 +1,16 @@
-
-
+
- +
@@ -95,7 +93,7 @@
- + @@ -388,4 +385,5 @@ +
\ No newline at end of file diff --git a/public/pages/property/roomCreateFee/roomCreateFee.js b/public/pages/property/roomCreateFee/roomCreateFee.js index 24e0bbb7abf8f2f1e1a219f0621c3c32e349c207..b28e3f52463eeb02bbfbddff6a19e0a3459f1525 100755 --- a/public/pages/property/roomCreateFee/roomCreateFee.js +++ b/public/pages/property/roomCreateFee/roomCreateFee.js @@ -183,10 +183,15 @@ }); }, _downloadCollectionLetterOrder: function () { - vc.jumpToPage('/callComponent/feeManualCollection/downloadCollectionLetterOrder?communityId=' + vc.getCurrentCommunity().communityId); + //vc.jumpToPage('/callComponent/feeManualCollection/downloadCollectionLetterOrder?communityId=' + vc.getCurrentCommunity().communityId); + vc.emit('downloadCollectionLetterOrder', 'openExportExcel',{}) }, _downloadRoomCollectionLetterOrder: function (_room) { - vc.jumpToPage('/callComponent/feeManualCollection/downloadCollectionLetterOrder?communityId=' + vc.getCurrentCommunity().communityId + "&roomId=" + _room.roomId); + //vc.jumpToPage('/callComponent/feeManualCollection/downloadCollectionLetterOrder?communityId=' + vc.getCurrentCommunity().communityId + "&roomId=" + _room.roomId); + vc.emit('downloadCollectionLetterOrder', 'openExportExcel',{ + roomId:_room.roomId + }) + }, _toPrintReminderFee: function (_room) { }, @@ -418,7 +423,7 @@ roomId: $that.roomCreateFeeInfo.roomId }) }, - _toSimplifyAcceptance: function (_room) { + _roomCreateFeetoSimplifyAcceptance: function () { let _date = new Date(); vc.saveData("JAVA110_IS_BACK", _date.getTime()); vc.saveData('simplifyAcceptanceSearch', { diff --git a/public/pages/report/dataReport/dataReport.html b/public/pages/report/dataReport/dataReport.html index 868f3c84f8551bd10a7cd49eddc7e3d7b71ef87e..6e6ba111f84cabeef11a5a5b7531382213ecd518 100644 --- a/public/pages/report/dataReport/dataReport.html +++ b/public/pages/report/dataReport/dataReport.html @@ -87,12 +87,22 @@ - + + +
@@ -113,6 +123,13 @@
+
+ +
+
+ +
+
diff --git a/public/pages/report/dataReport/dataReport.js b/public/pages/report/dataReport/dataReport.js index 30b8305a3a2407735fd2ac21f37eebf307db4bef..d002057abeca820afdeed748c806b59bd1e7f35b 100644 --- a/public/pages/report/dataReport/dataReport.js +++ b/public/pages/report/dataReport/dataReport.js @@ -40,7 +40,10 @@ $that._changeDate(); }); vc.initDate('endDate', function(_value) { + console.log(_value) $that.dataReportInfo.conditions.endDate = _value; + console.log($that.dataReportInfo.conditions.endDate) + $that._changeDate(); }); let _data = new Date(); @@ -64,17 +67,19 @@ _changeDate: function(_day) { $that.dataReportInfo.curDay = _day; let _endDate = new Date(); - $that.dataReportInfo.conditions.endDate = _endDate.getFullYear() + "-" + (_endDate.getMonth() + 1) + "-" + _endDate.getDate(); if (_day == 'today') { + $that.dataReportInfo.conditions.endDate = _endDate.getFullYear() + "-" + (_endDate.getMonth() + 1) + "-" + _endDate.getDate(); $that.dataReportInfo.conditions.startDate = _endDate.getFullYear() + "-" + (_endDate.getMonth() + 1) + "-" + _endDate.getDate(); } else if (_day == 'yesterday') { _endDate.setDate(_endDate.getDate() - 1); $that.dataReportInfo.conditions.endDate = _endDate.getFullYear() + "-" + (_endDate.getMonth() + 1) + "-" + _endDate.getDate(); $that.dataReportInfo.conditions.startDate = _endDate.getFullYear() + "-" + (_endDate.getMonth() + 1) + "-" + _endDate.getDate(); } else if (_day == 'seven') { + $that.dataReportInfo.conditions.endDate = _endDate.getFullYear() + "-" + (_endDate.getMonth() + 1) + "-" + _endDate.getDate(); _endDate.setDate(_endDate.getDate() - 7); $that.dataReportInfo.conditions.startDate = _endDate.getFullYear() + "-" + (_endDate.getMonth() + 1) + "-" + _endDate.getDate(); } else if (_day == 'thirty') { + $that.dataReportInfo.conditions.endDate = _endDate.getFullYear() + "-" + (_endDate.getMonth() + 1) + "-" + _endDate.getDate(); _endDate.setDate(_endDate.getDate() - 30); $that.dataReportInfo.conditions.startDate = _endDate.getFullYear() + "-" + (_endDate.getMonth() + 1) + "-" + _endDate.getDate(); } @@ -82,6 +87,7 @@ $that._loadDataReportOrder(); $that._loadDataReportInout(); $that._loadDataReportOthers(); + $that.changeTab($that.dataReportInfo._currentTab); }, _loadDataReportFee: function() { diff --git a/public/pages/scm/couponPropertyUserManage/couponPropertyUserManage.html b/public/pages/scm/couponPropertyUserManage/couponPropertyUserManage.html index dd2dc51a31ef28540b4f7381259d700fae85a2b5..3f2228ab32f367028763f68c042c14b9390b205f 100644 --- a/public/pages/scm/couponPropertyUserManage/couponPropertyUserManage.html +++ b/public/pages/scm/couponPropertyUserManage/couponPropertyUserManage.html @@ -7,32 +7,28 @@
- +
- +
- +
- +
-
-
+
- +
-
+
- +
-
+
@@ -131,12 +125,12 @@
+ +
{{couponPropertyUser.stock}}张 {{couponPropertyUser.state == '1001'?'未使用':'已使用'}} {{couponPropertyUser.startTime}} +