From cd138195edb990d1568b479d27e2c6fbce7b0d53 Mon Sep 17 00:00:00 2001 From: xy <271556543@qq.com> Date: Mon, 6 May 2024 12:01:03 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=98=E6=AC=BE=E8=AE=A1=E5=88=92=E6=80=BB?= =?UTF-8?q?=E9=87=91=E9=A2=9D=E4=B8=8E=E5=90=88=E5=90=8C=E6=80=BB=E9=87=91?= =?UTF-8?q?=E9=A2=9D=E4=B8=8D=E7=9B=B8=E7=AD=89=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/contract/components/contractSign.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/contract/components/contractSign.vue b/src/views/contract/components/contractSign.vue index eb5dc91..e0dc9e1 100644 --- a/src/views/contract/components/contractSign.vue +++ b/src/views/contract/components/contractSign.vue @@ -462,10 +462,10 @@ } const signMoneyTotal = this.signList.reduce((pre, cur) => (pre + Number(cur.money || 0)),0) - if (signMoneyTotal !== this.form.money) { + if (signMoneyTotal !== Number(this.form.money)) { Message({ type: 'warning', - message: '付款计划总金额与合同总金额不相等~' + message: '付款计划总金额与合同总金额不相等' }) return }