新增点位管理、呼叫搬运页

This commit is contained in:
2024-01-09 14:15:27 +08:00
parent 139a0568f1
commit 1f2d6d8844
6 changed files with 453 additions and 0 deletions

View File

@@ -169,3 +169,23 @@ export const createTask = (scode, ecode) => post('api/pda/createTask', {
start_point_code: scode,
end_point_code: ecode
})
/**
* 点位管理
*/
export const getAllPointList = () => post('api/pda/getAllPointList', {})
/**
* 呼叫搬运
*/
// 获取区域下拉框
export const getAllRegionList = () => post('api/pda/getAllRegionList', {})
// 根据区域获取点位列表
export const getPointListByRegion = (code) => post('api/pda/getPointListByRegion', {
region_code: code
})
// 呼叫搬运
export const createP2PTask = (scode, ecode) => post('api/pda/createP2PTask', {
start_point_code: scode,
end_point_code: ecode
})