Files
pad-njyf/src/config/getData2.js

13 lines
320 B
JavaScript
Raw Normal View History

2022-08-08 14:08:59 +08:00
import {post} from '@config/http.js'
// import store from '../vuex/store'
// 1.1查询所有区域信息
2022-08-08 14:22:33 +08:00
export const handArea = (type) => post('api/anjyf/hand/area', {
2022-08-08 14:08:59 +08:00
area_flag: type
})
// 1.2根据区域查询设备编号及状态
2022-08-08 14:22:33 +08:00
export const handPoint = (reg) => post('api/anjyf/hand/point', {
2022-08-08 14:08:59 +08:00
region: reg
})