fix:that替换

This commit is contained in:
shijing 2025-09-01 09:14:53 +08:00
parent e5b80c3c8c
commit 9b43129147
1 changed files with 3 additions and 3 deletions

View File

@ -338,14 +338,14 @@ export default {
mlogWf(row){
let that = this;
if(that.userId!==row.ticket_.create_by){
this.$confirm(`需要日志提交人撤回该日志`, "提示", {
that.$confirm(`需要日志提交人撤回该日志`, "提示", {
type: "warning",
}).then(() => {})
}else{
this.$confirm(`确定撤回该日志审批吗?`, "提示", {
that.$confirm(`确定撤回该日志审批吗?`, "提示", {
type: "warning",
}).then(() => {
this.$API.wf.ticket.ticketRetreat.req(row.ticket).then(res=>{
that.$API.wf.ticket.ticketRetreat.req(row.ticket).then(res=>{
that.$refs.table.refresh();
})
})