虚拟大屏数据

This commit is contained in:
2023-01-13 13:57:51 +08:00
parent 22ff161288
commit 6561dd7309
24 changed files with 3241 additions and 296 deletions

View File

@@ -24,4 +24,36 @@ export function edit(data) {
})
}
export default { add, edit, del }
export function switch_on_off(data) {
return request({
url: 'api/bigTest/switchOnOff',
method: 'post',
data
})
}
export function edit_order(data) {
return request({
url: 'api/bigTest/save',
method: 'post',
data
})
}
export function edit_device(data) {
return request({
url: 'api/bigTest/saveDevice',
method: 'post',
data
})
}
export function excelImport(data) {
return request({
url: 'api/bigTest/excelImport',
method: 'post',
data
})
}
export default { add, edit, del, switch_on_off, edit_order, excelImport, edit_device }