long_IslandOcean/src/api/screen.js

17 lines
318 B
JavaScript

import http from '@/utils/http'
//故障报警
export function getBigScreen(){
return http({
url:'/api/GetBigScreen',
method:'get',
})
}
// 运行状态
export function getOperatingState(){
return http({
url:'/api/GetOperatingState',
method:'get',
})
}