人工异常处理
This commit is contained in:
@@ -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
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user