This commit is contained in:
2023-11-27 09:48:21 +08:00
parent 0ec7c5abcc
commit 059b4d35be

View File

@@ -13,8 +13,9 @@ export const clickSave = (code) => post('api/home/clickSave', {
// 1.1 查询站点
export const queryPoint = () => post('api/task/queryPoint', {})
// 1.2 选择站点确认
export const confirmPoint = (code) => post('api/task/confirmPoint', {
point_code: code
export const confirmPoint = (code, type) => post('api/task/confirmPoint', {
point_code: code,
type: type
})
// 1.3查询任务列表
export const queryTaskList = () => post('api/task/queryTaskList', {})