diff --git a/haiwei-admin/src/main/resources/static/board/board.css b/haiwei-admin/src/main/resources/static/board/board.css index edc93b7..89f8190 100644 --- a/haiwei-admin/src/main/resources/static/board/board.css +++ b/haiwei-admin/src/main/resources/static/board/board.css @@ -53,6 +53,15 @@ body { height: 31vw; transform: translate(-50%, -50%); } +.centerInfoDiv{ + position: absolute; + top: 45%; + left: 50%; + width: 57vw; + height: 31vw; + transform: translate(-50%, -50%); + z-index: 2000; +} .winDiv { background-image: url("../../board/img/winBG.png"); diff --git a/haiwei-admin/src/main/resources/static/board/board3.css b/haiwei-admin/src/main/resources/static/board/board3.css index edc93b7..1be2970 100644 --- a/haiwei-admin/src/main/resources/static/board/board3.css +++ b/haiwei-admin/src/main/resources/static/board/board3.css @@ -126,8 +126,8 @@ body { background-size: 100% 100%; background-repeat: no-repeat; position: absolute; - width: 10vw; - height: 4vw; + /*width: 10vw;*/ + /*height: 4vw;*/ transform: translateX(-50%); } diff --git a/haiwei-admin/src/main/resources/static/board/board3.js b/haiwei-admin/src/main/resources/static/board/board3.js index 162b78a..01d76c5 100644 --- a/haiwei-admin/src/main/resources/static/board/board3.js +++ b/haiwei-admin/src/main/resources/static/board/board3.js @@ -16,32 +16,33 @@ $(() => { }) - $.get(ctx + 'broad/home/queryParam', {name}, (e) => { + let request = () =>{ + $.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] + 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 }) - return obj - }) - arr.forEach(val => { - let html = ` -