邓洁: 修复bug

This commit is contained in:
邓洁
2023-12-28 23:00:52 +08:00
parent 50270cddd3
commit 6dde5ccbc8
11 changed files with 274 additions and 111 deletions

View File

@@ -35,3 +35,10 @@ export const getBadGasEchartsInfo = (tunnelId) => {
method: 'get'
})
}
//电流监控数据
export const getFanEchartsInfo = (equipmentId) => {
return request({
url: `/tunnel/large/screen/echarts/current/${equipmentId}`,
method: 'get'
})
}

View File

@@ -10,10 +10,7 @@ export const getTunnelList = (params) => {
export const getTunnelDetail = (tunnelId) => {
return request({
url: `/tunnel/tunnel/${tunnelId}`,
method: 'get',
params:{
tunnelId:tunnelId
}
method: 'get'
})
}
export const addTunnel = (data) => {