新增点位管理、呼叫搬运页
This commit is contained in:
@@ -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
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user