This commit is contained in:
yunkexin 2025-12-04 16:33:25 +08:00
parent c2c5f5e477
commit 277ce5fdbe
4 changed files with 8 additions and 8 deletions

View File

@ -1355,8 +1355,8 @@
}) })
}, },
cancleJob() { cancleJob() {
let json = {}; const orgId = uni.getStorageSync('orgId')
json.ID = this.ID; const json = initFilter(orgId, this.ID)
json.TaskID = this.TaskID; json.TaskID = this.TaskID;
getCancleJob(json).then(res => { getCancleJob(json).then(res => {
uni.$showMsgFunc('操作成功!', () => { uni.$showMsgFunc('操作成功!', () => {

View File

@ -1407,8 +1407,8 @@
}) })
}, },
cancleJob() { cancleJob() {
let json = {}; const orgId = uni.getStorageSync('orgId')
json.ID = this.ID; const json = initFilter(orgId, this.ID)
json.TaskID = this.TaskID; json.TaskID = this.TaskID;
getCancleJob(json).then(res => { getCancleJob(json).then(res => {
uni.$showMsgFunc('操作成功!', () => { uni.$showMsgFunc('操作成功!', () => {

View File

@ -1291,8 +1291,8 @@
}) })
}, },
cancleJob() { cancleJob() {
let json = {}; const orgId = uni.getStorageSync('orgId')
json.ID = this.ID; const json = initFilter(orgId, this.ID)
json.TaskID = this.TaskID; json.TaskID = this.TaskID;
getCancleJob(json).then(res => { getCancleJob(json).then(res => {
uni.$showMsgFunc('操作成功!', () => { uni.$showMsgFunc('操作成功!', () => {

View File

@ -1321,8 +1321,8 @@
}) })
}, },
cancleJob() { cancleJob() {
let json = {}; const orgId = uni.getStorageSync('orgId')
json.ID = this.ID; const json = initFilter(orgId, this.ID)
json.TaskID = this.TaskID; json.TaskID = this.TaskID;
getCancleJobOutsource(json).then(res => { getCancleJobOutsource(json).then(res => {
uni.$showMsgFunc('操作成功!', () => { uni.$showMsgFunc('操作成功!', () => {