13 lines
320 B
JavaScript
13 lines
320 B
JavaScript
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
|
|
})
|
|
|
|
// 1.2根据区域查询设备编号及状态
|
|
export const handPoint = (reg) => post('api/anjyf/hand/point', {
|
|
region: reg
|
|
})
|