代码合并
This commit is contained in:
parent
377c904af2
commit
060912bc19
|
|
@ -49,6 +49,24 @@ export function deleteDeviceApi(id) {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** 获取机具设备的位置信息 */
|
||||||
|
export const getIotDeviceLocationApi = (data) => {
|
||||||
|
return request.post('/material/iotMachine/getLocation', data)
|
||||||
|
}
|
||||||
|
/** 获取机具设备的行程信息 */
|
||||||
|
export const getIotDeviceTripApi = (data) => {
|
||||||
|
return request.post('/material/iotMachine/searchItinerary', data)
|
||||||
|
}
|
||||||
|
/** 获取机具设备的停留点信息 */
|
||||||
|
export const getIotDeviceParkDetailApi = (data) => {
|
||||||
|
return request.post('/material/iotMachine/reportParkDetailByTime', data)
|
||||||
|
}
|
||||||
|
/** 获取机具设备的报警信息 */
|
||||||
|
export const getIotDeviceAlarmApi = (data) => {
|
||||||
|
return request.post('/material/iotMachine/reportAlarm', data)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *****
|
* *****
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -149,7 +149,7 @@ import {
|
||||||
bindIot,
|
bindIot,
|
||||||
getTypeList,
|
getTypeList,
|
||||||
unbindIot,
|
unbindIot,
|
||||||
} from '@/api/store/iotManagement'
|
} from '@/api/iotDevice/index.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'BindIOT',
|
name: 'BindIOT',
|
||||||
|
|
|
||||||
|
|
@ -145,7 +145,7 @@ import {
|
||||||
getIotDeviceTripApi,
|
getIotDeviceTripApi,
|
||||||
getIotDeviceParkDetailApi,
|
getIotDeviceParkDetailApi,
|
||||||
getIotDeviceAlarmApi,
|
getIotDeviceAlarmApi,
|
||||||
} from '@/api/store/iotManagement.js'
|
} from '@/api/iotDevice/index.js'
|
||||||
export default {
|
export default {
|
||||||
name: 'MapDialog',
|
name: 'MapDialog',
|
||||||
props: {
|
props: {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue