This commit is contained in:
2024-05-07 09:20:51 +08:00
parent 4f1ddcc032
commit de4d85757f
3 changed files with 7 additions and 2 deletions

View File

@@ -13,9 +13,10 @@ export const clickSave = (code) => post('api/home/clickSave', {
// 1.1 查询站点
export const queryPoint = () => post('api/task/queryPoint', {})
// 1.2 选择站点确认
export const confirmPoint = (code, type) => post('api/task/confirmPoint', {
export const confirmPoint = (code, type, ncode) => post('api/task/confirmPoint', {
point_code: code,
type: type
type: type, // 对应按钮type=1: | type=2
next_point_code: ncode
})
// 1.3查询任务列表
export const queryTaskList = () => post('api/task/queryTaskList', {})