修改111

This commit is contained in:
2025-04-17 15:46:32 +08:00
parent 88955a178b
commit 7590d546b2
10 changed files with 115 additions and 21 deletions

View File

@@ -509,10 +509,13 @@
this.disabled1 = true
try {
let res = await easOutInBillSync('ALLO')
uni.showToast({
title: res.desc,
icon: 'none'
})
if (res) {
this._allocationPage()
uni.showToast({
title: res.desc,
icon: 'none'
})
}
this.disabled1 = false
} catch (e) {
this.disabled1 = false
@@ -618,6 +621,21 @@
this.disabled1 = false
return
}
uni.showModal({
title: '提示',
content: '是否确认删除?',
cancelColor: '#fff',
confirmColor: '#fff',
success: (res) => {
if (res.confirm) {
this.__easOutInBillDelete()
} else if (res.cancel) {
this.disabled1 = false
}
}
})
},
async __easOutInBillDelete () {
try {
let res = await easOutInBillDelete('ALLO', this.checkData)
if (res.code === 1) {