|
|
@@ -161,7 +161,7 @@
|
|
|
</el-form-item>
|
|
|
<el-form-item prop="actualReceivedAmount" label="实收金额">
|
|
|
<el-input-number v-model="countForm.actualReceivedAmount" disabled style="width: 100%;" :min="0" :precision="5"
|
|
|
- controls-position="right" />
|
|
|
+ controls-position="right" @change="handleChange"/>
|
|
|
</el-form-item>
|
|
|
<el-form-item prop="settlementPaymentDifference" label="回款差额">
|
|
|
<el-input v-model="countForm.settlementPaymentDifference" disabled></el-input>
|
|
|
@@ -258,8 +258,8 @@ const datesearch = ref('')
|
|
|
const countForm = ref({
|
|
|
invoicingId: '',
|
|
|
actualReceivedAmount: '',
|
|
|
- paymentDifference: '',
|
|
|
- paymentReason: '',
|
|
|
+ settlementPaymentDifference: '',
|
|
|
+ settlementPaymentReason: '',
|
|
|
receivePaymentDate: '',
|
|
|
attachmentIds: [],
|
|
|
})
|
|
|
@@ -588,6 +588,7 @@ const openSettlement = (list, id) => {
|
|
|
contactPersonPhone.value = id
|
|
|
selectedList.value = list
|
|
|
handleSettlement()
|
|
|
+ initData()
|
|
|
}
|
|
|
|
|
|
defineExpose({
|