You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1023 B
53 lines
1023 B
import request from '@/utils/request'
|
|
|
|
// 查询【请填写功能名称】列表
|
|
export function listDevice(query) {
|
|
return request({
|
|
url: '/business/device/list',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
// 查询【请填写功能名称】详细
|
|
export function getDevice(id) {
|
|
return request({
|
|
url: '/business/device/' + id,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
// 新增【请填写功能名称】
|
|
export function addDevice(data) {
|
|
return request({
|
|
url: '/business/device',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 修改【请填写功能名称】
|
|
export function updateDevice(data) {
|
|
return request({
|
|
url: '/business/device',
|
|
method: 'put',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 删除【请填写功能名称】
|
|
export function delDevice(id) {
|
|
return request({
|
|
url: '/business/device/' + id,
|
|
method: 'delete'
|
|
})
|
|
}
|
|
|
|
// 导出【请填写功能名称】
|
|
export function exportDevice(query) {
|
|
return request({
|
|
url: '/business/device/export',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|