From b7968858014ab02aa91e52e63c2a266963d3a8f9 Mon Sep 17 00:00:00 2001 From: yangfeng <wanwan926_4@163.com> Date: 星期四, 24 八月 2023 18:06:22 +0800 Subject: [PATCH] 4807 4812) --- src/views/other/payment/collectionPlan/AddCollectionPlan.vue | 23 +++++++++++++---------- 1 files changed, 13 insertions(+), 10 deletions(-) diff --git a/src/views/other/payment/collectionPlan/AddCollectionPlan.vue b/src/views/other/payment/collectionPlan/AddCollectionPlan.vue index bf6b7cd..0d80cbd 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> @@ -182,7 +182,6 @@ mergeNumber: 7 }, tableData: [], - productId: 1, addProductArr: [], memberOptions: [], allTerms: 3, @@ -205,10 +204,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 +286,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 +304,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 +322,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 +349,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 +370,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 +388,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