From a9a816d1777a480e0045cb2129c37b951c90dfcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A4=9C=E7=AC=99=E6=AD=8C?= <2277317060@qq.com> Date: Fri, 13 Oct 2023 15:14:14 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=A7=86=E9=A2=91=E6=98=BE?= =?UTF-8?q?=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../web/controller/broad/BroadController.java | 6 +++ .../src/main/resources/static/board/board.css | 27 +++++++--- .../src/main/resources/static/board/board.js | 26 +++------ .../src/main/resources/static/board/doc.js | 10 +++- .../src/main/resources/static/board/video.js | 53 +++++++++++++++++++ .../resources/templates/board/board1.html | 30 +++++------ .../resources/templates/board/board2.html | 6 +-- .../main/resources/templates/board/doc.html | 10 ++-- .../templates/board/monitoring1.html | 31 +++++++++++ .../main/resources/templates/board/video.html | 31 ++--------- 10 files changed, 152 insertions(+), 78 deletions(-) create mode 100644 haiwei-admin/src/main/resources/templates/board/monitoring1.html 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 84cff14..6fc0c92 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 @@ -31,6 +31,12 @@ public class BroadController { return prefix + "/monitoring"; } + @GetMapping("/monitoring1") + public String monitoring1() + { + return prefix + "/monitoring1"; + } + @GetMapping("/video") public String video() { diff --git a/haiwei-admin/src/main/resources/static/board/board.css b/haiwei-admin/src/main/resources/static/board/board.css index d96de0f..e730dad 100644 --- a/haiwei-admin/src/main/resources/static/board/board.css +++ b/haiwei-admin/src/main/resources/static/board/board.css @@ -62,7 +62,7 @@ body { right: 7.5vw; top: 19%; width: 16vw; - height: 22.9vw; + height: 32.9vw; } .winDiv p { @@ -73,7 +73,7 @@ body { position: absolute; font-size: 1vw; left: 20%; - top: 4%; + top: 6%; color: #ddd; } @@ -92,7 +92,7 @@ body { top: calc(15% + 1.5vw); color: #4888bf; width: 80%; - height: 40%; + height: 25%; border-radius: 3px; border: 2px solid #3f65a1; padding: 5%; @@ -102,7 +102,7 @@ body { position: absolute; font-size: 1vw; left: 10%; - top: 62%; + top: 45%; color: #fff; } @@ -110,7 +110,7 @@ body { position: absolute; font-size: 0.8vw; left: 10%; - top: calc(62% + 1.5vw); + top: calc(45% + 1.5vw); color: #4888bf; width: 80%; height: 28%; @@ -124,10 +124,9 @@ body { background-size: 100% 100%; background-repeat: no-repeat; position: absolute; - top: 68%; - right: 12%; width: 10vw; height: 4vw; + transform: translateX(-50%); } .status .icon { @@ -165,9 +164,10 @@ body { background-repeat: no-repeat; position: absolute; top: 10%; - left: 10%; + left: 0; width: 9vw; height: 5.35vw; + transform: translateX(-50%); } .centerInfo .win .title { @@ -256,6 +256,17 @@ body { 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/board.js b/haiwei-admin/src/main/resources/static/board/board.js index a4894bf..c4d1680 100644 --- a/haiwei-admin/src/main/resources/static/board/board.js +++ b/haiwei-admin/src/main/resources/static/board/board.js @@ -3,7 +3,6 @@ $(() => { $.get(ctx + 'broad/home/deviceInfo', {}, (e) => { let data = e.data[0] - console.log(data) $('.bg1').html(`

${data.deviceFunction}

`) $('.bg2').html(`

${data.deviceParam}

`) @@ -48,33 +47,20 @@ $(() => { }) - $.get(ctx + 'broad/home/queryDeviceState', {}, (e) => { - let data = e.data - let p = [ - { - top: '67%', - left: '68%' - }, - { - top: '67%', - left: '80%' - }, - ] - data.forEach((val, i) => { + $.get(ctx + 'broad/home/queryDeviceState', {}, (data) => { + console.log(data) let html = ` -
-
- ${val.name} +
+
+ ${data.msg}
` - $("#statusD").append(html) - }) + $("#statusD").html(html) }) }) let chart1 = (el, data) => { - console.log(data) let xData = Object.keys(data[0]).filter(e => e !== 'time') let series = xData.map(e => { return { diff --git a/haiwei-admin/src/main/resources/static/board/doc.js b/haiwei-admin/src/main/resources/static/board/doc.js index daab489..de42e4b 100644 --- a/haiwei-admin/src/main/resources/static/board/doc.js +++ b/haiwei-admin/src/main/resources/static/board/doc.js @@ -20,6 +20,7 @@ new Vue({ $.post(ctx + 'manage/base_file/fileList', {name: data.value}, (e) => { this.tableData = e.data.map((e, i) => { return { + ...e, no: i, name: e.fileName, date: e.createTime, @@ -32,7 +33,14 @@ new Vue({ this.treeName = data.value }, handleEdit(index, row) { - console.log(index, row); + const fileName = row.fileName; + const url = row.filePath; + var a = document.createElement("a"); + a.download = fileName; + a.href = url; + $("body").append(a) + a.click(); + $(a).remove(); }, handleDelete(index, row) { this.$confirm('此操作将永久删除该文件, 是否继续?', '提示', { diff --git a/haiwei-admin/src/main/resources/static/board/video.js b/haiwei-admin/src/main/resources/static/board/video.js index e69de29..b4f3d11 100644 --- a/haiwei-admin/src/main/resources/static/board/video.js +++ b/haiwei-admin/src/main/resources/static/board/video.js @@ -0,0 +1,53 @@ +$(()=>{ + $.get(ctx + 'broad/home/queryCustomer', {}, (e) => { + let treeData = e.data.map(e => { + return { + value: e.customerName, + id: e.objid + } + }) + treeData.forEach(e=>{ + let html = ` +
+
${e.value}
+
+ ` + $("#left").append(html) + }) + }) +}) +const leftClick = (e,id,name)=>{ + $(e).attr('class', 'itemClick'); + $(e).siblings().attr('class', 'item'); + $.post(ctx + 'manage/base_file/fileList', {name: name}, (e) => { + console.log(e) + let tableData = e.data.map((e, i) => { + return { + ...e, + no: i, + name: e.fileName, + date: e.createTime, + people: e.customName, + objid:e.objid + } + }) + let html = `` + tableData.forEach(e=>{ + html += ` +
+
+ +
+
+ ` + }) + $("#left1").html(html) + }) +} +const leftClick1 = (e,path)=> { + $(e).attr('class', 'itemClick'); + $(e).siblings().attr('class', 'item'); + $("#rightVideo").html(``) +} diff --git a/haiwei-admin/src/main/resources/templates/board/board1.html b/haiwei-admin/src/main/resources/templates/board/board1.html index 2b7d8ab..3587998 100644 --- a/haiwei-admin/src/main/resources/templates/board/board1.html +++ b/haiwei-admin/src/main/resources/templates/board/board1.html @@ -39,9 +39,10 @@ }) if (e === 3) { document.getElementById("monitoringIframe").contentWindow.edit() - setTimeout(()=>{ + setTimeout(() => { $("#monitoring").empty() - },100) + $("#centerModal1").append(``) + }, 100) } } const toggleInfo = () => { @@ -53,10 +54,11 @@ } const bottomBtnInfo = (e, el) => { if (e === 3) { + $('#centerModal1').empty() $("#monitoring").append(``) - setTimeout(()=>{ + setTimeout(() => { document.getElementById("monitoringIframe").contentWindow.login() - },1000) + }, 1000) } $("#modal" + e).toggle() switch (e) { @@ -122,9 +124,9 @@ }
-
首页
-
60型脱水机
-
60型一体机
+
首页
+
60型脱水机
+
视频展示
文档归档
设备介绍
@@ -162,20 +164,14 @@
基本信息
设备描述:
- -
技术参数:
- - - - +
+
-
-
@@ -237,10 +233,12 @@
-
+
+ +
diff --git a/haiwei-admin/src/main/resources/templates/board/board2.html b/haiwei-admin/src/main/resources/templates/board/board2.html index 21e701f..50e9fbe 100644 --- a/haiwei-admin/src/main/resources/templates/board/board2.html +++ b/haiwei-admin/src/main/resources/templates/board/board2.html @@ -18,9 +18,9 @@ }
-
首页
-
60型脱水机
-
60型一体机
+
首页
+
60型脱水机
+
视频展示
文档归档
diff --git a/haiwei-admin/src/main/resources/templates/board/doc.html b/haiwei-admin/src/main/resources/templates/board/doc.html index 80984f5..3131e24 100644 --- a/haiwei-admin/src/main/resources/templates/board/doc.html +++ b/haiwei-admin/src/main/resources/templates/board/doc.html @@ -18,9 +18,9 @@ }
-
首页
-
60型脱水机
-
60型一体机
+
首页
+
60型脱水机
+
视频展示
文档归档
@@ -90,6 +90,10 @@ + 下载 + + + + + + + + + +
+
+
+ + + + + diff --git a/haiwei-admin/src/main/resources/templates/board/video.html b/haiwei-admin/src/main/resources/templates/board/video.html index 92996e1..b353947 100644 --- a/haiwei-admin/src/main/resources/templates/board/video.html +++ b/haiwei-admin/src/main/resources/templates/board/video.html @@ -19,43 +19,20 @@ }
-
首页
-
60型脱水机
-
60型一体机
+
首页
+
60型脱水机
+
视频展示
文档归档
-
-
一体机1
-
-
-
一体机1
-
-
-
一体机1
-
-
-
- -
-
-
-
- -
-
-
- +