From cf9e6eb7bfe620184ada5594dabb2734b34bb7cb Mon Sep 17 00:00:00 2001
From: huang <1532065656@qq.com>
Date: 星期一, 12 五月 2025 10:53:01 +0800
Subject: [PATCH] 添加 比对数据,不同变红警告

---
 UI-Project/src/views/largescreendisplay/screendisplay.vue |  972 +++++++++++++++++++++++++++++++++++++++++++++-----------
 1 files changed, 774 insertions(+), 198 deletions(-)

diff --git a/UI-Project/src/views/largescreendisplay/screendisplay.vue b/UI-Project/src/views/largescreendisplay/screendisplay.vue
index 9febe07..c34154e 100644
--- a/UI-Project/src/views/largescreendisplay/screendisplay.vue
+++ b/UI-Project/src/views/largescreendisplay/screendisplay.vue
@@ -1,15 +1,22 @@
 <script setup>
-import { onBeforeUnmount, onMounted, onUnmounted, reactive, ref } from "vue";
+import { onBeforeUnmount, onMounted, onUnmounted, ref, computed, nextTick } 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 dayjs from 'dayjs';
-import { ElMessage, ElMessageBox } from 'element-plus'
+import { ElMessage } from 'element-plus'
 import { useI18n } from 'vue-i18n'
+import * as echarts from 'echarts';
+
+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 blindc = ref(false)
 const { t } = useI18n()
 let language = ref(localStorage.getItem('lang') || 'zh')
 let socket = null;
@@ -25,6 +32,7 @@
 const edgTwoTasks = ref([])
 const engineeringOne = ref([])
 const engineeringTwo = ref([])
+
 const socketUrl1 = `ws://${WebSocketHost}:${host}/api/cacheGlass/api/talk/largenScreen`;
 const handleMessage1 = (data) => {
   edgOneTasks.value = data.edgOneTasks[0];
@@ -39,11 +47,99 @@
     numBoxes2.value = edgTwoTasks.value.length;
     boxStart2();
   }
+  const pieChartVOS = ref([]);
+  pieChartVOS.value = data.pieChartVOS[0];
+  let oneFinish = ref();
+  let twoFinish = ref();
+  let oneunFinish = ref();
+  let twounFinish = ref();
+  if (pieChartVOS.value.length > 0) {
+    if (load.value) {
+      oneFinish = pieChartVOS.value[0].oneCompletedQuantity;
+      twoFinish = pieChartVOS.value[0].twoCompletedQuantity;
+      oneunFinish = pieChartVOS.value[0].oneUncompletedQuantity;
+      twounFinish = pieChartVOS.value[0].twoUncompletedQuantity;
+    } else {
+      oneFinish = pieChartVOS.value[0].oneCompletedArea;
+      twoFinish = pieChartVOS.value[0].twoCompletedArea;
+      oneunFinish = pieChartVOS.value[0].oneUncompletedArea;
+      twounFinish = pieChartVOS.value[0].twoUncompletedArea;
+    }
+  } else {
+    oneFinish = 0;
+    twoFinish = 0;
+    oneunFinish = 0;
+    twounFinish = 0;
+  }
+
+
+  const chartDomOne = chartOne.value;
+  if (!chartDomOne) {
+    console.error('鍥捐〃瀹瑰櫒鏈壘鍒�');
+    return;
+  }
+  const myChartOne = echarts.init(chartDomOne);
+  const optionOne = {
+    title: {
+      text: t('large.load'),
+      subtext: '',
+      left: 'right'
+    },
+    tooltip: {
+      trigger: 'item'
+    },
+    legend: {
+      orient: 'vertical',
+      left: 'left'
+    },
+    series: [
+      {
+        name: '',
+        type: 'pie',
+        radius: '50%',
+        data: [
+          { value: oneFinish, name: t('large.oneFinish') },
+          { value: twoFinish, name: t('large.twoFinish') },
+          { value: oneunFinish, name: t('large.oneunFinish') },
+          { value: twounFinish, name: t('large.twounFinish') },
+        ],
+        emphasis: {
+          itemStyle: {
+            shadowBlur: 10,
+            shadowOffsetX: 0,
+            shadowColor: 'rgba(0, 0, 0, 0.5)'
+          }
+        }
+      }
+    ],
+    graphic: [
+      {
+        type: 'rect',
+        left: 'center',
+        top: 0,
+        shape: {
+          width: 80,
+          height: 30
+        },
+        style: {
+          text: load.value == true ? t('large.quantity') : t('large.are'),
+          fill: '#5470C6',
+          stroke: '#000',
+          lineWidth: 1
+        },
+        onclick: function () {
+          load.value = !load.value;
+        }
+      }
+    ]
+  };
+
+  myChartOne.setOption(optionOne);
 };
 let socket2 = null;
 const temperingTaskType = ref([])
 const temperingGlassInfoList = ref([])
