chore: initial commit

This commit is contained in:
XingCheng3
2026-05-29 09:34:10 +08:00
commit d9e8966cf8
215 changed files with 36588 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 553 KiB

57
public/config.js Normal file
View File

@@ -0,0 +1,57 @@
window.g = {
mqttClient: null,
mqttSubscriptionTopic: 'MES/InstantMessaging/XD_GLKG/#',
mqttPublishTopic: 'WEB/InstantMessaging/XD_GLKG/MisServer',
mqttIP: '192.168.1.200',
mqttPortNumber: '8083',
// baseURL: 'http://192.168.1.200:10000/submit/MESCommonBase.ashx',
baseURL: 'http://127.0.0.1:10180/submit/MESCommonBase.ashx',
lineType: 'ZZ',
// 可选值:'GLKG' | 'DLQ' | 'ZZ'
}
window.tvData = {
生产数据: {
今日计划: 6,
上线数量: 3,
下线数量: 4,
合格率: 100,
月产量: 51,
月合格率: 100
},
生产计划: [
{
订单号: 'NA24012_OB02S',
产品型号: 'MXC(150)',
工件编号: 'NA24012_OB02S',
上线时间: '2024-07-17 10:19:36',
下线时间: '2024-07-17 10:23:36',
是否合格: 1
},
{
订单号: 'NA24012_OB02X',
产品型号: 'MXC(150)',
工件编号: 'NA24012_OB02X',
上线时间: '2024-07-17 12:19:36',
下线时间: '2024-07-17 14:23:36',
是否合格: 2
},
{
订单号: 'NA24012_OB06S',
产品型号: 'MXC(150)',
工件编号: 'NA24012_OB06S',
上线时间: '2024-07-17 13:19:36',
下线时间: '2024-07-17 15:23:36',
是否合格: 1
}
],
JPH日: {
y: ['08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20'],
上线: [7, 4, 3, 0, 0, 0, 4, 2, 1, 1, 2, 0, 0],
下线: [2, 1, 2, 1, 0, 0, 4, 1, 4, 3, 8, 0, 0]
},
JPH月: {
y: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28],
上线: [7, 25, 2, 23, 22, 2, 5, 7, 8, 3, 4, 2, 47, 4, 14, 16, 16, 18, 24, 14, 9, 0, 23, 1, 31, 4, 11, 6],
下线: [5, 1, 2, 5, 13, 6, 7, 2, 1, 6, 4, 2, 18, 12, 7, 3, 1, 5, 24, 6, 2, 13, 6, 8, 24, 8, 45, 24]
}
}

BIN
public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

26
public/index.html Normal file
View File

@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title>设备信息展示平台</title>
<script type="text/javascript">
document.write("<script src='./config.js?v=" + new Date().getTime() + "'><\/script>");
</script>
</head>
<body>
<noscript>
<strong>We're sorry but gaojingtv doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>
<style slot-scope="true">
body{
/*background-color: #5B9BD5;*/
/*background:rgba(0,0,0,0.2);*/
}
</style>

32
public/layou.json Normal file
View File

@@ -0,0 +1,32 @@
{
"layout": [
{
"opName": "OP010",
"opNameShow": "OP010",
"dir": 2,
"left": "340px",
"top": "7px"
},
{
"opName": "OP020",
"opNameShow": "OP020",
"dir": 2,
"left": "750px",
"top": "7px"
},
{
"opName": "OP030",
"opNameShow": "OP030",
"dir": 2,
"left": "1140px",
"top": "7px"
},
{
"opName": "OP040",
"opNameShow": "OP040",
"dir": 2,
"left": "1470px",
"top": "7px"
}
]
}

BIN
public/layout.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 91 KiB

25
public/layoutDLQ.json Normal file
View File

@@ -0,0 +1,25 @@
{
"layout": [
{
"opName": "AC0601",
"opNameShow": "AC0601",
"dir": 2,
"left": "250px",
"top": "30px"
},
{
"opName": "AC0602",
"opNameShow": "AC0602",
"dir": 2,
"left": "700px",
"top": "30px"
},
{
"opName": "AC0603",
"opNameShow": "AC0603",
"dir": 2,
"left": "1300px",
"top": "30px"
}
]
}

BIN
public/layoutDLQ.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 780 KiB

BIN
public/layoutDLQ_Back.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 KiB

BIN
public/layoutDetails2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

60
public/layoutGLKG.json Normal file
View File

@@ -0,0 +1,60 @@
{
"layout": [
{
"opName": "AC0901",
"opNameShow": "AC0901",
"dir": 2,
"left": "100px",
"top": "30px"
},
{
"opName": "AC0902",
"opNameShow": "AC0902",
"dir": 2,
"left": "400px",
"top": "30px"
},
{
"opName": "AC0903",
"opNameShow": "AC0903",
"dir": 2,
"left": "610px",
"top": "30px"
},
{
"opName": "AC0904",
"opNameShow": "AC0904",
"dir": 2,
"left": "890px",
"top": "30px"
},
{
"opName": "AC0905",
"opNameShow": "AC0905",
"dir": 2,
"left": "1090px",
"top": "30px"
},
{
"opName": "AC0906",
"opNameShow": "AC0906",
"dir": 2,
"left": "1270px",
"top": "30px"
},
{
"opName": "AC0907",
"opNameShow": "AC0907",
"dir": 2,
"left": "1390px",
"top": "30px"
},
{
"opName": "AC0908",
"opNameShow": "AC0908",
"dir": 2,
"left": "1630px",
"top": "30px"
}
]
}

