From d4a06fc08b6e6e215bbf1771d204c3b7d773bc29 Mon Sep 17 00:00:00 2001
From: huang <1532065656@qq.com>
Date: 星期四, 09 十月 2025 14:51:01 +0800
Subject: [PATCH] Merge branch 'master' of http://10.153.19.25:10105/r/YiWuProject

---
 UI-Project/src/views/largescreendisplay/screendisplay.vue | 1518 +++++++++++++++++++++++++++++++++++++++++++++++++++-------
 1 files changed, 1,330 insertions(+), 188 deletions(-)

diff --git a/UI-Project/src/views/largescreendisplay/screendisplay.vue b/UI-Project/src/views/largescreendisplay/screendisplay.vue
index ba9ef74..f1127b4 100644
--- a/UI-Project/src/views/largescreendisplay/screendisplay.vue
+++ b/UI-Project/src/views/largescreendisplay/screendisplay.vue
@@ -1,246 +1,1388 @@
 <script setup>
-import {onBeforeUnmount, onMounted, onUnmounted, reactive, ref} from "vue";
-import {useRouter} from "vue-router"
-import {host, WebSocketHost} from '@/utils/constants'
+import { onBeforeUnmount, onMounted, onUnmounted, ref, computed, nextTick, watch } from "vue";
+import { useRouter } from "vue-router"
+import { host, WebSocketHost } from '@/utils/constants'
 import request from "@/utils/request"
-import {closeWebSocket, initializeWebSocket} from '@/utils/WebSocketService';
+import { closeWebSocket, initializeWebSocket } from '@/utils/WebSocketService';
 import dayjs from 'dayjs';
-import {ElMessage, ElMessageBox} from 'element-plus'
-import {useI18n} from 'vue-i18n'
+import { ElMessage } from 'element-plus'
+import { useI18n } from 'vue-i18n'
+import * as echarts from 'echarts';
+import { debounce } from 'lodash-es';// 浣跨敤闃叉姈澶勭悊楂橀鏁版嵁鏇存柊
+// 浣跨敤娴呮瘮杈冨噺灏戜笉蹇呰鐨勫搷搴斿紡鏇存柊
+import { shallowRef } from 'vue';
+const rawGlassStorageDetailList = shallowRef([]);
+const orderDTOS = shallowRef([]);
+const load = ref(true)
+const edg = ref(true)
+const temp = ref(true)
+const hollow = ref(true)
 const router = useRouter()
 const blinda = ref(false)
 const blindb = ref(false)
-const {t} = useI18n()
+const blindc = ref(false)
+const { t } = useI18n()
 let language = ref(localStorage.getItem('lang') || 'zh')
-const tableData = ref([])
 let socket = null;