-const temperingGlassInfoOutList = ref([])
+const temperingGlassInfoInList = ref([])
 const socketUrl2 = `ws://${WebSocketHost}:${host}/api/temperingGlass/api/talk/largenScreen`;
 const handleMessage2 = (data) => {
   temperingTaskType.value = data.temperingTaskType[0];
@@ -52,30 +148,400 @@
     numBoxes3.value = temperingTaskType.value;
     boxStart3();
   }
-  temperingGlassInfoOutList.value = data.temperingGlassInfoOutList[0];
-  if (numBoxes4.value != temperingGlassInfoOutList.value) {
-    numBoxes4.value = temperingGlassInfoOutList.value;
-    boxStart3();
+  if (temperingGlassInfoList.value > 1) {
+    numBoxes4.value = 1;
+  } else {
+    numBoxes4.value = 0;
   }
+  temperingGlassInfoInList.value = data.temperingGlassInfoInList[0];
+  const pieChartVOS = ref([]);
+  pieChartVOS.value = data.pieChartVOS[0];
+  let oneFinish = ref();
+  let ondDamage = ref();
+  let oneunFinish = ref();
+  if (pieChartVOS.value.length > 0) {
+    if (temp.value) {
+      oneFinish = pieChartVOS.value[0].oneCompletedQuantity;
+      ondDamage = pieChartVOS.value[0].oneDamageQuantity;
+      oneunFinish = pieChartVOS.value[0].oneUncompletedQuantity;
+    } else {
+      oneFinish = pieChartVOS.value[0].oneCompletedArea;
+      ondDamage = pieChartVOS.value[0].oneDamageArea;
+      oneunFinish = pieChartVOS.value[0].oneUncompletedArea;
+    }
+  } else {
+    oneFinish = 0;
+    ondDamage = 0;
+    oneunFinish = 0;
+  }
+
+
+  const chartDomOne = chartThree.value;
+  if (!chartDomOne) {
+    console.error('鍥捐〃瀹瑰櫒鏈壘鍒�');
+    return;
+  }
+  const myChartOne = echarts.init(chartDomOne);
+  const optionOne = {
+    title: {
+      text: t('large.temp'),
+      subtext: '',
+      left: 'right'
+    },
+    tooltip: {
+      trigger: 'item'
+    },
+    legend: {
+      orient: 'vertical',
+      left: 'left'
+    },
+    series: [
+      {
+        name: '',
+        type: 'pie',
+        radius: '50%',
+        data: [
+          { value: oneFinish, name: t('large.oneFinish') },
+          { value: ondDamage, name: t('large.ondDamage') },
+          { value: oneunFinish, name: t('large.oneunFinish') },
+        ],
+        emphasis: {
+          itemStyle: {
+            shadowBlur: 10,
+            shadowOffsetX: 0,
+            shadowColor: 'rgba(0, 0, 0, 0.5)'
+          }
+        }
+      }
+    ],
+    graphic: [
+      {
+        type: 'rect',
+        left: 'center',
+        top: 0,
+        shape: {
+          width: 80,
+          height: 30
+        },
+        style: {
+          text: temp.value == true ? t('large.quantity') : t('large.are'),
+          fill: '#5470C6',
+          stroke: '#000',
+          lineWidth: 1
+        },
+        onclick: function () {
+          temp.value = !temp.value;
+        }
+      }
+    ]
+  };
+
+  myChartOne.setOption(optionOne);
 };
 let socket3 = null;
 const bigStorageCageUsage = ref([])
 const socketUrl3 = `ws://${WebSocketHost}:${host}/api/cacheVerticalGlass/api/talk/largenScreen`;
 const handleMessage3 = (data) => {
   bigStorageCageUsage.value = data.bigStorageCageUsage[0];
+  const pieChartVOS = ref([]);
+  pieChartVOS.value = data.pieChartVOS[0];
+  let oneFinish = ref();
+  let twoFinish = ref();
+  let oneunFinish = ref();
+  let twounFinish = ref();
+  if (pieChartVOS.value.length > 0) {
+    if (edg.value) {
+      oneFinish = pieChartVOS.value[0].oneCompletedQuantity;
+      twoFinish = pieChartVOS.value[0].twoCompletedQuantity;
+      oneunFinish = pieChartVOS.value[0].oneUncompletedQuantity;
+      twounFinish = pieChartVOS.value[0].twoUncompletedQuantity;
+    } else {
+      oneFinish = pieChartVOS.value[0].oneCompletedArea;
+      twoFinish = pieChartVOS.value[0].twoCompletedArea;
+      oneunFinish = pieChartVOS.value[0].oneUncompletedArea;
+      twounFinish = pieChartVOS.value[0].twoUncompletedArea;
+    }
+  } else {
+    oneFinish = 0;
+    twoFinish = 0;
+    oneunFinish = 0;
+    twounFinish = 0;
+  }
+
+
+  const chartDomOne = chartTwo.value;
+  if (!chartDomOne) {
+    console.error('鍥捐〃瀹瑰櫒鏈壘鍒�');
+    return;
+  }
+  const myChartOne = echarts.init(chartDomOne);
+  const optionOne = {
+    title: {
+      text: t('large.edg'),
+      subtext: '',
+      left: 'right'
+    },
+    tooltip: {
+      trigger: 'item'
+    },
+    legend: {
+      orient: 'vertical',
+      left: 'left'
+    },
+    series: [
+      {
+        name: '',
+        type: 'pie',
+        radius: '50%',
+        data: [
+          { value: oneFinish, name: t('large.oneFinish') },
+          { value: twoFinish, name: t('large.twoFinish') },
+          { value: oneunFinish, name: t('large.oneunFinish') },
+          { value: twounFinish, name: t('large.twounFinish') },
+        ],
+        emphasis: {
+          itemStyle: {
+            shadowBlur: 10,
+            shadowOffsetX: 0,
+            shadowColor: 'rgba(0, 0, 0, 0.5)'
+          }
+        }
+      }
+    ],
+    graphic: [
+      {
+        type: 'rect',
+        left: 'center',
+        top: 0,
+        shape: {
+          width: 80,
+          height: 30
+        },
+        style: {
+          text: edg.value == true ? t('large.quantity') : t('large.are'),
+          fill: '#5470C6',
+          stroke: '#000',
+          lineWidth: 1
+        },
+        onclick: function () {
+          edg.value = !edg.value;
+        }
+      }
+    ]
+  };
+
+  myChartOne.setOption(optionOne);
 };
 let socket4 = null;
 const hollowBigStorageCageUsage = ref([])
 const socketUrl4 = `ws://${WebSocketHost}:${host}/api/hollowGlass/api/talk/largenScreen`;
 const handleMessage4 = (data) => {
   hollowBigStorageCageUsage.value = data.hollowBigStorageCageUsage[0];
+  const pieChartVOS = ref([]);
+  pieChartVOS.value = data.pieChartVOS[0];
+  let oneFinish = ref();
+  let twoFinish = ref();
+  let oneunFinish = ref();
+  let twounFinish = ref();
+  if (pieChartVOS.value.length > 0) {
+    if (hollow.value) {
+      oneFinish = pieChartVOS.value[0].oneCompletedQuantity;
+      twoFinish = pieChartVOS.value[0].twoCompletedQuantity;
+      oneunFinish = pieChartVOS.value[0].oneUncompletedQuantity;
+      twounFinish = pieChartVOS.value[0].twoUncompletedQuantity;
+    } else {
+      oneFinish = pieChartVOS.value[0].oneCompletedArea;
+      twoFinish = pieChartVOS.value[0].twoCompletedArea;
+      oneunFinish = pieChartVOS.value[0].oneUncompletedArea;
+      twounFinish = pieChartVOS.value[0].twoUncompletedArea;
+    }
+  } else {
+    oneFinish = 0;
+    twoFinish = 0;
+    oneunFinish = 0;
+    twounFinish = 0;
+  }
+
+
+  const chartDomOne = chartFour.value;
+  if (!chartDomOne) {
+    console.error('鍥捐〃瀹瑰櫒鏈壘鍒�');
+    return;
+  }
+  const myChartOne = echarts.init(chartDomOne);
+  const optionOne = {
+    title: {
+      text: t('large.hollow'),
+      subtext: '',
+      left: 'right'
+    },
+    tooltip: {
+      trigger: 'item'
+    },
+    legend: {
+      orient: 'vertical',
+      left: 'left'
+    },
+    series: [
+      {
+        name: '',
+        type: 'pie',
+        radius: '50%',
+        data: [
+          { value: oneFinish, name: t('large.oneFinish') },
+          { value: twoFinish, name: t('large.twoFinish') },
+          { value: oneunFinish, name: t('large.oneunFinish') },
+          { value: twounFinish, name: t('large.twounFinish') },
+        ],
+        emphasis: {
+          itemStyle: {
+            shadowBlur: 10,
+            shadowOffsetX: 0,
+            shadowColor: 'rgba(0, 0, 0, 0.5)'
+          }
+        }
+      }
+    ],
+    graphic: [
+      {
+        type: 'rect',
+        left: 'center',
+        top: 0,
+        shape: {
+          width: 80,
+          height: 30
+        },
+        style: {
+          text: hollow.value == true ? t('large.quantity') : t('large.are'),
+          fill: '#5470C6',
+          stroke: '#000',
+          lineWidth: 1
+        },
+        onclick: function () {
+          hollow.value = !hollow.value;
+        }
+      }
+    ]
+  };
+
+  myChartOne.setOption(optionOne);
 };
 let socket5 = null;
 const productionVO = ref([])
 const socketUrl5 = `ws://${WebSocketHost}:${host}/api/cacheGlass/api/talk/largenScreenProduction`;
 const handleMessage5 = (data) => {
-  productionVO.value = data.productionVO;
+  productionVO.value = data.productionVO[0];
+  // 灏嗗師濮嬫暟鎹浆鎹负 ECharts 鍥捐〃鎵�闇�鏍煎紡
+  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;
+  }
+
+  const myChart = echarts.init(chartDom);
+
+
+  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: { left: '3%', right: '4%', bottom: '3%', containLabel: true },
+    toolbox: { feature: { saveAsImage: {} } },
+    xAxis: {
+      type: 'category',
+      boundaryGap: false,
+      data: categories // 杩欐槸鏃ユ湡鏁版嵁
+    },
+    yAxis: { type: 'value' },
+    series: [
+      { name: t('large.countOutOne'), type: 'bar', data: countOutOne },
+      { name: t('large.totalAreaOutOne'), type: 'bar', data: totalAreaOutOne },
+      { name: t('large.countOutTwo'), type: 'bar', data: countOutTwo },
+      { name: t('large.totalAreaOutTwo'), type: 'bar', data: totalAreaOutTwo },
+      { name: t('large.countIn'), type: 'bar', data: countIn },
+      { name: t('large.totalAreaIn'), type: 'bar', data: totalAreaIn }
+    ]
+  };
+
+  myChart.setOption(option);
+
+  const chartDom2 = chartRef2.value;
+  if (!chartDom2) {
+    console.error('鍥捐〃瀹瑰櫒鏈壘鍒�');
+    return;
+  }
+  const myChart2 = echarts.init(chartDom2);
+  const option2 = {
+    title: { text: '' },
+    tooltip: { trigger: 'axis' },
+    legend: {
+      data: [
+        t('large.totalAreaOut'),
+        t('large.countOut'),
+        t('large.hollowTotalAreaOutOne'),
+        t('large.hollowCountOutOne'),
+        t('large.hollowCountOutTwo'),
+        t('large.hollowTotalAreaOutTwo')
+      ]
+    },
+    grid: { left: '3%', right: '4%', bottom: '3%', containLabel: true },
+    toolbox: { feature: { saveAsImage: {} } },
+    xAxis: {
+      type: 'category',
+      boundaryGap: false,
+      data: categories // 杩欐槸鏃ユ湡鏁版嵁
+    },
+    yAxis: { type: 'value' },
+    series: [
+      { name: t('large.totalAreaOut'), type: 'bar', data: totalAreaOut },
+      { name: t('large.countOut'), type: 'bar', data: countOut },
+      { name: t('large.hollowTotalAreaOutOne'), type: 'bar', data: hollowTotalAreaOutOne },
+      { name: t('large.hollowCountOutOne'), type: 'bar', data: hollowCountOutOne },
+      { name: t('large.hollowCountOutTwo'), type: 'bar', data: hollowCountOutTwo },
+      { name: t('large.hollowTotalAreaOutTwo'), type: 'bar', data: hollowTotalAreaOutTwo }
+    ]
+  };
+
+  myChart2.setOption(option2);
 };