BIN
public/layoutGLKG.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 779 KiB

143
public/layoutZZ copy.json Normal file
View File

@@ -0,0 +1,143 @@
{
"layout": [
{
"opName": "AC1101",
"opNameShow": "AC1101",
"dir": 2,
"left": "140px",
"top": "30px"
},
{
"opName": "AC1102",
"opNameShow": "AC1102",
"dir": 2,
"left": "430px",
"top": "30px"
},
{
"opName": "AC1103",
"opNameShow": "AC1103",
"dir": 2,
"left": "580px",
"top": "30px"
},
{
"opName": "AC1104_1",
"opNameShow": "AC1104-1",
"dir": 2,
"left": "750px",
"top": "30px"
},
{
"opName": "AC1104_2",
"opNameShow": "AC1104-2",
"dir": 1,
"left": "750px",
"top": "200px"
},
{
"opName": "AC1104_3",
"opNameShow": "AC1104-3",
"dir": 2,
"left": "825px",
"top": "30px"
},
{
"opName": "AC1104_4",
"opNameShow": "AC1104-4",
"dir": 1,
"left": "825px",
"top": "200px"
},
{
"opName": "AC1104_5",
"opNameShow": "AC1104-5",
"dir": 2,
"left": "900px",
"top": "30px"
},
{
"opName": "AC1104_6",
"opNameShow": "AC1104-6",
"dir": 1,
"left": "900px",
"top": "200px"
},
{
"opName": "AC1104_7",
"opNameShow": "AC1104-7",
"dir": 2,
"left": "975px",
"top": "30px"
},
{
"opName": "AC1104_8",
"opNameShow": "AC1104-8",
"dir": 1,
"left": "975px",
"top": "200px"
},
{
"opName": "AC1104_9",
"opNameShow": "AC1104-9",
"dir": 2,
"left": "1050px",
"top": "30px"
},
{
"opName": "AC1104_10",
"opNameShow": "AC1104-10",
"dir": 1,
"left": "1050px",
"top": "200px"
},
{
"opName": "AC1105",
"opNameShow": "AC1105",
"dir": 2,
"left": "1350px",
"top": "200px"
},
{
"opName": "AC1106",
"opNameShow": "AC1106",
"dir": 2,
"left": "1250px",
"top": "30px"
},
{
"opName": "AC1107",
"opNameShow": "AC1107",
"dir": 2,
"left": "1420px",
"top": "30px"
}
]
}
{
"layout": [
{
"opName": "AC1101",
"opNameShow": "AC1101",
"dir": 2,
"left": "520px",
"top": "35px"
},
{
"opName": "AC1102",
"opNameShow": "AC1102",
"dir": 2,
"left": "962px",
"top": "80px"
},
{
"opName": "AC1103",
"opNameShow": "AC1103",
"dir": 2,
"left": "1420px",
"top": "85px"
}
]
}

116
public/layoutZZ.json Normal file
View File

@@ -0,0 +1,116 @@
{
"layout": [
{
"opName": "AC1101",
"opNameShow": "AC1101",
"dir": 2,
"left": "300px",
"top": "35px"
},
{
"opName": "AC1102",
"opNameShow": "AC1102",
"dir": 2,
"left": "545px",
"top": "80px"
},
{
"opName": "AC1103",
"opNameShow": "AC1103",
"dir": 2,
"left": "800px",
"top": "85px"
},
{
"opName": "AC1104_1",
"opNameShow": "AC1104-1",
"dir": 2,
"left": "970px",
"top": "35px"
},
{
"opName": "AC1104_2",
"opNameShow": "AC1104-2",
"dir": 1,
"left": "970px",
"top": "205px"
},
{
"opName": "AC1104_3",
"opNameShow": "AC1104-3",
"dir": 2,
"left": "1045px",
"top": "35px"
},
{
"opName": "AC1104_4",
"opNameShow": "AC1104-4",
"dir": 1,
"left": "1045px",
"top": "205px"
},
{
"opName": "AC1104_5",
"opNameShow": "AC1104-5",
"dir": 2,
"left": "1120px",
"top": "35px"
},
{
"opName": "AC1104_6",
"opNameShow": "AC1104-6",
"dir": 1,
"left": "1120px",
"top": "205px"
},
{
"opName": "AC1104_7",
"opNameShow": "AC1104-7",
"dir": 2,
"left": "1195px",
"top": "35px"
},
{
"opName": "AC1104_8",
"opNameShow": "AC1104-8",
"dir": 1,
"left": "1195px",
"top": "205px"
},
{
"opName": "AC1104_9",
"opNameShow": "AC1104-9",
"dir": 2,
"left": "1270px",
"top": "35px"
},
{
"opName": "AC1104_10",
"opNameShow": "AC1104-10",
"dir": 1,
"left": "1270px",
"top": "205px"
},
{
"opName": "AC1105",
"opNameShow": "AC1105",
"dir": 2,
"left": "1525px",
"top": "200px"
},
{
"opName": "AC1106",
"opNameShow": "AC1106",
"dir": 2,
"left": "1458px",
"top": "78px"
},
{
"opName": "AC1107",
"opNameShow": "AC1107",
"dir": 2,
"left": "1585px",
"top": "85px"
}
]
}

BIN
public/layoutZZ.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 780 KiB

BIN
public/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 625 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 161 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 138 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 128 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 141 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 143 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 130 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 152 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 125 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 135 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 572 KiB