任务生成

This commit is contained in:
2022-08-08 15:56:23 +08:00
parent cc754230cd
commit 5aec5e9109
6 changed files with 410 additions and 28 deletions

View File

@@ -1,12 +1,40 @@
import {post} from '@config/http.js'
// import store from '../vuex/store'
/** 任务生成 */
// 1.1查询所有区域信息
export const handArea = (type) => post('api/anjyf/hand/area', {
area_flag: type
export const handArea = () => post('api/anjyf/hand/area', {
})
// export const handArea = () => {
// let res = {
// code: '1',
// desc: '',
// result: [{region_id: '1', region_name: 'a'}]
// }
// return res
// }
// 1.2根据区域查询设备编号及状态
export const handPoint = (reg) => post('api/anjyf/hand/point', {
region: reg
})
// export const handPoint = (reg) => {
// let res = {
// code: '1',
// desc: '',
// result: [{status: '1', device_name: 'a'}, {status: '2', device_name: 'aa'}, {status: '2', device_name: 'aa'}, {status: '2', device_name: 'aa'}, {status: '2', device_name: 'aa'}]
// }
// return res
// }
// 1.3创建任务(确定起点、终点)
export const handTask = (scode, ncode, type, batch) => post('api/anjyf/hand/task', {
start_devicecode: scode,
next_devicecode: ncode,
material_type: type,
batch: batch
})
// export const handTask = (scode, ncode, type, batch) => {
// let res = {
// code: '1',
// desc: 'ok'
// }
// return res
// }