+// 灏嗗師濮嬫暟鎹浆鎹负 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 () => {
@@ -96,9 +562,9 @@
 const tableData = ref([]);
 const dynamicColumns = ref([]);
 const flowCardDetail = async (orderId) => {
-  blinda.value= true;
+  blinda.value = true;
   try {
-    const response = await request.post('/glassStorage/flow_card/flowCardReportForms?orderId=' + orderId );
+    const response = await request.post('/glassStorage/flow_card/flowCardReportForms?orderId=' + orderId);
     if (response.code == 200) {
       ElMessage.success(response.message);
       tableData.value = response.data;
@@ -141,8 +607,17 @@
   blindb.value = true;
   patternUsage()
 };
+const chartRef = ref(null)
+const chartRef2 = ref(null)
+const chartOne = ref(null)
+const chartTwo = ref(null)
+const chartThree = ref(null)
+const chartFour = ref(null)
+
+
 // 鍦ㄧ粍浠舵寕杞芥椂璁剧疆榛樿鏃堕棿鑼冨洿
-onMounted(() => {
+onMounted(async () => {
+
   boxStart();
   boxStart2();
   boxStart3();
@@ -158,6 +633,7 @@
   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')];
+
 });
 // onMounted(() => {
 //   socket = initializeWebSocket(socketUrl, handleMessage);
@@ -173,7 +649,6 @@
   }
 });
 onBeforeUnmount(() => {
-  console.log("鍏抽棴浜�")
   closeWebSocket();
 });
 const numBoxes = ref(5);
@@ -182,11 +657,11 @@
 const numBoxes4 = ref(1);
 const speed = 0.1;
 const maxX = 200; // 缁堢偣X鍧愭爣
-const maxY = -73; // 缁堢偣Y鍧愭爣
-const maxX2 = 250; // 缁堢偣X鍧愭爣
+const maxY = -75; // 缁堢偣Y鍧愭爣
+const maxX2 = 313; // 缁堢偣X鍧愭爣
 const maxY2 = -165; // 缁堢偣Y鍧愭爣
-const maxX3 = 100; // 缁堢偣X鍧愭爣
-const maxY3 = -75; // 缁堢偣Y鍧愭爣
+const maxX3 = 95; // 缁堢偣X鍧愭爣
+const maxY3 = -85; // 缁堢偣Y鍧愭爣
 const maxX4 = 60; // 缁堢偣X鍧愭爣
 const maxY4 = 0; // 缁堢偣Y鍧愭爣
 const delayFrames = 600; // 姣忎釜 div 鐨勫欢杩熷抚鏁�
@@ -224,7 +699,7 @@
       style: {
         width: '15px',
         height: '15px',
-        backgroundColor: i % 2 === 0 ? '#911005' : 'blue',
+        backgroundColor: i % 2 === 0 ? '#911005' : '#911005',
         position: 'absolute',
         transform: `translate(0px, 0px)`
       }
@@ -242,7 +717,7 @@
       style: {
         width: '15px',
         height: '15px',
-        backgroundColor: i % 2 === 0 ? '#911005' : 'blue',
+        backgroundColor: i % 2 === 0 ? '#911005' : '#911005',
         position: 'absolute',
         transform: `translate(0px, 0px)`
       }
@@ -260,7 +735,7 @@
       style: {
         width: '15px',
         height: '15px',
-        backgroundColor: i % 2 === 0 ? '#911005' : 'blue',
+        backgroundColor: i % 2 === 0 ? '#911005' : '#911005',
         position: 'absolute',
         transform: `translate(0px, 0px)`
       }
@@ -372,7 +847,7 @@
 const iframe2 = ref(false);
 const handlehistorical2 = () => {
   iframe2.value = true;
-  iframeUrl2.value =`${window.location.origin}/#/Returns/upreturnhistory`;;
+  iframeUrl2.value = `${window.location.origin}/#/Returns/upreturnhistory`;;
 };
 const iframeUrl3 = ref('');
 const iframe3 = ref(false);
@@ -384,27 +859,25 @@
 const iframe4 = ref(false);
 const handlehistorical4 = () => {
   iframe4.value = true;
-  
-  iframeUrl4.value =`${window.location.origin}/#/StockBasicData/stockhistory`;;
+  iframeUrl4.value = `${window.location.origin}/#/Caching/cachingbeforehistory`;
 };
 const iframeUrl5 = ref('');
 const iframe5 = ref(false);
 const handlehistorical5 = () => {
   iframe5.value = true;
-  iframeUrl5.value = `${window.location.origin}/#/hollow/hellowslicecagehistory`;
-  iframeUrl5.value = `${window.location.origin}/#/hollow/hellowslicecagehistory`;
+  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`;
+  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/hellowquiptwohistory`;
+  iframeUrl7.value = `${window.location.origin}/#/hollow/hellowquiphistory`;
 };
 const iframeUrl8 = ref('');
 const iframe8 = ref(false);
@@ -416,179 +889,288 @@
 const iframe9 = ref(false);
 const handlehistorical9 = () => {
   iframe9.value = true;
-  iframeUrl9.value = `${window.location.origin}/#/largescreendisplay/statistics`;
+  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 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'),
+};
+
+
 </script>
 <template>
   <div style="height: 500px;">
-    <el-dialog v-model="iframe1" top="10vh" width="95%">
-      <iframe :src="iframeUrl1" marginwidth="2000px" marginheight="2000px" width="100%" height="700px" frameborder="0"></iframe>
+    <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="10vh" width="95%">
-      <iframe :src="iframeUrl2" marginwidth="2000px" marginheight="2000px" width="100%" height="700px" frameborder="0"></iframe>
+    <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="10vh" width="95%">
-      <iframe :src="iframeUrl3" marginwidth="2000px" marginheight="2000px" width="100%" height="700" frameborder="0"></iframe>
+    <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="10vh" width="95%">
-      <iframe :src="iframeUrl4" marginwidth="2000px" marginheight="2000px" width="100%" height="750px" frameborder="0"></iframe>
+    <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="10vh" width="95%">
-      <iframe :src="iframeUrl5" marginwidth="2000px" marginheight="2000px" width="100%" height="750px" frameborder="0"></iframe>
+    <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="10vh" width="95%">
-      <iframe :src="iframeUrl6" marginwidth="2000px" marginheight="2000px" width="100%" height="750px" frameborder="0"></iframe>
+    <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="10vh" width="95%">
-      <iframe :src="iframeUrl7" marginwidth="2000px" marginheight="2000px" width="100%" height="750px" frameborder="0"></iframe>
+    <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="iframe9" top="10vh" width="95%">
-      <iframe :src="iframeUrl9" marginwidth="2000px" marginheight="2000px" width="100%" height="750px" frameborder="0"></iframe>
+    <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>
-    <!-- 鐢熶骇缁熻 -->
-    <div style="height: 190px;width: 88%;float: right;position: absolute;" @click="handlehistorical9">
-      <el-table height="700" ref="table" :data="productionVO"
-        :header-cell-style="{ background: '#F2F3F5 ', color: '#1D2129' }">
-        <el-table-column prop="date" align="center" :label="$t('large.date')" min-width="70" />
-        <el-table-column prop="countOutOne" align="center" :label="$t('large.countOutOne')" min-width="40" />
-        <el-table-column prop="totalAreaOutOne" align="center" :label="$t('large.totalAreaOutOne')" min-width="40" />
-        <el-table-column prop="countOutTwo" align="center" :label="$t('large.countOutTwo')" min-width="50" />
-        <el-table-column prop="totalAreaOutTwo" align="center" :label="$t('large.totalAreaOutTwo')" min-width="50" />
-        <el-table-column prop="countIn" align="center" :label="$t('large.countIn')" min-width="50" />
-        <el-table-column prop="totalAreaIn" align="center" :label="$t('large.totalAreaIn')" min-width="50" />
-        <el-table-column prop="countOut" align="center" :label="$t('large.countOut')" min-width="40" />
-        <el-table-column prop="totalAreaOut" align="center" :label="$t('large.totalAreaOut')" min-width="40" />
-        <el-table-column prop="hollowCountOutOne" align="center" :label="$t('large.hollowCountOutOne')" min-width="40" />
-        <el-table-column prop="hollowTotalAreaOutOne" align="center" :label="$t('large.hollowTotalAreaOutOne')" min-width="40" />
-        <el-table-column prop="countOut" align="center" :label="$t('large.countOut')" min-width="40" />
-        <el-table-column prop="hollowCountOutTwo" align="center" :label="$t('large.hollowCountOutTwo')" min-width="40" />
-        <!-- <el-table-column align="center" :label="$t('large.operate')" min-width="50">
-          <template #default="scope">
-            <el-button type="primary" 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 class="awatch">
-      <div class="img-screen" alt="Screen">
-        <!-- 閽㈠寲鑹插潡 -->
-        <div v-if="temperingGlassInfoList > 0" class="tempering"
-          style="width: 50px;height: 22px;top: 354px;left: 228px;position: absolute;background-color: #911005;"></div>
-        <div v-if="temperingGlassInfoList > 1" class="tempering"
-          style="width: 50px;height: 22px;top: 354px;left: 284px;position: absolute;background-color: #911005;"></div>
-        <!-- 鍒囧壊鍙拌壊鍧� -->
-        <div v-if="engineeringOne.length > 1" class="slicing"
-          style="width: 50px;height: 22px;top: 575px;left: 453px;position: absolute;background-color: #911005;"></div>
-        <div v-if="engineeringTwo.length > 1" class="slicing"
-          style="width: 50px;height: 22px;top: 625px;left: 453px;position: absolute;background-color: #911005;"></div>
-        <!-- 鍘熺墖浠撳偍鑹插潡 -->
-        <div class="raw" style="width: 31px;height: 32px;top: 571px;left: 300px;position: absolute;">
-          <div v-for="(item, index) in rawGlassStorageDetailList.slice(0, 7)" :key="index"
-            :style='"width: " + (item.remainQuantity / 5) + "px;height: 5px;background-color: #911005;"'></div>
+    <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="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 class="raw" style="width: 31px;height: 47px;top: 610px;left: 300px;position: absolute;">
-          <div v-for="(item, index) in rawGlassStorageDetailList.slice(8, 17)" :key="index"
-            :style='"width: " + (item.remainQuantity / 5) + "px;height: 5px;background-color: #911005;"'></div>
+        <div style="width: 100%;height: 245px;display: flex;">
+          <div ref="chartOne" style="width: 100%;"></div>
         </div>
-        <div class="raw" style="width: 31px;height: 13px;top: 675px;left: 300px;position: absolute;">
-          <div v-for="(item, index) in rawGlassStorageDetailList.slice(18, 20)" :key="index"
-            :style='"width: " + (item.remainQuantity / 5) + "px;height: 5px;background-color: #911005;"'></div>
-        </div>
-        <div class="raw" style="width: 31px;height: 22px;top: 657px;left: 370px;position: absolute;">
-          <div v-for="(item, index) in rawGlassStorageDetailList.slice(21, 25)" :key="index"
-            :style='"width: " + (item.remainQuantity / 5) + "px;height: 5px;background-color: #911005;"'></div>
-        </div>
-        <div class="raw" style="width: 31px;height: 9px;top: 561px;left: 370px;position: absolute;">
-          <div v-for="(item, index) in rawGlassStorageDetailList.slice(26, 27)" :key="index"
-            :style='"width: " + (item.remainQuantity / 5) + "px;height: 5px;background-color: #911005;"'></div>
-        </div>
-        <div class="raw" style="width: 31px;height: 9px;top: 612px;left: 370px;position: absolute;">
-          <div v-for="(item, index) in rawGlassStorageDetailList.slice(28, 29)" :key="index"
-            :style='"width: " + (item.remainQuantity / 5) + "px;height: 5px;background-color: #911005;"'></div>
-        </div>
-        <!-- 纾ㄨ竟鑹插潡 -->
-        <div class="container"
-          style="position: relative;width: 20px;height: 20px;top: 572px;left: 648px;position: absolute;">
-          <div v-for="(box, index) in boxes" :key="index" class="box" :style="box.style" ></div>
-        </div>
-        <div class="container"
-          style="position: relative;width: 20px;height: 20px;top: 625px;left: 700px;position: absolute;">
-          <div v-for="(box, index) in boxes2" :key="index" class="box" :style="box.style" ></div>
-        </div>
-        <!-- 閽㈠寲杩愬姩鑹插潡 -->
-        <div class="container"
-          style="position: relative;width: 20px;height: 20px;top: 438px;left: 196px;position: absolute;">
-          <div v-for="(box, index) in boxes3" :key="index" class="box" :style="box.style"></div>
-        </div>
-        <div class="container"
-          style="position: relative;width: 20px;height: 20px;top: 355px;left: 496px;position: absolute;">
-          <div v-for="(box, index) in boxes4" :key="index" class="box" :style="box.style"></div>
-        </div>
-        <!-- 閽㈠寲鍓嶅ぇ鐞嗙墖鑹插潡 -->
-        <div class="container" v-for="(item, index) in bigStorageCageUsage.slice(0, 1)" :key="index" 
-          :style='"position: relative;width: " + (38 * item.percentage / 100) + "px;height: 13px;top: 447px;left: 314px;position: absolute;background-color: #911005;"'>
-        </div>
-        <div class="container" v-for="(item, index) in bigStorageCageUsage.slice(1, 2)" :key="index" 
-          :style='"position: relative;width: " + (38 * item.percentage / 100) + "px;height: 13px;top: 463px;left: 314px;position: absolute;background-color: #911005;"'>
-        </div>
-        <div class="container" v-for="(item, index) in bigStorageCageUsage.slice(2, 3)" :key="index" 
-          :style='"position: relative;width: " + (38 * item.percentage / 100) + "px;height: 13px;top: 478px;left: 314px;position: absolute;background-color: #911005;"'>
-        </div>
-        <div class="container" v-for="(item, index) in bigStorageCageUsage.slice(3, 4)" :key="index" 
-          :style='"position: relative;width: " + (38 * item.percentage / 100) + "px;height: 13px;top: 493px;left: 314px;position: absolute;background-color: #911005;"'>
-        </div>
-        <!-- 涓┖鍓嶅ぇ鐞嗙墖鑹插潡 -->
-        <div class="container" v-for="(item, index) in hollowBigStorageCageUsage.slice(0, 1)" :key="index" 
-          :style='"position: relative;width: " + (38 * item.percentage / 100) + "px;height: 13px;top: 337px;left: 671px;position: absolute;background-color: #911005;"'>
-        </div>
-        <div class="container" v-for="(item, index) in hollowBigStorageCageUsage.slice(1, 2)" :key="index" 
-          :style='"position: relative;width: " + (38 * item.percentage / 100) + "px;height: 13px;top: 353px;left: 671px;position: absolute;background-color: #911005;"'>
-        </div>
-        <div class="container" v-for="(item, index) in hollowBigStorageCageUsage.slice(2, 3)" :key="index" 
-          :style='"position: relative;width: " + (38 * item.percentage / 100) + "px;height: 13px;top: 369px;left: 671px;position: absolute;background-color: #911005;"'>
-        </div>
-        <div class="container" v-for="(item, index) in hollowBigStorageCageUsage.slice(3, 4)" :key="index" 
-          :style='"position: relative;width: " + (38 * item.percentage / 100) + "px;height: 13px;top: 385px;left: 671px;position: absolute;background-color: #911005;"'>
-        </div>
-        <div class="container" v-for="(item, index) in hollowBigStorageCageUsage.slice(4, 5)" :key="index" 
-          :style='"position: relative;width: " + (38 * item.percentage / 100) + "px;height: 13px;top: 401px;left: 671px;position: absolute;background-color: #911005;"'>
+        <div style="width: 100%;height: 245px;display: flex;">
+          <div ref="chartTwo" style="width: 100%;"></div>
         </div>
       </div>
-      
-      <div class="clickable-area" @click="handlehistorical"
-        style="position: relative;width: 110px;height: 100px;top: 603px;left: 297px;"></div>
-    </div>
-    <!-- 璁㈠崟鎯呭喌 -->
-    <div style="height: 190px;width: 48%;float: right;">
-      <!-- <div>
-        <el-button style="margin-top: 5px;margin-left: 50px;" id="searchButton" type="info" @click="handlehistorical1">{{ $t('large.historicaltasks1') }}</el-button>
-        <el-button style="margin-top: 5px;margin-left: 20px;" id="searchButton" type="info" @click="handlehistorical2">{{ $t('large.historicaltasks2') }}</el-button>
-        <el-button style="margin-top: 5px;margin-left: 20px;" id="searchButton" type="info" @click="handlehistorical3">{{ $t('large.historicaltasks3') }}</el-button>
-        <el-button style="margin-top: 5px;margin-left: 20px;" id="searchButton" type="info" @click="handlehistorical4">{{ $t('large.historicaltasks4') }}</el-button>
-        <el-button style="margin-top: 5px;margin-left: 20px;" id="searchButton" type="info" @click="handlehistorical5">{{ $t('large.historicaltasks5') }}</el-button>
-        <el-button style="margin-top: 5px;margin-left: 20px;" id="searchButton" type="info" @click="handlehistorical7">{{ $t('large.historicaltasks7') }}</el-button>
-        <el-button style="margin-top: 5px;margin-left: 20px;" id="searchButton" type="info" @click="handlehistorical6">{{ $t('large.historicaltasks6') }}</el-button>
-        <el-button style="margin-top: 5px;margin-left: 20px;" id="searchButton" type="info" @click="handlehistorical8">{{ $t('large.historicaltasks8') }}</el-button>
-      </div> -->
-      <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="primary" style="margin-left: 10px;margin-bottom: 10px;"
-              @click="flowCardDetail(scope.row.orderId)">{{ $t('large.mes') }}</el-button>
-          </template>
-        </el-table-column>
-      </el-table>
+      <div style="width: 50%;">
+        <div class="img-screen" alt="Screen">
+          <!-- 閽㈠寲鍗婇�忔槑鑹插潡 -->
+          <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, index) in boxes2" :key="index" class="box" :style="box.style"></div>
+          </div>
+          <div class="container"
+            style="position: relative;width: 15px;height: 15px;top: 548px;left: 690px;position: absolute;">
+            <div v-for="(box, index) in boxes" :key="index" class="box" :style="box.style"></div>
+          </div>
+          <!-- 閽㈠寲杩愬姩鑹插潡 -->
+          <div class="container"
+            style="position: relative;width: 15px;height: 15px;top: 370px;left: 195px;position: absolute;background-color: red;">
+            <div v-for="(box, index) in boxes3" :key="index" class="box" :style="box.style"></div>
+          </div>
+          <div class="container"
+            style="position: relative;width: 15px;height: 15px;top: 284px;left: 489px;position: absolute;">
+            <div v-for="(box, index) in boxes4" :key="index" class="box" :style="box.style"></div>
+          </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: 190px;width: 100%;float: right;">
+          <el-table height="190" 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="chartThree" style="width: 100%;"></div>
+        </div>
+        <div style="width: 100%;height: 245px;display: flex;">
+          <div ref="chartFour" style="width: 100%;"></div>
+        </div>
+      </div>
     </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;">
@@ -620,8 +1202,8 @@
   <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="110" />
-      <el-table-column prop="glassChild" align="center" :label="$t('large.productname')" min-width="110" />
+      <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" />
@@ -634,14 +1216,8 @@
       <!-- <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-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>
@@ -680,17 +1256,17 @@
 }
 
 .img-screen {
-  max-width: 48%;
-  max-height: 100%;
-  margin-top: 50px;
-  float: left;
+  /* max-width: 48%;
+  max-height: 100%; */
+  /* margin-top: 50px; */
+  /* float: left; */
   position: relative;
   background-image: url('../../assets/screen.png');
-  width: 808px;
-  height: 841px;
+  width: 795px;
+  height: 700px;
   background-size: contain;
   background-repeat: no-repeat;
-  background-position: center;
+  /* background-position: center; */
   /* width: 100%; 
   height: 0; 
   padding-bottom: 50%;  */

--
Gitblit v1.8.0