From 6114fe421ce73083df84b06caf325bbd4277219a Mon Sep 17 00:00:00 2001 From: xiaogang <905166056@qq.com> Date: Thu, 31 Dec 2020 16:59:48 +0800 Subject: [PATCH] =?UTF-8?q?1=E3=80=81=E7=BC=B4=E8=B4=B9=E6=98=8E=E7=BB=86?= =?UTF-8?q?=E6=8A=A5=E8=A1=A8=E6=96=B0=E5=A2=9E=E8=B4=B9=E7=94=A8=E9=A1=B9?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2=202=E3=80=81=E8=B4=B9=E7=94=A8=E5=88=86?= =?UTF-8?q?=E5=90=91=E6=8A=A5=E8=A1=A8=E6=96=B0=E5=A2=9E=E8=B4=B9=E7=94=A8?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E5=92=8C=E8=B4=B9=E7=94=A8=E9=A1=B9=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=203=E3=80=81=E4=BC=98=E5=8C=96=E5=B7=A6=E4=BE=A7?= =?UTF-8?q?=E8=8F=9C=E5=8D=95=E5=A4=B1=E5=8E=BB=E7=84=A6=E7=82=B9=E9=97=AE?= =?UTF-8?q?=E9=A2=98=204=E3=80=81=E4=BC=98=E5=8C=96=E5=88=9B=E5=BB=BA?= =?UTF-8?q?=E5=81=9C=E8=BD=A6=E8=B4=B9=E7=94=A8=E6=98=BE=E7=A4=BA=E6=B0=B4?= =?UTF-8?q?=E7=94=B5=E8=B4=B9=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/components/frame/menu/menu.js | 13 ++-- public/index.html | 1 - .../pages/property/listCarFee/listCarFee.html | 4 +- .../reportFeeBreakdown.html | 54 ++++++++++--- .../reportFeeBreakdown/reportFeeBreakdown.js | 77 +++++++++++++++---- .../reportFeeSummary/reportFeeSummary.html | 10 +-- .../reportFloorUnitFeeSummary.html | 13 ++-- .../reportPayFeeDetail.html | 14 ++++ .../reportPayFeeDetail/reportPayFeeDetail.js | 5 ++ 9 files changed, 146 insertions(+), 45 deletions(-) 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 @@ +