设备监控展示代码

This commit is contained in:
lyd
2022-10-22 15:33:09 +08:00
parent 658ac9cb53
commit 7ae5fc5132
3 changed files with 477 additions and 12 deletions

View File

@@ -0,0 +1,9 @@
import request from '@/utils/request'
export function getDeviceByCodes(data) { // 获取舞台上设备信息
return request({
url: 'api/deviceInfo/getDeviceByCodes',
method: 'post',
data: data
})
}

View File

@@ -24,7 +24,7 @@ export function edit(data) {
})
}
export function getValueByCode(code) {
export function getStageCodeByCode(code) {
return request({
url: 'api/param/getValueByCode',
method: 'post',
@@ -32,4 +32,4 @@ export function getValueByCode(code) {
})
}
export default { add, edit, del, getValueByCode }
export default { add, edit, del, getStageCodeByCode }