Files
admin-govern/src/api/cs-device-boot/csLedger.ts
2024-01-11 08:54:09 +08:00

18 lines
361 B
TypeScript

import createAxios from '@/utils/request'
// 设备列表
export function getDeviceTree() {
return createAxios({
url: '/cs-device-boot/csLedger/deviceTree',
method: 'POST'
})
}
// 监测点列表
export function getLineTree() {
return createAxios({
url: '/cs-device-boot/csLedger/lineTree',
method: 'POST'
})
}