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 = ` +
+ +
+
+ ` + $("#centerInfoDiv").append(html) + }) + + }) + + $.get(ctx + 'broad/home/queryDeviceState', {name}, (data) => { + let imgSrc = (name) => { + switch (name) { + case '运行': + return 'green' + case '停机': + return 'yellow' + case '故障': + return 'red' + } + } + let po = [ + { + top: 33, + left: 73 + }, + { + top: 33, + left: 38 + }, + ] + console.log(data) + let html = `` + po.forEach((e, i) => { + html += `
+
+ +
+ ` + }) + $("#statusD").html(html) + + }) +}) + +let chart = null +let chart1 = (el, data) => { + console.log('chart', chart) + let xData = Object.keys(data?.[0] || {})?.filter(e => e !== 'time') || [] + let series = xData.map(e => { + let dataA = data?.map(val => val[e]) || [] + let isBig = false + dataA.forEach(e => { + if (e > 40) { + isBig = true + } + }) + return { + name: e, + type: "line", + smooth: true, + symbol: "circle", + yAxisIndex: isBig ? 1 : 0, + symbolSize: 5, + showSymbol: false, + data: dataA, + } + }) + if (!chart) { + chart = echarts.init(el) + } + console.log('chart', chart) + let option = { + tooltip: { + trigger: "axis", + axisPointer: { + lineStyle: { + color: "#57617B", + }, + }, + }, + toolbox: { + show: true, + feature: { + dataZoom: {show: false}, + dataView: {show: false}, + magicType: {show: false}, + restore: {show: false}, + saveAsImage: {} + } + }, + legend: { + icon: "rect", + itemWidth: 14, + itemHeight: 5, + itemGap: 13, + data: xData, + right: "4%", + textStyle: { + fontSize: 12, + color: "#F1F1F3", + }, + }, + grid: { + left: "3%", + right: "4%", + bottom: "3%", + containLabel: true, + }, + xAxis: [ + { + type: "category", + boundaryGap: false, + axisLine: { + lineStyle: { + color: "#57617B", + }, + }, + data: data.map(e => e.time), + }, + ], + yAxis: [ + { + type: "value", + name: "转速(n/s)", + axisTick: { + show: false, + }, + axisLine: { + lineStyle: { + color: "#57617B", + }, + }, + axisLabel: { + margin: 10, + textStyle: { + fontSize: 14, + }, + }, + splitLine: { + lineStyle: { + color: "#57617B", + }, + }, + }, + { + type: "value", + name: "转速(n/s)", + axisTick: { + show: false, + }, + axisLine: { + lineStyle: { + color: "#57617B", + }, + }, + axisLabel: { + margin: 10, + textStyle: { + fontSize: 14, + }, + }, + splitLine: { + lineStyle: { + color: "#57617B", + }, + }, + }, + ], + series: series, + }; + chart.setOption(option) +} + +const show = (e) => { + let node = $(e).prev() + node.show() + setTimeout(() => { + node.hide() + }, 1000 * 3) +} +let tableHeadChangeArr = [ + "采集时间", + "一体机A转速", + "一体机A电流", + "一体机A机头压力", + "一体机A机头温度", + "一体机A切刀电流", + "一体机A切刀转速" +] +const tableHeadChange = (e, val) => { + if ($(val).is(":checked")) { + tableHeadChangeArr.push(e) + } else { + tableHeadChangeArr = tableHeadChangeArr.filter(v => v !== e) + } + console.log(tableHeadChangeArr) +} diff --git a/haiwei-admin/src/main/resources/static/board/doc.js b/haiwei-admin/src/main/resources/static/board/doc.js index 70cc723..a5d076b 100644 --- a/haiwei-admin/src/main/resources/static/board/doc.js +++ b/haiwei-admin/src/main/resources/static/board/doc.js @@ -10,14 +10,14 @@ new Vue({ treeId: null, tableData: [], tableIds: [], - defaultCheckedKeys:[] + defaultCheckedKeys: [] }; }, async mounted() { await this.getTree() let thisId = location.href?.split('?')?.[1]?.split('=')?.[1] - if(thisId){ - let thisTreeItem = this.treeData.find(e=>e.id.toString() === thisId) + if (thisId) { + let thisTreeItem = this.treeData.find(e => e.id.toString() === thisId) this.handleNodeClick(thisTreeItem) this.defaultCheckedKeys = [+thisId] console.log(this.defaultCheckedKeys) diff --git a/haiwei-admin/src/main/resources/templates/board/board1.html b/haiwei-admin/src/main/resources/templates/board/board1.html index 26d9374..dd29275 100644 --- a/haiwei-admin/src/main/resources/templates/board/board1.html +++ b/haiwei-admin/src/main/resources/templates/board/board1.html @@ -184,7 +184,8 @@
首页
-
60型一体机
+
60型一体机A
+
60型一体机B
视频展示
文档归档
diff --git a/haiwei-admin/src/main/resources/templates/board/board2.html b/haiwei-admin/src/main/resources/templates/board/board2.html index fc4ea48..4e32527 100644 --- a/haiwei-admin/src/main/resources/templates/board/board2.html +++ b/haiwei-admin/src/main/resources/templates/board/board2.html @@ -19,8 +19,8 @@
首页
-
60型一体机
- +
60型一体机A
+
60型一体机B
视频展示
文档归档
diff --git a/haiwei-admin/src/main/resources/templates/board/board3.html b/haiwei-admin/src/main/resources/templates/board/board3.html new file mode 100644 index 0000000..326333e --- /dev/null +++ b/haiwei-admin/src/main/resources/templates/board/board3.html @@ -0,0 +1,352 @@ + + + + + + + + + + + + + +
+
首页
+
60型一体机A
+
60型一体机B
+
视频展示
+
文档归档
+
设备介绍
+ +
历史趋势
+
数据记录
+
实时监控
+ +
+
+ + + + + + + + + + + + + + + + + + +
+ +
+ + +
+
+ +
+
+
+
+ + + + + + + +
+ + + + + diff --git a/haiwei-admin/src/main/resources/templates/board/doc.html b/haiwei-admin/src/main/resources/templates/board/doc.html index b9acb4d..f951f33 100644 --- a/haiwei-admin/src/main/resources/templates/board/doc.html +++ b/haiwei-admin/src/main/resources/templates/board/doc.html @@ -19,8 +19,8 @@
首页
-
60型一体机
- +
60型一体机A
+
60型一体机B
视频展示
文档归档
diff --git a/haiwei-admin/src/main/resources/templates/board/video.html b/haiwei-admin/src/main/resources/templates/board/video.html index f5eb788..063f7c8 100644 --- a/haiwei-admin/src/main/resources/templates/board/video.html +++ b/haiwei-admin/src/main/resources/templates/board/video.html @@ -20,8 +20,8 @@
首页
-
60型一体机
- +
60型一体机A
+
60型一体机B
视频展示
文档归档