diff --git a/public/components/frame/menu/menu.js b/public/components/frame/menu/menu.js index cb1036240..6be758d75 100644 --- a/public/components/frame/menu/menu.js +++ b/public/components/frame/menu/menu.js @@ -120,20 +120,19 @@ vc.setMenuState('OFF'); }, _gotoPage: function (_href) { - let copyMenus = this.menus; - for (var menuIndex = 0; menuIndex < copyMenus.length; menuIndex++) { - if (copyMenus[menuIndex].hasOwnProperty('childs')) { - var _childs = copyMenus[menuIndex].childs; + for (var menuIndex = 0; menuIndex < this.menus.length; menuIndex++) { + if (this.menus[menuIndex].hasOwnProperty('childs')) { + var _childs = this.menus[menuIndex].childs; for(var childIndex = 0; childIndex < _childs.length; childIndex++){ if(_href == _childs[childIndex].href){ - copyMenus[menuIndex].childs[childIndex].active = true; + this.menus[menuIndex].childs[childIndex].active = true; } else { - copyMenus[menuIndex].childs[childIndex].active = false; + this.menus[menuIndex].childs[childIndex].active = false; } } } } - this.$set(this.menus, copyMenus); + this.$forceUpdate(); vc.jumpToPage(_href); } diff --git a/public/index.html b/public/index.html index bdede314b..b598a66a3 100644 --- a/public/index.html +++ b/public/index.html @@ -16,7 +16,6 @@ -
diff --git a/public/pages/property/listCarFee/listCarFee.html b/public/pages/property/listCarFee/listCarFee.html index 93699d300..59f3856f1 100644 --- a/public/pages/property/listCarFee/listCarFee.html +++ b/public/pages/property/listCarFee/listCarFee.html @@ -5,10 +5,10 @@| 缴费时间 | -应收金额 | -实收金额 | -欠费金额 | +日期 | +应收金额(单位:元) | +实收金额(单位:元) | +欠费金额(单位:元) | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{fee.createTime}} | +{{fee.feeYear+'年'+fee.feeMonth+'月'}} | {{fee.receivableAmount}} | {{fee.receivedAmount}} | {{fee.oweAmount}} | diff --git a/public/pages/property/reportFloorUnitFeeSummary/reportFloorUnitFeeSummary.html b/public/pages/property/reportFloorUnitFeeSummary/reportFloorUnitFeeSummary.html index 3e2448e15..02157089c 100644 --- a/public/pages/property/reportFloorUnitFeeSummary/reportFloorUnitFeeSummary.html +++ b/public/pages/property/reportFloorUnitFeeSummary/reportFloorUnitFeeSummary.html @@ -17,7 +17,8 @@ class=" form-control">
| 缴费日期 | +日期 | 楼栋 | 单元 | -应收金额 | -实收金额 | -欠费金额 | +应收金额(单位:元) | +实收金额(单位:元) | +欠费金额(单位:元) |
|---|---|---|---|---|---|---|---|---|---|
| {{fee.createTime}} | +{{fee.feeYear+'年'+fee.feeMonth+'月'}} | {{fee.floorNum}}号楼 | {{fee.unitNum}}单元 | {{fee.receivableAmount}} | diff --git a/public/pages/property/reportPayFeeDetail/reportPayFeeDetail.html b/public/pages/property/reportPayFeeDetail/reportPayFeeDetail.html index 39f04c325..26d642b8e 100644 --- a/public/pages/property/reportPayFeeDetail/reportPayFeeDetail.html +++ b/public/pages/property/reportPayFeeDetail/reportPayFeeDetail.html @@ -79,6 +79,20 @@ +