This commit is contained in:
2025-12-19 09:50:55 +08:00
parent f051664364
commit a8eb235513
9 changed files with 167 additions and 57 deletions

View File

@@ -163,16 +163,22 @@ export const queryTask = (tcode) => request({
url:'api/hand/queryTask',
data: {task_code: tcode}
})
// 1.2重新下发
export const againTask = (tcode) => request({
url:'api/hand/againTask',
// 1.2完成
export const finishTask = (tcode) => request({
url:'api/hand/finishTask',
data: {task_code: tcode}
})
// 1.3强制确认
export const forceConfirm = (tcode) => request({
url:'api/hand/forceConfirm',
data: {task_code: tcode}
// 1.3起点确认
export const startPointConfirm = (tcode, pcode) => request({
url:'api/hand/startPointConfirm',
data: {task_code: tcode, point_code: pcode}
})
// 1.3终点确认
export const endPointConfirm = (tcode, pcode) => request({
url:'api/hand/endPointConfirm',
data: {task_code: tcode, point_code: pcode}
})
// 管制区域
// 1.1根据区域查询进出区域信息