diff --git a/haiwei-admin/src/main/java/com/haiwei/web/controller/broad/BroadController.java b/haiwei-admin/src/main/java/com/haiwei/web/controller/broad/BroadController.java index 6fc0c92..6185425 100644 --- a/haiwei-admin/src/main/java/com/haiwei/web/controller/broad/BroadController.java +++ b/haiwei-admin/src/main/java/com/haiwei/web/controller/broad/BroadController.java @@ -18,6 +18,11 @@ public class BroadController { { return prefix + "/board1"; } + @GetMapping("/board3") + public String board3() + { + return prefix + "/board3"; + } @GetMapping("/board2") public String board2() diff --git a/haiwei-admin/src/main/resources/static/board/board.js b/haiwei-admin/src/main/resources/static/board/board.js index 58631f7..df916b7 100644 --- a/haiwei-admin/src/main/resources/static/board/board.js +++ b/haiwei-admin/src/main/resources/static/board/board.js @@ -1,4 +1,6 @@ $(() => { + + let name = '60型一体机A' setTimeout(() => { $("#centerModal1").show() setTimeout(() => { @@ -7,14 +9,14 @@ $(() => { }, 1000) // tableAnimation('#chart2') - $.get(ctx + 'broad/home/deviceInfo', {}, (e) => { + $.get(ctx + 'broad/home/deviceInfo', {name}, (e) => { let data = e.data[0] $('.bg1').html(`
${data.deviceFunction}
`) $('.bg2').html(`${data.deviceParam}
`) }) - $.get(ctx + 'broad/home/queryParam', {}, (e) => { + $.get(ctx + 'broad/home/queryParam', {name}, (e) => { let enumArr = { '转速': ' rpm', @@ -53,7 +55,7 @@ $(() => { }) - $.get(ctx + 'broad/home/queryDeviceState', {}, (data) => { + $.get(ctx + 'broad/home/queryDeviceState', {name}, (data) => { let imgSrc = (name) => { switch (name) { case '运行': diff --git a/haiwei-admin/src/main/resources/static/board/board2.js b/haiwei-admin/src/main/resources/static/board/board2.js index 82b8395..d523a87 100644 --- a/haiwei-admin/src/main/resources/static/board/board2.js +++ b/haiwei-admin/src/main/resources/static/board/board2.js @@ -1,6 +1,5 @@ $(() => { let VH =(window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight)/100; - let itemNum = 0 let fun = () =>{ let width = $('#bottom .info .item:eq(0)').outerWidth() + 18 diff --git a/haiwei-admin/src/main/resources/static/board/board3.css b/haiwei-admin/src/main/resources/static/board/board3.css new file mode 100644 index 0000000..edc93b7 --- /dev/null +++ b/haiwei-admin/src/main/resources/static/board/board3.css @@ -0,0 +1,275 @@ +body { + background-image: url("../../board/img/bg1.png"); + background-size: 100% 100%; + background-repeat: no-repeat; +} + +.topBtn { + background-image: url("../../board/img/click1.png"); + background-size: 100% 100%; + background-repeat: no-repeat; + width: 7.5vw; + height: 2.5vw; + position: absolute; + top: 6%; + line-height: 2.5vw; + font-size: 1.2vw; + text-align: center; + color: #aaa; +} + +.topBtnClick { + background-image: url("../../board/img/click.png"); + color: #fff; +} + +.bottomBtn { + background-image: url("../../board/img/btnbg.png"); + background-size: 100% 100%; + background-repeat: no-repeat; + width: 15vw; + height: 3vw; + position: absolute; + bottom: 2.8vw; + line-height: 3vw; + font-size: 1.2vw; + text-align: center; + color: #aaa; +} + +.bottomBtnClick { + background-image: url("../../board/img/btn1bg.png"); + color: #fff; +} + +.centerImg { + background-image: url("../../board/img/equipment.png"); + background-size: 100% 100%; + background-repeat: no-repeat; + position: absolute; + top: 45%; + left: 50%; + width: 57vw; + height: 31vw; + transform: translate(-50%, -50%); +} + +.winDiv { + background-image: url("../../board/img/winBG.png"); + background-size: 100% 100%; + background-repeat: no-repeat; + position: absolute; + right: 7.5vw; + top: 19%; + width: 16vw; + height: 32.9vw; +} + +.winDiv p { + margin: 0; +} + +.winDiv .title { + position: absolute; + font-size: 1vw; + left: 20%; + top: 6%; + color: #ddd; +} + +.winDiv .title1 { + position: absolute; + font-size: 1vw; + left: 10%; + top: 15%; + color: #fff; +} + +.winDiv .bg1 { + position: absolute; + font-size: 0.8vw; + left: 7%; + top: calc(15% + 1.5vw); + color: #4888bf; + width: 87%; + height: 45%; + border-radius: 3px; + border: 2px solid #3f65a1; + padding: 1%; + overflow: auto; +} + +.winDiv .title2 { + position: absolute; + font-size: 1vw; + left: 10%; + top: 67%; + color: #fff; +} + +.winDiv .bg2 { + position: absolute; + font-size: 0.8vw; + left: 7%; + top: calc(67% + 1.5vw); + color: #4888bf; + width: 87%; + height: 26%; + border-radius: 3px; + border: 2px solid #3f65a1; + padding: 1%; + overflow: auto; +} + +.status { + /*background-image: url("../../board/img/warnBg.png");*/ + background-size: 100% 100%; + background-repeat: no-repeat; + position: absolute; + width: 10vw; + height: 4vw; + transform: translateX(-50%); +} + +.status .icon { + background-image: url("../../board/img/green.png"); + background-size: 100% 100%; + background-repeat: no-repeat; + position: absolute; + transform: translate(-50%, -50%); + top: 50%; + left: 20%; + width: 30px; + height: 30px; +} + +.status span { + width: 20vw; + font-size: 1vw; + color: #fff; + position: absolute; + transform: translateY(-50%); + top: 50%; + left: calc(20% + 35px); +} + +.centerInfo { + position: absolute; + transform: translate(-10px, calc(-100% + 10px)); + width: 10vw; + height: 10vw; +} + +.centerInfo .win { + background-image: url("../../board/img/equipmentBg.png"); + background-size: 100% 100%; + background-repeat: no-repeat; + position: absolute; + top: 10%; + left: 0; + width: 9vw; + height: 5.35vw; + transform: translateX(-50%); +} + +.centerInfo .win .title { + position: absolute; + transform: translateY(-50%); + top: 16%; + left: 10%; + color: #fff; + font-size: 0.8vw; +} + +.centerInfo .win .span1 { + position: absolute; + transform: translateY(-50%); + top: 50%; + left: 10%; + color: #fff; + font-size: 0.8vw; +} + +.centerInfo .win .span2 { + position: absolute; + transform: translateY(-50%); + top: 80%; + left: 10%; + color: #fff; + font-size: 0.8vw; +} + +.centerInfo .icon { + background-image: url("../../board/img/circle.png"); + background-size: 100% 100%; + background-repeat: no-repeat; + position: absolute; + bottom: 0%; + left: 0%; + width: 20px; + height: 20px; +} + +.eqModal { + display: none; +} + +.shade { + position: absolute; + top: 0%; + left: 0%; + width: 100vw; + height: 100vh; + background-color: #00000066; + z-index: 100; +} + +.centerModal { + background-image: url("../../board/img/bigBg.png"); + background-size: 100% 100%; + background-repeat: no-repeat; + position: absolute; + transform: translate(-50%, -50%); + top: 50%; + left: 50%; + width: 70vw; + height: 43.7vw; + z-index: 101; +} +.centerModalInfo{ + position: absolute; + top: 10%; + left: 4%; + width: 94%; + height: 87%; + overflow: hidden; +} +.chart1{ + position: absolute; + top: 17%; + left: 4%; + width: 94%; + height: 80%; +} +.monitoring{ + position: absolute; + top: 9%; + left: 4%; + width: 92%; + height: 90%; +} + +.centerModal1 { + opacity: 0; + position: absolute; + transform: translate(-50%, -50%); + top: 50%; + left: 16%; + width: 18vw; + height: 10.125vw; + z-index: 101; +} +.plugin{ + width: 100%; + height: 100%; +} diff --git a/haiwei-admin/src/main/resources/static/board/board3.js b/haiwei-admin/src/main/resources/static/board/board3.js new file mode 100644 index 0000000..162b78a --- /dev/null +++ b/haiwei-admin/src/main/resources/static/board/board3.js @@ -0,0 +1,245 @@ +$(() => { + + let name = '60型一体机B' + setTimeout(() => { + $("#centerModal1").show() + setTimeout(() => { + document.getElementById("monitoringIframe1").contentWindow.login() + }, 1000) + }, 1000) + // tableAnimation('#chart2') + + $.get(ctx + 'broad/home/deviceInfo', {name}, (e) => { + let data = e.data[0] + $('.bg1').html(`${data.deviceFunction}
`) + $('.bg2').html(`${data.deviceParam}
`) + + }) + + $.get(ctx + 'broad/home/queryParam', {name}, (e) => { + + let enumArr = { + '转速': ' rpm', + '电流': ' A', + '温度': ' ℃', + '压力': ' MPa', + } + let data = e.data + let arrNum = Array.from(new Set([...e.data.map(e => e.order_by)])) + let arr = arrNum.map(e => { + let data1 = data.filter(val => val.order_by === e) + let obj = {} + data1.forEach((e, i) => { + obj.left = e.location_x + '%' + obj.top = e.location_y + '%' + obj.name = e.name + obj['data' + (i + 1)] = e.pointname + obj['num' + (i + 1)] = e.data + obj['unit' + (i + 1)] = enumArr[e.pointname] + }) + return obj + }) + arr.forEach(val => { + let html = ` +