修改111
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user