-const socketUrl = `ws://${WebSocketHost}:${host}/api/cacheGlass/api/talk/edgTasks`;
-const handleMessage = (data) => {
-  tableData.value = data.edgTasks[0]
+// const rawGlassStorageDetailList = ref([])
+// const orderDTOS = ref([])
+const socketUrl = `ws://${WebSocketHost}:${host}/api/glassStorage/api/talk/largenScreen`;
+const debouncedUpdate = debounce((data, handler) => {
+  handler(data);
+}, 300);
+let handleMessage = (data) => {
+  debouncedUpdate(data, (cleanData) => {
+    rawGlassStorageDetailList.value = cleanData.rawGlassStorageDetailList[0];
+    orderDTOS.value = cleanData.orderDTOS[0];
+  });
+  rawGlassStorageDetailList.value = data.rawGlassStorageDetailList[0]
+  orderDTOS.value = data.orderDTOS[0]
 };
-const handleBinda = async (row) => {  
-  blinda.value = true;
-  await fetchFlowCardId(row.orderId);
-};  
-const fetchFlowCardId = async (orderId) => {
-  try  {
-    const response = await request.post('/loadGlass/order/order/selectOrderdetail',{
-      orderId: orderId
-    })
+let socket1 = null;
+const edgOneTasks = ref([])
+const edgTwoTasks = ref([])
+const engineeringOne = ref([])
+const engineeringTwo = ref([])
+// 鍚堝苟WebSocket杩炴帴锛屽噺灏戣繛鎺ユ暟
+const socketManager = {
+  sockets: {},
+  init(url, handler) {
+    if (!this.sockets[url]) {
+      this.sockets[url] = initializeWebSocket(url, handler);
+    }
+    return this.sockets[url];
+  },
+  closeAll() {
+    Object.values(this.sockets).forEach(socket => closeWebSocket(socket));
+    this.sockets = {};
+  }
+};
+let myChartLoad = null;
+let myChartEdg = null;
+let myChartTemp = null;
+let myChartHollow = null;
+const socketUrl1 = `ws://${WebSocketHost}:${host}/api/cacheGlass/api/talk/largenScreen`;
+let handleMessage1 = (data) => {
+  edgOneTasks.value = data.edgOneCount[0];
+  edgTwoTasks.value = data.edgOneCount[0];
+  engineeringOne.value = data.engineeringOne[0];
+  engineeringTwo.value = data.engineeringTwo[0];
+  if (numBoxes.value != edgOneTasks.value) {
+    numBoxes.value = edgOneTasks.value;
+    initBoxes(boxes, numBoxes, 'firstup');
+  }
+  if (numBoxes2.value != edgTwoTasks.value) {
+    numBoxes2.value = edgTwoTasks.value;
+    initBoxes(boxes2, numBoxes2, 'firstup');
+  }
+  timeAxisCreate(t('large.cuttingState'), chartLoad.value, myChartLoad, tableDataTime(false, data.loadRunTimes[0]));
+  timeAxisCreate(t('large.edgingState'), chartEdg.value, myChartEdg, tableDataTime(false, data.loadRunTimes[0]));
+};
+let socket2 = null;
+const temperingTaskType = ref([])
+const temperingGlassInfoList = ref([])
+const temperingGlassInfoInList = ref([])
+const socketUrl2 = `ws://${WebSocketHost}:${host}/api/temperingGlass/api/talk/largenScreen`;
+let handleMessage2 = (data) => {
+  temperingTaskType.value = data.temperingTaskType[0];
+  temperingGlassInfoList.value = data.temperingGlassInfoList[0];
+  if (numBoxes3.value != temperingTaskType.value) {
+    numBoxes3.value = temperingTaskType.value;
+    initBoxes(boxes3, numBoxes3, 'secondleft');
+  }
+  if (temperingGlassInfoList.value >= 1) {
+    if (numBoxes4.value != 1) {
+      numBoxes4.value = 1;
+      initBoxes(boxes4, numBoxes4, 'right');
+    }
+  } else {
+    if (numBoxes4.value != 0) {
+      numBoxes4.value = 0;
+      initBoxes(boxes4, numBoxes4, 'right');
+    }
+  }
+  temperingGlassInfoInList.value = data.temperingGlassInfoInList[0];
+};
+let socket3 = null;
+const bigStorageCageUsage = ref([])
+const socketUrl3 = `ws://${WebSocketHost}:${host}/api/cacheVerticalGlass/api/talk/largenScreen`;
+let handleMessage3 = (data) => {
+  bigStorageCageUsage.value = data.bigStorageCageUsage[0];
+  timeAxisCreate(t('large.temperingState'), chartTemp.value, myChartTemp, tableDataTime(false, data.tempRunTimes[0]));
+};
+// let mychart = null; // 寤鸿璁句负澶栭儴鍙橀噺閬垮厤閲嶅鍒濆鍖�
+// const formatToTimeString(datetime)  => {
+const formatToTimeString = (datetime) => {
+  const date = new Date(datetime);
+  const hours = date.getHours().toString().padStart(2, '0');
+  const minutes = date.getMinutes().toString().padStart(2, '0');
+  const seconds = date.getSeconds().toString().padStart(2, '0');
+  return `${hours}:${minutes}:${seconds}`;
+}
+const tableDataTime = (result, tableDatax) => {
+  const tableData = [];
+  if (tableDatax.length > 0) {
+    tableDatax.forEach((item, index) => {
+      tableData.push({
+        firstTimestamp: index == 0 ? item.startTimestamp : tableDatax[index - 1].secondTimestamp,
+        secondTimestamp: index == tableDatax.length - 1 ? item.endTimestamp : item.firstTimestamp,
+        diffMinutes: item.diffMinutes,
+        startTimestamp: item.startTimestamp,
+        endTimestamp: item.endTimestamp,
+        state: 1
+      });
+      if (result) {
+        tableData.push({
+          firstTimestamp: item.firstTimestamp,
+          secondTimestamp: item.secondTimestamp,
+          diffMinutes: item.diffMinutes,
+          startTimestamp: item.startTimestamp,
+          endTimestamp: item.endTimestamp,
+          state: 2
+        });
+      }
+    });
+  }
+  return tableData;
+};
+const timeAxisCreate = (title, chartDom, mychart, RunTimes) => {
+  if (!chartDom) {
+    console.error('鍥捐〃瀹瑰櫒鏈壘鍒�');
+    return;
+  }
+  if (!mychart) {
+    mychart = echarts.init(chartDom);
+  }
+  let firstTime = null;
+  let secondTime = null;
+  if (RunTimes.length == 0) {
+    firstTime = "00-00-00 00:00:00";
+    secondTime = "00-00-00 00:00:00";
+  } else {
+    firstTime = RunTimes[0].startTimestamp;
+    secondTime = RunTimes[0].endTimestamp;
+  }
+  // 鏋勫缓绾挎鏁扮粍
+  const segments = RunTimes.map(item => ({
+    type: 'line',
+    symbol: 'none',
+    data: [
+      {
+        value: [item.firstTimestamp, 0],
+        extra: {
+          start: item.firstTimestamp,
+          end: item.secondTimestamp
+        }
+      },
+      {
+        value: [item.secondTimestamp, 0],
+        extra: {
+          start: item.firstTimestamp,
+          end: item.secondTimestamp
+        }
+      }
+    ],
+    lineStyle: {
+      color: 'red', // 鏀寔涓嶅悓棰滆壊
+      width: 4
+    },
+    z: 1
+  }));
+  const optionOne = {
+    title: {
+      text: title,
+      left: 'center',
+      top: '5%',
+      textStyle: {
+        fontSize: 16,
+        fontWeight: 'bold',
+        color: '#333'
+      }
+    },
+    tooltip: {
+      trigger: 'axis',
+      axisPointer: { type: 'line' },
+      backgroundColor: 'rgba(50,50,50,0.7)',
+      textStyle: { color: '#fff' },
+      formatter: (params) => {
+        const seen = new Set();
+        const items = params
+          .filter(p => {
+            const key = p.data?.extra?.start + '|' + p.data?.extra?.end;
+            if (seen.has(key)) return false;
+            seen.add(key);
+            return true;
+          })
+          .map(p => {
+            const start = p.data?.extra?.start;
+            const end = p.data?.extra?.end;
+            const timeStr = p.axisValueLabel;
+            if (start && end) {
+              return `寮�濮嬫椂闂达細${start}<br/>缁撴潫鏃堕棿锛�${end}`;
+            }
+            return `鏃堕棿锛�${timeStr}`;
+          })
+          .filter(Boolean);
+        return items.join('<br/>');
+      }
+    },
+    grid: {
+      top: '20%',
+      left: '5%',
+      right: '5%',
+      bottom: '15%'
+    },
+    xAxis: {
+      type: 'time',
+      axisLabel: {
+        formatter: function (value) {
+          const date = new Date(value);
+          return (
+            date.getHours().toString().padStart(2, '0') + ':' +
+            date.getMinutes().toString().padStart(2, '0') + ':' +
+            date.getSeconds().toString().padStart(2, '0')
+          );
+        },
+        fontSize: 10,
+        color: '#666'
+      },
+      splitLine: { show: false },
+      axisLine: { lineStyle: { color: '#aaa' } }
+    },
+    yAxis: {
+      type: 'value',
+      min: -1,
+      max: 1,
+      show: false
+    },
+    series: [
+      // 涓绘椂闂寸嚎锛堣摑鑹叉笎鍙橈紝绋嶅井鍔犵矖锛�
+      {
+        type: 'line',
+        symbol: 'none',
+        data: [
+          [firstTime, 0],
+          [secondTime, 0]
+        ],
+        lineStyle: {
+          color: new echarts.graphic.LinearGradient(0, 0, 1, 0, [
+            { offset: 0, color: 'red' },
+            { offset: 1, color: 'red' }
+          ]),
+          width: 5,
+          shadowColor: 'rgba(0,0,0,0.2)',
+          shadowBlur: 8
+        },
+        z: 0
+      },
+      // 灏忔鏃堕棿绾匡紙缁熶竴鏌斿拰鐨勯粍鑹诧級
+      ...segments.map(seg => ({
+        ...seg,
+        lineStyle: {
+          color: '#4facfe',
+          width: 3,
+          shadowColor: 'rgba(255,204,0,0.5)',
+          shadowBlur: 5
+        }
+      })),
+    ]
+  };
+  mychart.setOption(optionOne, true);
+};
+let socket4 = null;
+const hollowBigStorageCageUsage = ref([])
+const socketUrl4 = `ws://${WebSocketHost}:${host}/api/hollowGlass/api/talk/largenScreen`;
+let handleMessage4 = (data) => {
+  hollowBigStorageCageUsage.value = data.hollowBigStorageCageUsage[0];
+  timeAxisCreate(t('large.hollowState'), chartHollow.value, myChartHollow, tableDataTime(false, data.hollowRunTimes[0]));
+};
+let socket5 = null;
+let myChart = null;
+let myChart2 = null;
+const switchNoorAreaLeft = ref(true)
+const switchNoorAreaRight = ref(true)
+const productionVO = ref([])
+const socketUrl5 = `ws://${WebSocketHost}:${host}/api/cacheGlass/api/talk/largenScreenProduction`;
+const createchart = (productionVO) => {
+  categories = productionVO.value.map(item => item.date); // 鑾峰彇鏃ユ湡浣滀负 x 杞�
+  totalAreaOutOne = productionVO.value.map(item => item.totalAreaOutOne);
+  countIn = productionVO.value.map(item => item.countIn);
+  totalAreaOutTwo = productionVO.value.map(item => item.totalAreaOutTwo);
+  totalAreaOut = productionVO.value.map(item => item.totalAreaOut);
+  countOut = productionVO.value.map(item => item.countOut);
+  hollowTotalAreaOutTwo = productionVO.value.map(item => item.hollowTotalAreaOutTwo);
+  hollowCountOutOne = productionVO.value.map(item => item.hollowCountOutOne);
+  countOutTwo = productionVO.value.map(item => item.countOutTwo);
+  hollowCountOutTwo = productionVO.value.map(item => item.hollowCountOutTwo);
+  hollowTotalAreaOutOne = productionVO.value.map(item => item.hollowTotalAreaOutOne);
+  totalAreaIn = productionVO.value.map(item => item.totalAreaIn);
+  countOutOne = productionVO.value.map(item => item.countOutOne);
+  //鍥捐〃
+  nextTick() // 纭繚 DOM 鍔犺浇瀹屾垚
+  const chartDom = chartRef.value;
+  if (!chartDom) {
+    console.error('鍥捐〃瀹瑰櫒鏈壘鍒�');
+    return;
+  }
+  if (!myChart) {
+    myChart = echarts.init(chartDom);
+  }
+  let loadOneData;
+  let loadTwoData;
+  let tempfontData;
+  if (switchNoorAreaLeft.value) {
+    loadOneData = countOutOne;
+    loadTwoData = countOutTwo;
+    tempfontData = countIn;
+  } else {
+    loadOneData = totalAreaOutOne;
+    loadTwoData = totalAreaOutTwo;
+    tempfontData = totalAreaIn;
+  }
+  const option = {
+    title: { text: '' },
+    tooltip: { trigger: 'axis' },
+    legend: {
+      data: [
+        t('large.countOutOne'),
+        // t('large.totalAreaOutOne'),
+        t('large.countOutTwo'),
+        // t('large.totalAreaOutTwo'),
+        t('large.countIn'),
+        // t('large.totalAreaIn')
+      ]
+    },
+    grid: { top: '20%', left: '3%', right: '4%', bottom: '3%', containLabel: true },
+    toolbox: {
+      feature: {
+        saveAsImage: {},
+        myTool1: {
+          show: true,
+          title: t('large.switch'),
+          icon: 'path://M512 0C229.234 0 0 229.234 0 512s229.234 512 512 512 512-229.234 512-512S794.766 0 512 0z m0 960C264.602 960 64 759.398 64 512S264.602 64 512 64s448 200.602 448 448-200.602 448-448 448z m0-768c-176.448 0-320 143.552-320 320s143.552 320 320 320 320-143.552 320-320-143.552-320-320-320z', // 鍦嗗舰鎸夐挳鍥炬爣锛堝彲鎹級
+          onclick: function () {
+            switchNoorAreaLeft.value = !switchNoorAreaLeft.value;
+            createchart(productionVO);
+            // customButtonClick(); // 璋冪敤浣犺嚜瀹氫箟鐨勬柟娉�
+          }
+        }
+      }
+    },
+    xAxis: {
+      type: 'category',
+      boundaryGap: true,
+      data: categories // 杩欐槸鏃ユ湡鏁版嵁
+    },
+    yAxis: {
+      type: 'value',
+      name: switchNoorAreaLeft.value==true?t('large.quantity'):t('large.are'), // 鍧愭爣杞村悕绉�
+      axisLabel: {
+        formatter: '{value}'
+      }
+    },
+    series: [
+      { name: t('large.countOutOne'), type: 'bar', data: loadOneData },
+      // { name: t('large.totalAreaOutOne'), type: 'bar', data: totalAreaOutOne },
+      { name: t('large.countOutTwo'), type: 'bar', data: loadTwoData },
+      // { name: t('large.totalAreaOutTwo'), type: 'bar', data: totalAreaOutTwo },
+      { name: t('large.countIn'), type: 'bar', data: tempfontData },
+      // { name: t('large.totalAreaIn'), type: 'bar', data: totalAreaIn }
+    ]
+  };
+  myChart.setOption(option, true);
+  const chartDom2 = chartRef2.value;
+  if (!chartDom2) {
+    console.error('鍥捐〃瀹瑰櫒鏈壘鍒�');
+    return;
+  }
+  // myChart2 = echarts.init(chartDom2);
+  if (!myChart2) {
+    myChart2 = echarts.init(chartDom2);
+  }
+  // else {
+  //     myChart2.clear();
+  //   }
+  let tempData;
+  let hollowOneData;
+  let hollowTwoData;
+  if (switchNoorAreaRight.value) {
+    tempData = countOut;
+    hollowOneData = hollowCountOutOne;
+    hollowTwoData = hollowCountOutTwo;
+  } else {
+    tempData = totalAreaOut;
+    hollowOneData = hollowTotalAreaOutOne;
+    hollowTwoData = hollowTotalAreaOutTwo;
+  }
+  const option2 = {
+    title: { text: '' },
+    tooltip: { trigger: 'axis' },
+    legend: {
+      data: [
+        t('large.countOut'),
+        // t('large.totalAreaOut'),
+        t('large.hollowCountOutOne'),
+        // t('large.hollowTotalAreaOutOne'),
+        t('large.hollowCountOutTwo'),
+        // t('large.hollowTotalAreaOutTwo')
+      ]
+    },
+    grid: { left: '3%', right: '4%', bottom: '3%', containLabel: true },
+    toolbox: {
+      feature: {
+        saveAsImage: {},
+        myTool1: {
+          show: true,
+          title: t('large.switch'),
+          icon: 'path://M512 0C229.234 0 0 229.234 0 512s229.234 512 512 512 512-229.234 512-512S794.766 0 512 0z m0 960C264.602 960 64 759.398 64 512S264.602 64 512 64s448 200.602 448 448-200.602 448-448 448z m0-768c-176.448 0-320 143.552-320 320s143.552 320 320 320 320-143.552 320-320-143.552-320-320-320z', // 鍦嗗舰鎸夐挳鍥炬爣锛堝彲鎹級
+          onclick: function () {
+            switchNoorAreaRight.value = !switchNoorAreaRight.value;
+            createchart(productionVO);
+            // customButtonClick(); // 璋冪敤浣犺嚜瀹氫箟鐨勬柟娉�
+          }
+        }
+      }
+    },
+    xAxis: {
+      type: 'category',
+      boundaryGap: true,
+      data: categories // 杩欐槸鏃ユ湡鏁版嵁
+    },
+    yAxis: {
+      type: 'value',
+      name: switchNoorAreaRight.value==true?t('large.quantity'):t('large.are'), // 鍧愭爣杞村悕绉�
+      axisLabel: {
+        formatter: '{value}'
+      }
+    },
+    series: [
+      // { name: t('large.totalAreaOut'), type: 'bar', data: tempData },
+      { name: t('large.countOut'), type: 'bar', data: tempData },
+      // { name: t('large.hollowTotalAreaOutOne'), type: 'bar', data: hollowOneData },
+      { name: t('large.hollowCountOutOne'), type: 'bar', data: hollowOneData },
+      // { name: t('large.hollowTotalAreaOutTwo'), type: 'bar', data: hollowTwoData },
+      { name: t('large.hollowCountOutTwo'), type: 'bar', data: hollowTwoData }
+    ]
+  };
+  myChart2.setOption(option2, true);
+}
+let handleMessage5 = (data) => {
+  productionVO.value = data.productionVO[0];
+  createchart(productionVO);
+};
+// 灏嗗師濮嬫暟鎹浆鎹负 ECharts 鍥捐〃鎵�闇�鏍煎紡
+let categories = ref([]); // 鑾峰彇鏃ユ湡浣滀负 x 杞�
+let totalAreaOutOne = ref([]);
+let countIn = ref([]);
+let totalAreaOutTwo = ref([]);
+let totalAreaOut = ref([]);
+let countOut = ref([]);
+let hollowTotalAreaOutTwo = ref([]);
+let hollowCountOutOne = ref([]);
+let countOutTwo = ref([]);
+let hollowCountOutTwo = ref([]);
+let hollowTotalAreaOutOne = ref([]);
+let totalAreaIn = ref([]);
+let countOutOne = ref([]);
+const tableDatad = ref([]);
+const patternUsage = async () => {
+  try {
+    const response = await request.post('/glassStorage/rawGlassStorageDetails/patternUsage?width=' + ptnusage.value.width + '&height=' + ptnusage.value.height + '&thickness=' + ptnusage.value.thickness + '&films=' + ptnusage.value.films);
     if (response.code == 200) {
       ElMessage.success(response.message);
-      tableData.value = response.data;
-      console.log(tableData.value);
+      tableDatad.value = response.data;
     } else {
       ElMessage.error(response.message);
     }
-}
-catch (error) {
+  }
+  catch (error) {
     console.error(error);
   }
 }
+const exportToExcel = async () => {
+  try {
+    window.open(`http://${WebSocketHost}:10011/largenScreen/exportDailyProduction`, '_blank');
+  }
+  catch (error) {
+    console.error(error);
+  }
+}
+const tableData = ref([]);
+const dynamicColumns = ref([]);
+const flowCardDetail = async (orderId) => {
+  blinda.value = true;
+  try {
+    const response = await request.post('/glassStorage/flow_card/flowCardReportForms?orderId=' + orderId);
+    if (response.code == 200) {
+      ElMessage.success(response.message);
+      tableData.value = response.data;
+      // 瑙f瀽鏁版嵁骞剁敓鎴愬姩鎬佸垪
+      if (response.data.length > 0) {
+        // 瑙f瀽绗竴涓璞$殑 reportWorkQuantity锛岀‘瀹氬姩鎬佸垪
+        const firstItem = response.data[0];
+        const reportData = JSON.parse(firstItem.reportWorkQuantity || "{}");
+        dynamicColumns.value = Object.keys(reportData).map((key) => ({
+          prop: key,
+          label: key,
+        }));
+        // 瑙f瀽鏁版嵁骞跺皢 JSON 瀛楃涓茶浆鎹负瀵硅薄
+        tableData.value = response.data.map((item) => {
+          const reportData = JSON.parse(item.reportWorkQuantity || "{}");
+          return {
+            ...item,
+            ...reportData, // 鎶� JSON 瀛楁鍚堝苟鍒板钩閾哄璞�
+          };
+        });
+      }
+    } else {
+      ElMessage.error(response.message);
+    }
+  }
+  catch (error) {
+    console.error(error);
+  }
+}
+const ptnusage = ref({
+  width: '',
+  height: '',
+  thickness: '',
+  films: ''
+})
 // 鐐瑰嚮涓嬫柟寮圭獥
-  const handlehistorical = (row) => {
+const handlehistorical = (row) => {
   blindb.value = true;
-  historical()
+  patternUsage()
+};
+const chartRef = ref(null)
+const chartRef2 = ref(null)
+const chartLoad = ref(null)
+const chartEdg = ref(null)
+const chartTemp = ref(null)
+const chartHollow = ref(null)
+const cleanupWebSocketData = (completeCleanup) => {
+  if (completeCleanup) {
+    // 瀹屽叏娓呯悊
+    rawGlassStorageDetailList.value = [];
+    orderDTOS.value = [];
+  } else {
+    // 閮ㄥ垎娓呯悊 - 淇濈暀鏈�杩戞暟鎹�
+    const MAX_ITEMS = 50;
+    rawGlassStorageDetailList.value = rawGlassStorageDetailList.value.slice(-MAX_ITEMS);
+    orderDTOS.value = orderDTOS.value.slice(-MAX_ITEMS);
+  }
+  // 娓呯悊鍥捐〃
+  [myChart, myChart2, myChartLoad, myChartEdg, myChartTemp, myChartHollow].forEach(chart => {
+    if (chart) {
+      chart.clear();
+      // 濡傛灉闇�瑕侊紝鍙互閲嶆柊鍒濆鍖栧浘琛�
+    }
+  });
 };
 // 鍦ㄧ粍浠舵寕杞芥椂璁剧疆榛樿鏃堕棿鑼冨洿
-onMounted(() => {
-  socket = initializeWebSocket(socketUrl, handleMessage);
+onMounted(async () => {
+  socketManager.init(socketUrl, handleMessage);
+  socketManager.init(socketUrl1, handleMessage1);
+  socketManager.init(socketUrl2, handleMessage2);
+  socketManager.init(socketUrl3, handleMessage3);
+  socketManager.init(socketUrl4, handleMessage4);
+  socketManager.init(socketUrl5, handleMessage5);
+  // socket = initializeWebSocket(socketUrl, handleMessage);
+  // socket1 = initializeWebSocket(socketUrl1, handleMessage1);
+  // socket2 = initializeWebSocket(socketUrl2, handleMessage2);
+  // socket3 = initializeWebSocket(socketUrl3, handleMessage3);
+  // socket4 = initializeWebSocket(socketUrl4, handleMessage4);
+  // socket5 = initializeWebSocket(socketUrl5, handleMessage5);
   const endTime = dayjs().startOf('minute'); // 褰撳墠鏃堕棿锛岀簿纭埌鍒嗛挓
   const startTime = endTime.subtract(1, 'day').startOf('minute'); // 褰撳墠鏃堕棿鐨勫墠涓�澶╋紝绮剧‘鍒板垎閽�
   // 璁剧疆鏃堕棿鑼冨洿涓� [寮�濮嬫椂闂�, 缁撴潫鏃堕棿]
   // timeRange.value = [startTime.format('YYYY-MM-DD HH:mm:ss'), endTime.format('YYYY-MM-DD HH:mm:ss')];
+  const cleanupInterval = setInterval(() => {
+    cleanupWebSocketData(true); // 瀹屽叏娓呯悊
+  }, 300000);
+  // 姣忔鏀跺埌娑堟伅鏃舵鏌ユ暟鎹噺
+  const originalHandleMessage = handleMessage;
+  handleMessage = (data) => {
+    originalHandleMessage(data);
+    cleanupWebSocketData(false); // 閮ㄥ垎娓呯悊
+  };
+  onUnmounted(() => {
+  socketManager.closeAll();
+    clearInterval(cleanupInterval);
+    cleanupWebSocketData(true); // 缁勪欢鍗歌浇鏃跺畬鍏ㄦ竻鐞�
+  });
 });
 // onMounted(() => {
 //   socket = initializeWebSocket(socketUrl, handleMessage);
 // });
-  onUnmounted(() => {
-    if (socket) {
-      closeWebSocket(socket);
+onUnmounted(() => {
+  if (socket) {
+    closeWebSocket(socket);
+    closeWebSocket(socket1);
+    closeWebSocket(socket2);
+    closeWebSocket(socket3);
+    closeWebSocket(socket4);
+    closeWebSocket(socket5);
+  }
+});
+const numBoxes = ref(0);
+const numBoxes2 = ref(0);
+const numBoxes3 = ref(0);
+const numBoxes4 = ref(0);
+const speed = 0.1;
+const delayFrames = 600;
+const maxCoords = {
+  box1: { x: 250, y: -165 },
+  box2: { x: 190, y: -75 },
+  box3: { x: 95, y: -85 },
+  box4: { x: 60, y: 0 },
+};
+let boxes = ref([]);
+let boxes2 = ref([]);
+let boxes3 = ref([]);
+let boxes4 = ref([]);
+const boxRefs = [];
+const boxRefs2 = [];
+const boxRefs3 = [];
+const boxRefs4 = [];
+let rafId = null;
+// 鉁� 鍒濆鍖� boxes锛屽幓闄� style锛屼繚鐣� el
+const initBoxes = (arr, countRef, direction) => {
+  const count = countRef.value;
+  const existing = arr.value;
+  for (let i = 0; i < count; i++) {
+    if (!existing[i]) {
+      existing.push({
+        x: 0,
+        y: 0,
+        direction,
+        delay: i * delayFrames,
+        frameCount: 0,
+        el: null
+      });
+    } else {
+      // 閲嶇疆宸叉湁鐨� box 鏁版嵁
+      // existing[i].x = 0;
+      // existing[i].y = 0;
+      // existing[i].direction = direction;
+      // existing[i].delay = i * delayFrames;
+      // existing[i].frameCount = 0;
+    }
+  }
+  if (existing.length > count) {
+    existing.length = count;
+  }
+};
+// 鉁� 鍔ㄧ敾鍑芥暟
+const animateBox = (box, maxX, maxY) => {
+  if (box.delay > 0) {
+    box.delay--;
+    return;
+  }
+  switch (box.direction) {
+    case 'firstup':
+      box.y -= speed;
+      if (box.y <= maxY) box.direction = 'firstleft';
+      break;
+    case 'firstleft':
+      box.x -= speed;
+      if (box.x <= -maxX) {
+        box.x = 0;
+        box.y = 0;
+        box.direction = 'firstup';
+      }
+      break;
+    case 'secondup':
+      box.y -= speed;
+      if (box.y <= maxY) {
+        box.x = 0;
+        box.y = 0;
+        box.direction = 'secondleft';
+      }
+      break;
+    case 'secondleft':
+      box.x -= speed;
+      if (box.x <= -maxX) {
+        box.direction = 'secondup';
+      }
+      break;
+    case 'right':
+      box.x += speed;
+      if (box.x >= maxX) {
+        box.x = 0;
+        box.y = 0;
+      }
+      break;
+  }
+  box.frameCount++;
+  if (box.frameCount % 2 === 0 && box.el) {
+    box.el.style.top = `${box.y}px`;
+    if (box.x > 0) {
+      if (box.direction == "right") {
+        box.el.style.right = `-${box.x}px`;
+      } else {
+        box.el.style.right = `${box.x}px`;
+      }
+      box.el.style.left = '';
+    } else {
+      box.el.style.left = `${box.x}px`;
+      box.el.style.right = '';
+    }
+  }
+};
+// 浼樺寲鍔ㄧ敾鎬ц兘
+const animate = () => {
+  if (!rafId) {
+    const start = performance.now();
+    const updateBoxes = (boxes, maxX, maxY) => {
+      boxes.value.forEach(box => {
+        if (box.delay > 0) {
+          box.delay--;
+          return;
+        }
+        // 绠�鍖栧姩鐢婚�昏緫
+        switch (box.direction) {
+          case 'firstup':
+            box.y = Math.max(box.y - speed, maxY);
+            if (box.y <= maxY) box.direction = 'firstleft';
+            break;
+          case 'firstleft':
+            box.x = Math.max(box.x - speed, -maxX);
+            if (box.x <= -maxX) {
+              box.x = 0;
+              box.y = 0;
+              box.direction = 'firstup';
+            }
+            break;
+          // 鍏朵粬case绠�鍖�...
+        }
+        // 鎵归噺鏇存柊DOM
+        requestAnimationFrame(() => {
+          if (box.el) {
+            box.el.style.transform = `translate(${box.x}px, ${box.y}px)`;
+          }
+        });
+      });
+    };
+    updateBoxes(boxes, maxCoords.box1.x, maxCoords.box1.y);
+    updateBoxes(boxes2, maxCoords.box2.x, maxCoords.box2.y);
+    updateBoxes(boxes3, maxCoords.box3.x, maxCoords.box3.y);
+    updateBoxes(boxes4, maxCoords.box4.x, maxCoords.box4.y);
+    rafId = requestAnimationFrame(animate);
+  }
+};
+// const animate = () => {
+//   boxes.value.forEach(box => animateBox(box, maxCoords.box1.x, maxCoords.box1.y));
+//   boxes2.value.forEach(box => animateBox(box, maxCoords.box2.x, maxCoords.box2.y));
+//   boxes3.value.forEach(box => animateBox(box, maxCoords.box3.x, maxCoords.box3.y));
+//   boxes4.value.forEach(box => animateBox(box, maxCoords.box4.x, maxCoords.box4.y));
+//   rafId = requestAnimationFrame(animate);
+// };
+const boxStart = () => {
+  initBoxes(boxes, numBoxes, 'firstup');
+  initBoxes(boxes2, numBoxes2, 'firstup');
+  initBoxes(boxes3, numBoxes3, 'secondleft');
+  initBoxes(boxes4, numBoxes4, 'right');
+};
+watch(
+  () => boxes.value,
+  async (newVal) => {
+    await nextTick();
+    newVal.forEach((box, i) => {
+      box.el = boxRefs[i];
+    });
+  },
+  { deep: true, immediate: true }
+);
+watch(
+  () => boxes2.value,
+  async (newVal) => {
+    await nextTick();
+    newVal.forEach((box, i) => {
+      box.el = boxRefs2[i];
+    });
+  },
+  { deep: true, immediate: true }
+);
+watch(
+  () => boxes3.value,
+  async (newVal) => {
+    await nextTick();
+    newVal.forEach((box, i) => {
+      box.el = boxRefs3[i];
+    });
+  },
+  { deep: true, immediate: true }
+);
+watch(
+  () => boxes4.value,
+  async (newVal) => {
+    await nextTick();
+    newVal.forEach((box, i) => {
+      box.el = boxRefs4[i];
+    });
+  },
+  { deep: true, immediate: true }
+);
+onMounted(() => {
+  boxStart();
+  animate();
+});
+onBeforeUnmount(() => {
+  cancelAnimationFrame(rafId);
+  rafId = null;
+  boxes.value.length = 0;
+  boxes2.value.length = 0;
+  boxes3.value.length = 0;
+  boxes4.value.length = 0;
+});
+onUnmounted(() => {
+  if (rafId) {
+    cancelAnimationFrame(rafId); // 鍋滄鍔ㄧ敾锛岄槻姝㈠唴瀛樻硠婕�
+  }
+});
+// onBeforeUnmount(() => {
+//   cancelAnimationFrame(rafId);
+// });
+//宓屽叆鍘嗗彶浠诲姟
+const iframeUrl1 = ref('');
+const iframe1 = ref(false);
+const handlehistorical1 = () => {
+  iframe1.value = true;
+  iframeUrl1.value = `${window.location.origin}/#/GlassStorage/rawhistory`;
+};
+const iframeUrl2 = ref('');
+const iframe2 = ref(false);
+const handlehistorical2 = () => {
+  iframe2.value = true;
+  iframeUrl2.value = `${window.location.origin}/#/Returns/upreturnhistory`;;
+};
+const iframeUrl3 = ref('');
+const iframe3 = ref(false);
+const handlehistorical3 = () => {
+  iframe3.value = true;
+  iframeUrl3.value = `${window.location.origin}/#/Returns/upreturnhistory2`;
+};
+const iframeUrl4 = ref('');
+const iframe4 = ref(false);
+const handlehistorical4 = () => {
+  iframe4.value = true;
+  iframeUrl4.value = `${window.location.origin}/#/Caching/cachingbeforehistory`;
+};
+const iframeUrl5 = ref('');
+const iframe5 = ref(false);
+const handlehistorical5 = () => {
+  iframe5.value = true;
+  iframeUrl5.value = `${window.location.origin}/#/Caching/cachingunhistory`;
+};
+const iframeUrl6 = ref('');
+const iframe6 = ref(false);
+const handlehistorical6 = () => {
+  iframe6.value = true;
+  iframeUrl6.value = `${window.location.origin}/#/Slicecage/slicecagehistory`;
+};
+const iframeUrl7 = ref('');
+const iframe7 = ref(false);
+const handlehistorical7 = () => {
+  iframe7.value = true;
+  iframeUrl7.value = `${window.location.origin}/#/hollow/hellowquiphistory`;
+};
+const iframeUrl8 = ref('');
+const iframe8 = ref(false);
+const handlehistorical8 = () => {
+  iframe8.value = true;
+  iframeUrl8.value = `${window.location.origin}/#/hollow/hellowquiptwohistory`;
+};
+const iframeUrl9 = ref('');
+const iframe9 = ref(false);
+const handlehistorical9 = () => {
+  iframe9.value = true;
+  iframeUrl9.value = `${window.location.origin}/#/hollow/hellowslicecagehistory`;
+};
+const iframeUrl10 = ref('');
+const iframe10 = ref(false);
+const handlehistorical10 = () => {
+  iframe10.value = true;
+  iframeUrl10.value = `${window.location.origin}/#/largescreendisplay/statistics`;
+};
+const iframeUrl11 = ref('');
+const iframe11 = ref(false);
+const handlehistorical11 = () => {
+  iframe11.value = true;
+  iframeUrl11.value = `${window.location.origin}/#/largescreendisplay/productionstatistics`;
+};
+const iframeUrl12 = ref('');
+const iframe12 = ref(false);
+const handlehistorical12 = (key) => {
+  iframe12.value = true;
+  const params = new URLSearchParams({
+    key: key,
+  });
+  iframeUrl12.value = `${window.location.origin}/#/largescreendisplay/timeaxis?${params.toString()}`;
+};
+const transposedData = computed(() => {
+  const keys = Object.keys(fieldNames); // 鎸� fieldNames 鐨勯『搴�
+  return keys.map(key => {
+    const row = { name: fieldNames[key] || key };
+    productionVO.value.forEach((item, index) => {
+      row[`value${index}`] = item[key] ?? ''; // 澶勭悊鍙兘涓嶅瓨鍦ㄧ殑閿�
+    });
+    return row;
+  });
+});
+const fieldNames = {
+  date: t('large.date'),
+  countOutOne: t('large.countOutOne'),
+  totalAreaOutOne: t('large.totalAreaOutOne'),
+  countOutTwo: t('large.countOutTwo'),
+  totalAreaOutTwo: t('large.totalAreaOutTwo'),
+  countIn: t('large.countIn'),
+  totalAreaIn: t('large.totalAreaIn'),
+  countOut: t('large.countOut'),
+  totalAreaOut: t('large.totalAreaOut'),
+  hollowCountOutOne: t('large.hollowCountOutOne'),
+  hollowTotalAreaOutOne: t('large.hollowTotalAreaOutOne'),
+  hollowCountOutTwo: t('large.hollowCountOutTwo'),
+  hollowTotalAreaOutTwo: t('large.hollowTotalAreaOutTwo'),
+};
+// 淇敼鍥捐〃鍒濆鍖栭�昏緫锛屾坊鍔犳噿鍔犺浇鍜岄攢姣佹満鍒�
+const chartInstances = {
+  chartLoad: null,
+  chartEdg: null,
+  chartTemp: null,
+  chartHollow: null,
+  chartRef: null,
+  chartRef2: null
+};
+const initChart = (refName, option) => {
+  if (!chartInstances[refName] && templateRefs[refName]) {
+    chartInstances[refName] = echarts.init(templateRefs[refName]);
+    chartInstances[refName].setOption(option);
+  }
+};
+const disposeChart = (refName) => {
+  if (chartInstances[refName]) {
+    chartInstances[refName].dispose();
+    chartInstances[refName] = null;
+  }
+};
+// 浣跨敤Intersection Observer瀹炵幇鍥捐〃鎳掑姞杞�
+const observer = new IntersectionObserver((entries) => {
+  entries.forEach(entry => {
+    if (entry.isIntersecting) {
+      const refName = entry.target.getAttribute('data-chart-name');
+      if (refName && !chartInstances[refName]) {
+        // 鍒濆鍖栧浘琛ㄩ�昏緫
+      }
     }
   });
-onBeforeUnmount(() => {
-  console.log("鍏抽棴浜�")
-  closeWebSocket();
+}, { threshold: 0.1 });
+onMounted(() => {
+  document.querySelectorAll('[data-chart-name]').forEach(el => {
+    observer.observe(el);
+  });
 });
 </script>
 <template>
   <div style="height: 500px;">
-<div class="awatch">
-    <img src="../../assets/screen.png" alt="Screen" style="max-width: 48%; max-height: 100%; margin-top: 50px; float: left; position: relative;" />
-    <div 
-      class="clickable-area" 
-      @click="handlehistorical"
-      style="position: relative; width: 175px; height: 240px; top: 570px; left: 310px;"
-    ></div>
+    <el-dialog v-model="iframe1" top="5vh" width="95%" @close="iframeUrl1 = ''">
+      <iframe :src="iframeUrl1" marginwidth="2000px" marginheight="2000px" width="100%" height="700px"
+        frameborder="0"></iframe>
+    </el-dialog>
+    <el-dialog v-model="iframe2" top="5vh" width="95%" @close="iframeUrl2 = ''">
+      <iframe :src="iframeUrl2" marginwidth="2000px" marginheight="2000px" width="100%" height="700px"
+        frameborder="0"></iframe>
+    </el-dialog>
+    <el-dialog v-model="iframe3" top="5vh" width="95%" @close="iframeUrl3 = ''">
+      <iframe :src="iframeUrl3" marginwidth="2000px" marginheight="2000px" width="100%" height="700"
+        frameborder="0"></iframe>
+    </el-dialog>
+    <el-dialog v-model="iframe4" top="5vh" width="95%" @close="iframeUrl4 = ''">
+      <iframe :src="iframeUrl4" marginwidth="2000px" marginheight="2000px" width="100%" height="750px"
+        frameborder="0"></iframe>
+    </el-dialog>
+    <el-dialog v-model="iframe5" top="5vh" width="95%" @close="iframeUrl5 = ''">
+      <iframe :src="iframeUrl5" marginwidth="2000px" marginheight="2000px" width="100%" height="750px"
+        frameborder="0"></iframe>
+    </el-dialog>
+    <el-dialog v-model="iframe6" top="5vh" width="95%" @close="iframeUrl6 = ''">
+      <iframe :src="iframeUrl6" marginwidth="2000px" marginheight="2000px" width="100%" height="750px"
+        frameborder="0"></iframe>
+    </el-dialog>
+    <el-dialog v-model="iframe7" top="5vh" width="95%" @close="iframeUrl7 = ''">
+      <iframe :src="iframeUrl7" marginwidth="2000px" marginheight="2000px" width="100%" height="750px"
+        frameborder="0"></iframe>
+    </el-dialog>
+    <el-dialog v-model="iframe8" top="5vh" width="95%" @close="iframeUrl8 = ''">
+      <iframe :src="iframeUrl8" marginwidth="2000px" marginheight="2000px" width="100%" height="750px"
+        frameborder="0"></iframe>
+    </el-dialog>
+    <el-dialog v-model="iframe9" top="5vh" width="95%" @close="iframeUrl9 = ''">
+      <iframe :src="iframeUrl9" marginwidth="2000px" marginheight="2000px" width="100%" height="750px"
+        frameborder="0"></iframe>
+    </el-dialog>
+    <el-dialog v-model="iframe10" top="5vh" width="95%" @close="iframeUrl10 = ''">
+      <iframe :src="iframeUrl10" marginwidth="2000px" marginheight="2000px" width="100%" height="700px"
+        frameborder="0"></iframe>
+    </el-dialog>
+    <el-dialog v-model="iframe11" top="5vh" width="95%" @close="iframeUrl11 = ''">
+      <iframe :src="iframeUrl11" marginwidth="2000px" marginheight="2000px" width="100%" height="750px"
+        frameborder="0"></iframe>
+    </el-dialog>
+    <el-dialog v-model="iframe12" top="5vh" width="95%" @close="iframeUrl12 = ''">
+      <iframe :src="iframeUrl12" marginwidth="2000px" marginheight="2000px" width="100%" height="750px"
+        frameborder="0"></iframe>
+    </el-dialog>
+    <div class="awatch" style="display: flex;">
+      <!-- 鐢熶骇缁熻 -->
+      <div style="height: 100px;width: 25%;float: right;">
+        <div id="ss" style="width: 100%; display: flex; justify-content: center;">
+          <div ref="chartRef" style="width: 600px; height: 400px;" @dblclick="handlehistorical10()">
+          </div>
+        </div>
+        <div style="width: 100%;height: 245px;display: flex;">
+          <div ref="chartLoad" style="width: 100%;" @dblclick="handlehistorical12(1)"></div>
+        </div>
+        <div style="width: 100%;height: 245px;display: flex;">
+          <div ref="chartEdg" style="width: 100%;" @dblclick="handlehistorical12(2)"></div>
+        </div>
+      </div>
+      <div style="width: 50%;">
+        <div class="img-screen" alt="Screen">
+          <div>
+            <el-button type="primary" style="top:40px;left:670px;position: absolute;" @click="exportToExcel()">{{
+              $t('large.statistics') }}</el-button>
+          </div>
+          <!-- 閽㈠寲鍗婇�忔槑鑹插潡 -->
+          <div
+            style="width: 80px;height: 40px;top: 315px;left: 130px;position: absolute;background-color: rgba(0, 0, 0, 0.5);color: white;font-size: 12px;z-index: 999;">
+            <div>{{ $t('large.quantity') }}:{{ productionVO.length > 0 ? productionVO[6].countOut : 0 }}{{
+              $t('large.slice') }}</div>
+            <div>{{ $t('large.are') }}:{{ productionVO.length > 0 ? productionVO[6].totalAreaOut : 0 }}m虏</div>
+          </div>
+          <!-- 涓┖涓�绾垮崐閫忔槑鑹插潡 -->
+          <div
+            style="width: 80px;height: 40px;top: 235px;left: 450px;position: absolute;background-color: rgba(0, 0, 0, 0.5);color: white;font-size: 12px;z-index: 999;">
+            <div>{{ $t('large.quantity') }}:{{ productionVO.length > 0 ? productionVO[6].hollowCountOutOne : 0 }}{{
+              $t('large.slice') }}</div>
+            <div>{{ $t('large.are') }}:{{ productionVO.length > 0 ? productionVO[6].hollowTotalAreaOutOne : 0 }}m虏</div>
+          </div>
+          <!-- 涓┖浜岀嚎鍗婇�忔槑鑹插潡 -->
+          <div
+            style="width: 80px;height: 40px;top: 130px;left: 450px;position: absolute;background-color: rgba(0, 0, 0, 0.5);color: white;font-size: 12px;z-index: 999;">
+            <div>{{ $t('large.quantity') }}:{{ productionVO.length > 0 ? productionVO[6].hollowCountOutTwo : 0 }}{{
+              $t('large.slice') }}</div>
+            <div>{{ $t('large.are') }}:{{ productionVO.length > 0 ? productionVO[6].hollowTotalAreaOutTwo : 0 }}m虏</div>
+          </div>
+          <!-- 鍒囧壊浜岀嚎鍗婇�忔槑鑹插潡 -->
+          <div
+            style="width: 80px;height: 40px;top: 542px;left: 410px;position: absolute;background-color: rgba(0, 0, 0, 0.5);color: white;font-size: 12px;z-index: 999;">
+            <div>{{ $t('large.quantity') }}:{{ productionVO.length > 0 ? productionVO[6].countOutOne : 0 }}{{
+              $t('large.slice') }}</div>
+            <div>{{ $t('large.are') }}:{{ productionVO.length > 0 ? productionVO[6].totalAreaOutOne : 0 }}m虏</div>
+          </div>
+          <!-- 鍒囧壊涓�绾垮崐閫忔槑鑹插潡 -->
+          <div
+            style="width: 80px;height: 40px;top: 490px;left: 410px;position: absolute;background-color: rgba(0, 0, 0, 0.5);color: white;font-size: 12px;z-index: 999;">
+            <div>{{ $t('large.quantity') }}:{{ productionVO.length > 0 ? productionVO[6].countOutTwo : 0 }}{{
+              $t('large.slice') }}</div>
+            <div>{{ $t('large.are') }}:{{ productionVO.length > 0 ? productionVO[6].totalAreaOutTwo : 0 }}m虏</div>
+          </div>
+          <!-- 纾ㄨ竟涓�绾垮崐閫忔槑鑹插潡 -->
+          <div
+            style="width: 80px;height: 40px;top: 369px;left: 450px;position: absolute;background-color: rgba(0, 0, 0, 0.5);color: white;font-size: 12px;z-index: 999;">
+            <div>{{ $t('large.quantity') }}:{{ productionVO.length > 0 ? productionVO[6].countOutOne : 0 }}{{
+              $t('large.slice') }}</div>
+            <div>{{ $t('large.are') }}:{{ productionVO.length > 0 ? productionVO[6].totalAreaOutOne : 0 }}m虏</div>
+          </div>
+          <!-- 纾ㄨ竟浜岀嚎鍗婇�忔槑鑹插潡 -->
+          <div
+            style="width: 80px;height: 40px;top: 410px;left: 450px;position: absolute;background-color: rgba(0, 0, 0, 0.5);color: white;font-size: 12px;z-index: 999;">
+            <div>{{ $t('large.quantity') }}:{{ productionVO.length > 0 ? productionVO[6].countOutTwo : 0 }}{{
+              $t('large.slice') }}</div>
+            <div>{{ $t('large.are') }}:{{ productionVO.length > 0 ? productionVO[6].totalAreaOutTwo : 0 }}m虏</div>
+          </div>
+          <!-- 閽㈠寲鍓嶅ぇ鐞唟{ $t('large.slice') }}鍗婇�忔槑鑹插潡 -->
+          <div
+            style="width: 80px;height: 40px;top: 380px;left: 290px;position: absolute;background-color: rgba(0, 0, 0, 0.5);color: white;font-size: 12px;z-index: 999;">
+            <div>{{ $t('large.quantity') }}:{{ productionVO.length > 0 ? productionVO[6].countIn : 0 }}{{
+              $t('large.slice') }}</div>
+            <div>{{ $t('large.are') }}:{{ productionVO.length > 0 ? productionVO[6].totalAreaIn : 0 }}m虏</div>
+          </div>
+          <!-- 閽㈠寲鑹插潡 -->
+          <div v-if="temperingGlassInfoInList > 0" class="tempering"
+            style="width: 44px;height: 19px;top: 284px;left: 178px;position: absolute;background-color: #911005;"></div>
+          <div v-if="temperingGlassInfoList > 0" class="tempering"
+            style="width: 53px;height: 22px;top: 282px;left: 226px;position: absolute;background-color: #911005;"></div>
+          <div v-if="temperingGlassInfoList > 1" class="tempering"
+            style="width: 53px;height: 22px;top: 282px;left: 282px;position: absolute;background-color: #911005;"></div>
+          <!-- 鍒囧壊鍙拌壊鍧� -->
+          <div v-if="engineeringOne.length > 1" class="slicing"
+            style="width: 45px;height: 20px;top: 550px;left: 496px;position: absolute;background-color: #911005;"></div>
+          <div v-if="engineeringTwo.length > 1" class="slicing"
+            style="width: 45px;height: 20px;top: 500px;left: 496px;position: absolute;background-color: #911005;"></div>
+          <!-- 鍘熺墖浠撳偍鑹插潡 -->
+          <div class="raw" style="width: 27px;height: 30px;top: 497px;left: 296px;position: absolute;">
+            <div v-for="(item, index) in rawGlassStorageDetailList.slice(0, 7)" :key="index"
+              :style='"width: " + (item.remainQuantity / 1.8) + "px;height: 5.6px;background-color: #911005;"'></div>
+          </div>
+          <div class="raw" style="width: 27px;height: 45px;top: 535px;left: 296px;position: absolute;">
+            <div v-for="(item, index) in rawGlassStorageDetailList.slice(8, 17)" :key="index"
+              :style='"width: " + (item.remainQuantity / 1.8) + "px;height: 5.6px;background-color: #911005;"'></div>
+          </div>
+          <div class="raw" style="width: 27px;height: 13px;top: 598px;left: 296px;position: absolute;">
+            <div v-for="(item, index) in rawGlassStorageDetailList.slice(18, 20)" :key="index"
+              :style='"width: " + (item.remainQuantity / 1.8) + "px;height: 5.6px;background-color: #911005;"'></div>
+          </div>
+          <div class="raw" style="width: 27px;height: 23px;top: 580px;left: 365px;position: absolute;">
+            <div v-for="(item, index) in rawGlassStorageDetailList.slice(21, 25)" :key="index"
+              :style='"width: " + (item.remainQuantity / 1.8) + "px;height: 5.6px;background-color: #911005;"'></div>
+          </div>
+          <!-- <div class="raw" style="width: 27px;height: 12px;top: 611px;left: 459px;position: absolute;">
+            <div v-for="(item, index) in rawGlassStorageDetailList.slice(26, 27)" :key="index"
+              :style='"width: " + (item.remainQuantity / 1.8) + "px;height: 5.6px;background-color: #911005;"'></div>
+          </div>
+          <div class="raw" style="width: 27px;height: 12px;top: 6676px;left: 459px;position: absolute;">
+            <div v-for="(item, index) in rawGlassStorageDetailList.slice(28, 29)" :key="index"
+              :style='"width: " + (item.remainQuantity / 1.8) + "px;height: 5.6px;background-color: #911005;"'></div>
+          </div> -->
+          <!-- 纾ㄨ竟鑹插潡 -->
+          <div class="container"
+            style="position: relative;width: 15px;height: 15px;top: 500px;left: 638px;position: absolute;">
+            <div v-for="(box, i) in boxes2" :key="`b1-${i}`" class="moving-rect" :ref="el => boxRefs2[i] = el" />
+          </div>
+          <div class="container"
+            style="position: relative;width: 15px;height: 15px;top: 548px;left: 690px;position: absolute;">
+            <div v-for="(box, i) in boxes" :key="`b1-${i}`" class="moving-rect" :ref="el => boxRefs[i] = el" />
+          </div>
+          <!-- 閽㈠寲杩愬姩鑹插潡 -->
+          <div class="container"
+            style="position: relative;width: 15px;height: 15px;top: 370px;left: 195px;position: absolute;">
+            <div v-for="(box, i) in boxes3" :key="`b1-${i}`" class="moving-rect" :ref="el => boxRefs3[i] = el" />
+          </div>
+          <div class="container"
+            style="position: relative;width: 15px;height: 15px;top: 284px;left: 489px;position: absolute;">
+            <div v-for="(box, i) in boxes4" :key="`b1-${i}`" class="moving-rect" :ref="el => boxRefs4[i] = el" />
+          </div>
+          <!-- <div  class="moving-rect lipiana" v-show="true">1111111111</div> -->
+          <!-- 閽㈠寲鍓嶅ぇ鐞嗙墖鑹插潡 -->
+          <div class="container" v-for="(item, index) in bigStorageCageUsage.slice(0, 1)" :key="index"
+            :style='"position: relative;width: " + (37 * item.percentage / 100) + "px;height: 13px;top: 374px;left: 309px;position: absolute;background-color: #911005;"'>
+          </div>
+          <div class="container" v-for="(item, index) in bigStorageCageUsage.slice(1, 2)" :key="index"
+            :style='"position: relative;width: " + (37 * item.percentage / 100) + "px;height: 13px;top: 390px;left: 309px;position: absolute;background-color: #911005;"'>
+          </div>
+          <div class="container" v-for="(item, index) in bigStorageCageUsage.slice(2, 3)" :key="index"
+            :style='"position: relative;width: " + (37 * item.percentage / 100) + "px;height: 13px;top: 406px;left: 309px;position: absolute;background-color: #911005;"'>
+          </div>
+          <div class="container" v-for="(item, index) in bigStorageCageUsage.slice(3, 4)" :key="index"
+            :style='"position: relative;width: " + (37 * item.percentage / 100) + "px;height: 13px;top: 422px;left: 309px;position: absolute;background-color: #911005;"'>
+          </div>
+          <!-- 涓┖鍓嶅ぇ鐞嗙墖鑹插潡 -->
+          <div class="container" v-for="(item, index) in hollowBigStorageCageUsage.slice(0, 1)" :key="index"
+            :style='"position: relative;width: " + (37 * item.percentage / 100) + "px;height: 13px;top: 265px;left: 662px;position: absolute;background-color: #911005;"'>
+          </div>
+          <div class="container" v-for="(item, index) in hollowBigStorageCageUsage.slice(1, 2)" :key="index"
+            :style='"position: relative;width: " + (37 * item.percentage / 100) + "px;height: 13px;top: 281px;left: 662px;position: absolute;background-color: #911005;"'>
+          </div>
+          <div class="container" v-for="(item, index) in hollowBigStorageCageUsage.slice(2, 3)" :key="index"
+            :style='"position: relative;width: " + (37 * item.percentage / 100) + "px;height: 13px;top: 297px;left: 662px;position: absolute;background-color: #911005;"'>
+          </div>
+          <div class="container" v-for="(item, index) in hollowBigStorageCageUsage.slice(3, 4)" :key="index"
+            :style='"position: relative;width: " + (37 * item.percentage / 100) + "px;height: 13px;top: 313px;left: 662px;position: absolute;background-color: #911005;"'>
+          </div>
+          <div class="container" v-for="(item, index) in hollowBigStorageCageUsage.slice(4, 5)" :key="index"
+            :style='"position: relative;width: " + (37 * item.percentage / 100) + "px;height: 13px;top: 329px;left: 662px;position: absolute;background-color: #911005;"'>
+          </div>
+          <div class="clickable-area" @click="handlehistorical"
+            style="position: relative;width: 108px;height: 134px;top: 478px;left: 290px;"></div>
+        </div>
+        <div style="height: 175px;width: 100%;float: right;">
+          <el-table height="175" ref="table" :data="orderDTOS"
+            :header-cell-style="{ background: '#F2F3F5 ', color: '#1D2129' }">
+            <el-table-column prop="orderId" align="center" :label="$t('large.orderId')" min-width="50" />
+            <el-table-column prop="customerName" align="center" :show-overflow-tooltip="true"
+              :label="$t('large.customerName')" min-width="90" />
+            <el-table-column prop="project" align="center" :label="$t('large.project')" min-width="50" />
+            <el-table-column prop="area" align="center" :label="$t('large.are')" min-width="50" />
+            <el-table-column prop="quantity" align="center" :label="$t('large.quantity')" min-width="50" />
+            <el-table-column prop="percent" align="center" :label="$t('large.percent')" min-width="50" />
+            <el-table-column align="center" :label="$t('large.operate')" min-width="50">
+              <template #default="scope">
+                <el-button type="text" style="margin-left: 10px;margin-bottom: 10px;"
+                  @click="flowCardDetail(scope.row.orderId)">{{ $t('large.mes') }}</el-button>
+              </template>
+            </el-table-column>
+          </el-table>
+        </div>
+      </div>
+      <div style="height: 100px;width: 25%;float: right;">
+        <div id="ss" style="width: 100%; display: flex; justify-content: center;">
+          <div ref="chartRef2" style="width: 600px; height: 400px;" @dblclick="handlehistorical10()"></div>
+        </div>
+        <div style="width: 100%;height: 245px;display: flex;">
+          <div ref="chartTemp" style="width: 100%;" @dblclick="handlehistorical12(3)"></div>
+        </div>
+        <div style="width: 100%;height: 245px;display: flex;">
+          <div ref="chartHollow" style="width: 100%;" @dblclick="handlehistorical12(4)"></div>
+        </div>
+      </div>
     </div>
-    <div style="height: 190px;width: 48%;float: right;">
-    <el-table height="500" ref="table"
-      @selection-change="handleSelectionChange"
-      :data="tableDatac" :header-cell-style="{background:'#F2F3F5 ',color:'#1D2129'}">
-        <el-table-column prop="orderId" align="center" :label="$t('large.orderId')" min-width="50" />
-        <el-table-column prop="customerName" align="center" :show-overflow-tooltip="true" :label="$t('large.customerName')" min-width="90" />
-        <el-table-column prop="project" align="center" :label="$t('large.project')" min-width="50" />
-        <el-table-column prop="area" align="center" :label="$t('large.are')" min-width="50" />
-        <el-table-column prop="quantity" align="center" :label="$t('large.quantity')" min-width="50" />
-        <el-table-column
-          align="center"
-          :label="$t('large.warehousing')"
-          min-width="50"
-          prop="warehousing"
-        >
-        <template #default="scope">  
-      <el-tag :type="getStatusType(scope.row.warehousing)">  
-        {{ getStatusText(scope.row.warehousing) }}  
-      </el-tag>  
-    </template> 
-        </el-table-column>
-        <el-table-column prop="deliveryDate" align="center" :label="$t('large.deliveryDate')" min-width="100" />
-        <el-table-column fixed="right" :label="$t('large.operate')" align="center" width="100">
-          <template #default="scope">
-            <el-button size="mini" type="text" plain @click="handleBinda(scope.row)">{{ $t('large.mes') }}</el-button>
-          </template>
-      </el-table-column>
-      </el-table>
-</div>
   </div>
-  <!-- 鐐瑰嚮涓嬫柟寮圭獥 -->
+  <el-dialog v-model="blindc" top="5vh" width="90%">
+    <el-table height="700" ref="table" :data="orderDTOS"
+      :header-cell-style="{ background: '#F2F3F5 ', color: '#1D2129' }">
+      <el-table-column prop="orderId" align="center" :label="$t('large.orderId')" min-width="50" />
+      <el-table-column prop="customerName" align="center" :show-overflow-tooltip="true"
+        :label="$t('large.customerName')" min-width="90" />
+      <el-table-column prop="project" align="center" :label="$t('large.project')" min-width="50" />
+      <el-table-column prop="area" align="center" :label="$t('large.are')" min-width="50" />
+      <el-table-column prop="quantity" align="center" :label="$t('large.quantity')" min-width="50" />
+      <el-table-column prop="percent" align="center" :label="$t('large.percent')" min-width="50" />
+      <el-table-column align="center" :label="$t('large.operate')" min-width="50">
+        <template #default="scope">
+          <el-button type="text" style="margin-left: 10px;margin-bottom: 10px;"
+            @click="flowCardDetail(scope.row.orderId)">{{ $t('large.mes') }}</el-button>
+        </template>
+      </el-table-column>
+    </el-table>
+  </el-dialog>
+  <!-- 鍘熺墖浣跨敤璇︽儏 -->
   <el-dialog v-model="blindb" top="10vh" width="90%">
-  <div style="display: flex;">
-            <el-select 
-            :placeholder="$t('basicData.coatingtypes')"
-             clearable
-             style="width: 270px;margin-left: 10px;"  
-             v-model="taskStat">
-               <el-option
-                v-for="item in optionsa"
-                :key="item.value"
-                :label="item.label"
-                :value="item.value"
-              />
-          </el-select>
-          <!-- <span class="demonstration" style="margin-left: 20px;margin-top: 3px;">{{ $t('workOrder.time') }}</span> -->
-            <!-- <el-date-picker v-model="timeRange" type="datetimerange" range-separator="鑷�" :start-placeholder="$t('reportmanage.starttime')" 
-             style="margin-left: 15px;" value-format = "YYYY-MM-DD hh:mm:ss"
-              :end-placeholder="$t('reportmanage.endtime')">
-            </el-date-picker> -->
-            <!-- <el-date-picker
-              v-model="timeRange"
-              type="datetimerange"
-              range-separator="鑷�"
-              :start-placeholder="$t('reportmanage.starttime')"
-              style="margin-left: 15px;"
-              value-format="YYYY-MM-DD hh:mm:ss"
-              :end-placeholder="$t('reportmanage.endtime')">
-            </el-date-picker> -->
-          <el-button type="primary" style="margin-left: 10px;margin-bottom: 10px;" @click="sethistorical()">{{
+    <div style="display: flex;">
+      <el-input v-model="ptnusage.width" style="margin-left: 10px;margin-bottom: 10px;width: 270px;" clearable
+        :placeholder="$t('screendisplay.pwidth')" />
+      <el-input v-model="ptnusage.height" style="margin-left: 10px;margin-bottom: 10px;width: 270px;" clearable
+        :placeholder="$t('screendisplay.pheight')" />
+      <el-input v-model="ptnusage.thickness" style="margin-left: 10px;margin-bottom: 10px;width: 270px;" clearable
+        :placeholder="$t('searchOrder.inthickness')" />
+      <el-input v-model="ptnusage.films" style="margin-left: 10px;margin-bottom: 10px;width: 270px;" clearable
+        :placeholder="$t('film.infilms')" />
+      <el-button type="primary" style="margin-left: 10px;margin-bottom: 10px;" @click="patternUsage()">{{
         $t('reportmanage.inquire')
       }}</el-button>
-      </div>
-    <el-table ref="table" style="margin-top: 20px;height: 650px;" :data="tableDatad" :header-cell-style="{background:'#F2F3F5 ',color:'#1D2129'}">
-      <el-table-column prop="glassIdIn" align="center" :label="$t('searchOrder.intoglassid')" min-width="80" />
-      <el-table-column prop="glassIdOut" align="center" :label="$t('searchOrder.outputglassID')" min-width="80" />
-          <el-table-column prop="currentCell" align="center" :label="$t('sorter.layernow')" min-width="80" />
-          <el-table-column prop="startCell" align="center" :label="$t('processCard.layer')" min-width="120" />
-          <el-table-column
-            align="center"
-            :label="$t('film.taskstatus')"
-            min-width="80"
-            prop="taskState"
-          >
-          <template #default="scope">  
-        <el-tag :type="getStatusTypeb(scope.row.taskState)">  
-          {{ getStatusTextb(scope.row.taskState) }}  
-        </el-tag>  
-      </template> 
-          </el-table-column>
-          <el-table-column
-            align="center"
-            :label="$t('film.enabletype')"
-            min-width="80"
-            prop="taskType"
-          >
-          <template #default="scope">  
-        <el-tag :type="getStatusTypea(scope.row.taskType)">  
-          {{ getStatusTexta(scope.row.taskType) }}  
-        </el-tag>  
-      </template> 
-          </el-table-column>
-          <el-table-column prop="createTime" align="center" :label="$t('film.createtime')" min-width="120" />
-          <el-table-column prop="updateTime" align="center" :label="$t('sorter.updateTime')" min-width="120" />
-        </el-table>
-        <template #footer>
-      <div id="dialog-footer">
-        <el-button @click="blindb = false">{{ $t('large.close') }}</el-button>
-      </div>
-    </template>
-  </el-dialog>
-<el-dialog v-model="blinda" top="5vh" width="85%">
-  <el-table height="650" ref="table" 
-      @selection-change="handleSelectionChange"
-      :data="tableData" :header-cell-style="{background:'#F2F3F5 ',color:'#1D2129'}">
-        <el-table-column prop="orderId" fixed align="center" :label="$t('large.orderId')" min-width="110" />
-        <el-table-column prop="project"  align="center" :label="$t('large.project')" min-width="110" />
-        <el-table-column prop="processId"  align="center" :label="$t('large.cardnumber')" min-width="110" />
-        <el-table-column prop="orderNumber"  align="center" :label="$t('large.serialnumber')" min-width="110" />
-        <el-table-column prop="productName"  align="center" :label="$t('large.productname')" min-width="110" />
-        <el-table-column prop="width"  align="center" :label="$t('large.width')" min-width="100" />
-        <el-table-column prop="height"  align="center" :label="$t('large.height')" min-width="100" />
-        <el-table-column prop="area"  align="center" :label="$t('large.are')" min-width="100" />
-        <el-table-column prop="quantity"  align="center" :label="$t('large.number')" min-width="110" />
-        <el-table-column prop="numberPatches"  align="center" :label="$t('large.numberpatches')" min-width="110" />
-        <el-table-column prop="receivedQuantity"  align="center" :label="$t('large.innumber')" min-width="110" />
-        <el-table-column prop="terminationStatus"  align="center" :label="$t('large.productstatus')" min-width="110" />
-        <el-table-column
-          align="center"
-            :label="$t('large.productstatus')"
-            min-width="80"
-            prop="terminationStatus"
-          >
-          <template #default="scope">  
-          <el-tag  
-            :type="scope.row.terminationStatus === 0 ? 'success' : 'danger'"  
-          >  
-            {{ scope.row.terminationStatus === 0 ? $t('large.right') : $t('large.stop') }}
-          </el-tag>  
-        </template> 
-          </el-table-column> 
-        <el-table-column prop="packType"  align="center" :label="$t('large.quantity')" min-width="110" />
-        <el-table-column prop="projectNo"  align="center" :label="$t('large.projectnumber')" min-width="110" />
-      </el-table>
-  <template #footer>
-    <div id="dialog-footer" style="text-align: center;">
-      <el-button @click="blinda = false">{{ $t('large.close') }}</el-button>
     </div>
-  </template>
-</el-dialog>
+    <el-table ref="table" style="margin-top: 20px;height: 650px;" :data="tableDatad"
+      :header-cell-style="{ background: '#F2F3F5 ', color: '#1D2129' }">
+      <el-table-column prop="patternWidth" align="center" :label="$t('basicData.width')" min-width="80" />
+      <el-table-column prop="patternHeight" align="center" :label="$t('basicData.height')" min-width="80" />
+      <el-table-column prop="patternThickness" align="center" :label="$t('basicData.thickness')" min-width="80" />
+      <el-table-column prop="filmsId" align="center" :label="$t('basicData.coatingtypes')" min-width="120" />
+      <el-table-column prop="totalCount" align="center" :label="$t('searchOrder.allnumber')" min-width="120" />
+      <el-table-column prop="count" align="center" :label="$t('searchOrder.cagesnumber')" min-width="120" />
+      <el-table-column prop="finishCount" align="center" :label="$t('screendisplay.upnumber')" min-width="120" />
+      <el-table-column prop="damageCount" align="center" :label="$t('hellow.damagenumber')" min-width="120" />
+    </el-table>
+  </el-dialog>
+  <!-- 娴佺▼鍗¤繘搴� -->
+  <el-dialog v-model="blinda" top="5vh" width="85%">
+    <el-table height="650" ref="table" :data="tableData"
+      :header-cell-style="{ background: '#F2F3F5 ', color: '#1D2129' }">
+      <el-table-column prop="processId" fixed align="center" :label="$t('large.processId')" min-width="150" />
+      <el-table-column prop="glassChild" align="center" :label="$t('large.productname')" min-width="150" />
+      <el-table-column prop="orderNumber" align="center" :label="$t('large.serialnumber')" min-width="110" />
+      <el-table-column prop="technologyNumber" align="center" :label="$t('large.slicemarker')" min-width="110" />
+      <el-table-column prop="width" align="center" :label="$t('large.width')" min-width="110" />
+      <el-table-column prop="height" align="center" :label="$t('large.height')" min-width="110" />
+      <el-table-column prop="quantity" align="center" :label="$t('large.quantity')" min-width="110" />
+      <el-table-column prop="brokenNum" align="center" :label="$t('large.brokenNum')" min-width="100" />
+      <el-table-column prop="inventory" align="center" :label="$t('large.inventory')" min-width="100" />
+      <el-table-column prop="inventoryArea" align="center" :label="$t('large.inventoryarea')" min-width="100" />
+      <el-table-column prop="shippedQuantity" align="center" :label="$t('large.shippedQuantity')" min-width="110" />
+      <!-- <el-table-column prop="reportWorkQuantity" align="center" :label="$t('large.reportWorkQuantity')" min-width="110" />
+      <el-table-column prop="reportWorkQuantityCount" align="center" :label="$t('large.reportWorkQuantityCount')" min-width="110" /> -->
+      <!-- 鍔ㄦ�佺敓鎴愮殑 reportWorkQuantity 鍒� -->
+      <el-table-column v-for="column in dynamicColumns" :key="column.prop" :prop="column.prop" :label="column.label"
+        align="center" min-width="110" />
+    </el-table>
+  </el-dialog>
 </template>
 <style scoped>
-#dt { display:block; float:left;line-height: 20px;margin-left: 100px;}
-#dta { display:block; float:left;line-height: 20px;margin-left: 80%;}
-#dialog-footer{
+#dt {
+  display: block;
+  float: left;
+  line-height: 20px;
+  margin-left: 100px;
+}
+#dta {
+  display: block;
+  float: left;
+  line-height: 20px;
+  margin-left: 80%;
+}
+#dialog-footer {
   text-align: center;
   margin-top: -15px;
 }
-#message{
+#message {
   text-align: center;
   align-items: center;
   color: black;
-   width: 200px;
-   height: 100px;
-   background-color: #337ecc;
-   margin-left: 28%;
+  width: 200px;
+  height: 100px;
+  background-color: #337ecc;
+  margin-left: 28%;
 }
-#awatch{
+#awatch {
   height: 460px;
 }
+/* 浼樺寲鑳屾櫙鍥剧墖鍔犺浇 */
+.img-screen {
+  /* max-width: 48%;
+  max-height: 100%; */
+  /* margin-top: 50px; */
+  /* float: left; */
+  position: relative;
+  background-image: url('/screen.png');
+  width: 795px;
+  height: 700px;
+  background-size: contain;
+  background-repeat: no-repeat;
+  /* background-position: center; */
+  /* width: 100%; 
+  height: 0; 
+  padding-bottom: 50%;  */
+  image-rendering: -webkit-optimize-contrast;
+  image-rendering: crisp-edges;
+}
 .clickable-area {
-  cursor: pointer; /* 鎸囩ず杩欐槸涓�涓彲鐐瑰嚮鐨勫尯鍩� */
-  text-align: center; /* 濡傛灉闇�瑕侊紝鍙互鍦╠iv涓坊鍔犳枃鏈苟灞呬腑 */
-  line-height: 95px; /* 濡傛灉闇�瑕侊紝浣挎枃鏈瀭鐩村眳涓� */
+  cursor: pointer;
+  /* 鎸囩ず杩欐槸涓�涓彲鐐瑰嚮鐨勫尯鍩� */
+  text-align: center;
+  /* 濡傛灉闇�瑕侊紝鍙互鍦╠iv涓坊鍔犳枃鏈苟灞呬腑 */
+  line-height: 95px;
+  /* 濡傛灉闇�瑕侊紝浣挎枃鏈瀭鐩村眳涓� */
 }
 /* .awatch{
   height: 460px;
   /* max-width: 100%; */
+.box {
+  transition: transform 0.016s linear;
+}
+.lipiana {
+  width: 15px;
+  height: 9px;
+  background-color: #529b2e;
+  top: 190px;
+  right: 530px;
+  transform: translateX(-50%);
+  animation: move-lipiana 1s infinite;
+}
+@keyframes move-lipiana {
+  0% {
+    right: 530px;
+  }
+  100% {
+    right: calc(100% - 350px);
+  }
+}
+/* 浣跨敤CSS纭欢鍔犻�� */
+.moving-rect {
+  width: 15px;
+  height: 15px;
+  background-color: #911005;
+  position: absolute;
+  will-change: transform;
+  backface-visibility: hidden;
+  perspective: 1000px;
+}
 </style>
\ No newline at end of file

--
Gitblit v1.8.0