问题修复
This commit is contained in:
parent
17718750d5
commit
bc1711dadc
|
|
@ -675,7 +675,7 @@ export default {
|
||||||
this.$modal
|
this.$modal
|
||||||
.confirm('是否确认提交?')
|
.confirm('是否确认提交?')
|
||||||
.then(() => {
|
.then(() => {
|
||||||
this.loading = true
|
const loading = this.$loading()
|
||||||
let params = {
|
let params = {
|
||||||
agreementIds: Array.isArray(this.rowData) ? this.rowData.map(item => item.agreementId) : [],
|
agreementIds: Array.isArray(this.rowData) ? this.rowData.map(item => item.agreementId) : [],
|
||||||
totalCostAll: this.costAll,
|
totalCostAll: this.costAll,
|
||||||
|
|
@ -689,7 +689,7 @@ export default {
|
||||||
console.log('2222222222222', params)
|
console.log('2222222222222', params)
|
||||||
|
|
||||||
submitCosts(params).then(response => {
|
submitCosts(params).then(response => {
|
||||||
this.loading = false
|
loading.close()
|
||||||
this.$message({
|
this.$message({
|
||||||
type: 'success',
|
type: 'success',
|
||||||
message: '提交成功'
|
message: '提交成功'
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue