|
@@ -753,6 +753,19 @@ export default {
|
|
// ]
|
|
// ]
|
|
// },
|
|
// },
|
|
{
|
|
{
|
|
|
|
+ label: '应付金额',
|
|
|
|
+ prop: 'debitAmount',
|
|
|
|
+ type: 'number',
|
|
|
|
+ disabled: true,
|
|
|
|
+ rules: [
|
|
|
|
+ {
|
|
|
|
+ required: false,
|
|
|
|
+ message: ' ',
|
|
|
|
+ trigger: 'blur'
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
|
|
+ },
|
|
|
|
+ {
|
|
label: '已付金额',
|
|
label: '已付金额',
|
|
prop: 'settlmentAmount',
|
|
prop: 'settlmentAmount',
|
|
type: 'number',
|
|
type: 'number',
|
|
@@ -1406,8 +1419,10 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
this.form.orderAmount = 0;
|
|
this.form.orderAmount = 0;
|
|
|
|
+ this.$set(this.form, 'debitAmount', 0)
|
|
this.contactsData.forEach(item => {
|
|
this.contactsData.forEach(item => {
|
|
this.form.orderAmount = Number(this.form.orderAmount) + Number(item.amount)
|
|
this.form.orderAmount = Number(this.form.orderAmount) + Number(item.amount)
|
|
|
|
+ this.form.debitAmount = Number(this.form.debitAmount) + Number(item.amount)
|
|
})
|
|
})
|
|
//商品信息
|
|
//商品信息
|
|
this.form.itemsVOList = this.contactsData
|
|
this.form.itemsVOList = this.contactsData
|