初始化项目

This commit is contained in:
2026-04-07 11:18:02 +08:00
commit e277bb47cb
1114 changed files with 125107 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
import request from '@/utils/request'
// 查询当前登录用户设备列表u_device
export function listMyDevices(params) {
return request({
url: '/system/app/device/list',
method: 'get',
params
})
}
// 新增设备u_device
export function addMyDevice(data) {
return request({
url: '/system/app/device',
method: 'post',
data
})
}
// 修改设备u_device
export function updateMyDevice(data) {
return request({
url: '/system/app/device',
method: 'put',
data
})
}
// 删除设备u_device支持批量
export function deleteMyDevices(ids) {
return request({
url: `/system/app/device/${ids}`,
method: 'delete'
})
}