邓洁 : 大屏信息接口对接

This commit is contained in:
邓洁
2023-12-17 01:47:13 +08:00
parent 13e232d6f6
commit 2d413876d4
4 changed files with 45 additions and 32 deletions

View File

@@ -1,8 +1,16 @@
import request from '@/utils/request.js'
//大屏获取设备信息
export const getLargeScreen = (tunnelId) => {
return request({
url: `/tunnel/large/screen/equipment/${tunnelId}`,
method: 'get'
})
}
//大屏信息接口
export const getLargeScreenInfo = () => {
return request({
url: '/tunnel/large/screen/info',
method: 'get'
})
}