This commit is contained in:
GGJ
2025-01-09 19:02:44 +08:00
commit 92e7a7a5eb
2943 changed files with 1152283 additions and 0 deletions

22
src/api/device/device.js Normal file
View File

@@ -0,0 +1,22 @@
//终端运维管理
import request from '@/utils/request'
export default {
//数据单位查询树
nodeTree(data) {
return request({
url: '/device-boot/pq/pqsDeviceUnit/nodeTree',
method: 'post',
params: data,
})
},
//数据单位修改
saveDeviceUnit(data) {
return request({
url: '/device-boot/pq/pqsDeviceUnit/saveDeviceUnit',
method: 'post',
data,
})
},
}