From ea4f9ee1d7a6333bd516deb09c1d12f18a168787 Mon Sep 17 00:00:00 2001 From: yangfeng <wanwan926_4@163.com> Date: 星期五, 18 八月 2023 19:04:53 +0800 Subject: [PATCH] bug 修复 --- src/views/other/payment/collectionPlan/AddCollectionPlan.vue | 22 +++++++++++++--------- 1 files changed, 13 insertions(+), 9 deletions(-) diff --git a/src/views/other/payment/collectionPlan/AddCollectionPlan.vue b/src/views/other/payment/collectionPlan/AddCollectionPlan.vue index bf6b7cd..7a67908 100644 --- a/src/views/other/payment/collectionPlan/AddCollectionPlan.vue +++ b/src/views/other/payment/collectionPlan/AddCollectionPlan.vue @@ -25,11 +25,11 @@ </div> <div class="collection-view"> <div class="label">閲戦</div> - <div>{{ editConfig.infomation.amount }}</div> + <div>{{ editConfig.infomation.amountTotal }}</div> </div> <div class="collection-view"> <div class="label">鏈鍒掗噾棰�</div> - <div>{{ editConfig.infomation.amount }}</div> + <div>{{ editConfig.infomation.amountTotal }}</div> </div> <div class="collection-view"> <div class="label">鏀舵璁″垝璐熻矗浜�</div> @@ -205,10 +205,14 @@ methods: { // 璁剧疆鍒濆鍊� setData() { + this.amount = + typeof this.editCommonConfig.infomation.amountTotal == "string" + ? parseInt(this.editCommonConfig.infomation.amountTotal) + : this.editCommonConfig.infomation.amountTotal this.editConfig.infomation = { collectionType: this.collectionType, moneyType: "浜烘皯甯�", - amount: this.amount.toFixed(2) + amountTotal: this.editCommonConfig.infomation.amountTotal } }, getCommonData() { @@ -283,7 +287,7 @@ amount: this.amount, amountReceivable: this.amount * 0.3, amountReceived: 0, - amountTotal: 0, + amountTotal: this.amount, collectionDate: this.setDate(date, 0), collectionType: this.editConfig.infomation.collectionType, fileId: 0, @@ -301,7 +305,7 @@ amount: this.amount, amountReceivable: this.amount * 0.5, amountReceived: 0, - amountTotal: 0, + amountTotal: this.amount, collectionDate: this.setDate(date, 1), collectionType: this.editConfig.infomation.collectionType, fileId: 0, @@ -319,7 +323,7 @@ amount: this.amount, amountReceivable: this.amount * 0.2, amountReceived: 0, - amountTotal: 0, + amountTotal: this.amount, collectionDate: this.setDate(date, 2), collectionType: this.editConfig.infomation.collectionType, fileId: 0, @@ -346,7 +350,7 @@ amount: this.amount, amountReceivable: this.amount, amountReceived: 0, - amountTotal: 0, + amountTotal: this.amount, collectionDate: this.setDate(this.firstDate, 0), collectionType: this.editConfig.infomation.collectionType, fileId: 0, @@ -367,7 +371,7 @@ amount: this.amount, amountReceivable: this.amount * 0.5, amountReceived: 0, - amountTotal: 0, + amountTotal: this.amount, collectionDate: this.setDate(this.firstDate, 0), collectionType: this.editConfig.infomation.collectionType, fileId: 0, @@ -385,7 +389,7 @@ amount: this.amount, amountReceivable: this.amount * 0.5, amountReceived: 0, - amountTotal: 0, + amountTotal: this.amount, collectionDate: this.setDate(this.firstDate, 1), collectionType: this.editConfig.infomation.collectionType, fileId: 0, -- Gitblit v1.8.0