This commit is contained in:
2025-06-12 13:09:12 +08:00
parent 7769af8522
commit facb9e5928
31 changed files with 63 additions and 1 deletions

View File

@@ -106,6 +106,7 @@
let res = await againLssued(this.pkObj)
this.disabled1 = false
this.pkId = ''
this.toClear()
this._taskTaskQuery()
uni.showToast({
title: res.message,
@@ -126,6 +127,7 @@
let res = await taskConfirm(this.pkObj)
this.disabled2 = false
this.pkId = ''
this.toClear()
this._taskTaskQuery()
uni.showToast({
title: res.message,
@@ -134,6 +136,14 @@
} catch (e) {
this.disabled2 = false
}
},
toClear () {
this.val1 = ''
this.dataList = []
this.disabled1 = false
this.disabled2 = false
this.pkId = ''
this.pkObj = {}
}
}
}