10 lines
202 B
TypeScript
10 lines
202 B
TypeScript
import createAxios from '@/utils/request'
|
|
|
|
// 设备列表
|
|
export function getDeviceTree() {
|
|
return createAxios({
|
|
url: '/cs-device-boot/csLedger/deviceTree',
|
|
method: 'POST'
|
|
})
|
|
}
|