新增大屏

This commit is contained in:
2022-09-08 10:25:45 +08:00
parent da3d80deaf
commit 064a2e2639
5 changed files with 383 additions and 108 deletions

View File

@@ -79,12 +79,12 @@ li {
}
html, body {
/* width: 1920px;
height: 1080px; */
width: 100%;
width: 1920px;
height: 1080px;
/* width: 100%;
height: 100%;
min-width: 1440px;
min-height: 784px;
min-height: 784px; */
}
body {

BIN
src/assets/images/dot_1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -22,3 +22,19 @@ export const queryInfo3 = (id) => post('api/screen/pdm/queryInfo3', {
export const queryInfo4 = (id) => post('api/screen/pdm/queryInfo4', {
device_id: id
})
/** 设备管理综合查询 */
/** 1.1设备每日开机时长 */
export const getDeviceTime = (id) => post('api/deviceBigScreen/getDeviceTime', {})
/** 2.1设备数量 */
export const getDeviceNumber = (id) => post('api/deviceBigScreen/getDeviceNumber', {})
/** 3.1年故障类别TOP10 */
export const getDeviceFault = (id) => post('api/deviceBigScreen/getDeviceFault', {})
/** 4.1设备运行状态 */
export const getDeviceRunStatus = (id) => post('api/deviceBigScreen/getDeviceRunStatus', {})
/** 5.1设备年计划保养状态 */
export const getDeviceYearStatus = (id) => post('api/deviceBigScreen/getDeviceYearStatus', {})
/** 6.1年保养计划监控 */
export const getDeviceYearMainPlan = (id) => post('api/deviceBigScreen/getDeviceYearMainPlan', {})
/** 7.1近30天班组情况 */
export const getDeviceGroupStatus = (id) => post('api/deviceBigScreen/getDeviceGroupStatus', {})