人工异常处理

This commit is contained in:
2024-05-22 11:10:20 +08:00
parent e33840b0af
commit 6fcd869b57
9 changed files with 259 additions and 68 deletions

View File

@@ -154,3 +154,20 @@ export const vehicleUnbind = (code) => post('api/pda/vehicleUnbind', {
export const callDefective = (code) => post('api/pda/callDefective', {
device_code: code
})
/**
* 人工异常处理
*/
// 区域下拉框
export const ExceptionHandlingRegionList = () => post('api/pda/manual/ExceptionHandlingTask/regionList', {})
// 点位下拉框
export const ExceptionHandlingTaskList = () => post('api/pda/manual/ExceptionHandlingTask/list', {})
// 任务信息
export const ExceptionHandlingTaskShow = (code) => post('api/pda/manual/ExceptionHandlingTask/show', {
region_code: code
})
// 确认
export const ExceptionHandlingTask = (id, point) => post('api/pda/manual/ExceptionHandlingTask', {
task_id: id,
end_point: point
})