修改对公审核字段错误的问题

This commit is contained in:
2024-11-14 16:22:38 +08:00
parent efe3d3241d
commit 84c6c54e58
7 changed files with 1 additions and 17 deletions

View File

@@ -75,7 +75,6 @@ Component({
})
},
onChangeReason(e) {
console.log('e.detail', e.detail)
this.setData({
reason: e.detail,
})
@@ -93,11 +92,8 @@ Component({
alertInfo("请输入拒绝理由")
return;
}
console.log('1')
loadingFunc(async () => {
console.log('2')
const { code, message } = await rechargeApprove({ id: record, status: 1, reason })
console.log('3')
if (code !== OK) {
alertInfo(message)
return;
@@ -131,7 +127,6 @@ Component({
if (res.cancel) {
}
if (res.confirm) {
loadingFunc(async () => {
const { code, message } = await rechargeApprove({ id: record, status: 0, })