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 }