问题修复

This commit is contained in:
hongchao 2025-12-08 18:18:58 +08:00
parent d1df09a8a2
commit 17718750d5
1 changed files with 3 additions and 1 deletions

View File

@ -487,6 +487,7 @@ export default {
},
data() {
return {
loading: false,
//
unitList: [],
//
@ -674,6 +675,7 @@ export default {
this.$modal
.confirm('是否确认提交?')
.then(() => {
this.loading = true
let params = {
agreementIds: Array.isArray(this.rowData) ? this.rowData.map(item => item.agreementId) : [],
totalCostAll: this.costAll,
@ -685,7 +687,7 @@ export default {
settlementType: this.rowData[0].settlementType || ''
}
console.log('2222222222222', params)
this.loading = true
submitCosts(params).then(response => {
this.loading = false
this.$message({