From 2c08bfb96d6523dfbf5ae543e94495c151aadbf1 Mon Sep 17 00:00:00 2001 From: ZengTao <2773468879@qq.com> Date: 星期五, 14 三月 2025 17:53:18 +0800 Subject: [PATCH] 大屏嵌入历史任务,生产统计显示 --- UI-Project/src/views/largescreendisplay/screendisplay.vue | 483 ++++++++++++++++++++++++++++++++++++---------------- 1 files changed, 331 insertions(+), 152 deletions(-) diff --git a/UI-Project/src/views/largescreendisplay/screendisplay.vue b/UI-Project/src/views/largescreendisplay/screendisplay.vue index 2ce830e..26cb371 100644 --- a/UI-Project/src/views/largescreendisplay/screendisplay.vue +++ b/UI-Project/src/views/largescreendisplay/screendisplay.vue @@ -31,11 +31,11 @@ edgTwoTasks.value = data.edgTwoTasks[0]; engineeringOne.value = data.engineeringOne[0]; engineeringTwo.value = data.engineeringTwo[0]; - if(numBoxes.value != edgOneTasks.value.length){ + if (numBoxes.value != edgOneTasks.value.length) { numBoxes.value = edgOneTasks.value.length; boxStart(); } - if(numBoxes2.value != edgTwoTasks.value.length){ + if (numBoxes2.value != edgTwoTasks.value.length) { numBoxes2.value = edgTwoTasks.value.length; boxStart2(); } @@ -48,13 +48,13 @@ const handleMessage2 = (data) => { temperingTaskType.value = data.temperingTaskType[0]; temperingGlassInfoList.value = data.temperingGlassInfoList[0]; - if(numBoxes3.value !=temperingTaskType.value){ - numBoxes3.value =temperingTaskType.value; + if (numBoxes3.value != temperingTaskType.value) { + numBoxes3.value = temperingTaskType.value; boxStart3(); } temperingGlassInfoOutList.value = data.temperingGlassInfoOutList[0]; - if(numBoxes4.value !=temperingGlassInfoOutList.value){ - numBoxes4.value =temperingGlassInfoOutList.value; + if (numBoxes4.value != temperingGlassInfoOutList.value) { + numBoxes4.value = temperingGlassInfoOutList.value; boxStart3(); } }; @@ -70,6 +70,13 @@ const handleMessage4 = (data) => { hollowBigStorageCageUsage.value = data.hollowBigStorageCageUsage[0]; }; +let socket5 = null; +const productionVO = ref([]) +const socketUrl5 = `ws://${WebSocketHost}:${host}/api/cacheGlass/api/talk/largenScreenProduction`; +const handleMessage5 = (data) => { + productionVO.value = data.productionVO; +}; + const tableDatad = ref([]); const patternUsage = async () => { try { @@ -85,7 +92,45 @@ console.error(error); } } -const ptnusage=ref({ + +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: '', @@ -108,6 +153,7 @@ 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'); // 褰撳墠鏃堕棿鐨勫墠涓�澶╋紝绮剧‘鍒板垎閽� // 璁剧疆鏃堕棿鑼冨洿涓� [寮�濮嬫椂闂�, 缁撴潫鏃堕棿] @@ -123,6 +169,7 @@ closeWebSocket(socket2); closeWebSocket(socket3); closeWebSocket(socket4); + closeWebSocket(socket5); } }); onBeforeUnmount(() => { @@ -130,7 +177,7 @@ closeWebSocket(); }); const numBoxes = ref(5); -const numBoxes2 = ref(5); +const numBoxes2 = ref(5); const numBoxes3 = ref(5); const numBoxes4 = ref(1); const speed = 0.1; @@ -151,74 +198,74 @@ const boxStart = () => { boxes.value = []; for (let i = 0; i < numBoxes.value; i++) { - boxes.value.push({ - x: 0, - y: 0, // 鍒濆浣嶇疆鍦ㄥ簳閮� - direction: 'up', - delay: i * delayFrames, - style: { - width: '15px', - height: '15px', - backgroundColor: i % 2 === 0 ? '#911005' : 'blue', - position: 'absolute', - transform: `translate(0px, 0px)` - } - }); -} + boxes.value.push({ + x: 0, + y: 0, // 鍒濆浣嶇疆鍦ㄥ簳閮� + direction: 'up', + delay: i * delayFrames, + style: { + width: '15px', + height: '15px', + backgroundColor: i % 2 === 0 ? '#911005' : '#911005', + position: 'absolute', + transform: `translate(0px, 0px)` + } + }); + } } const boxStart2 = () => { boxes2.value = []; for (let i = 0; i < numBoxes2.value; i++) { - boxes2.value.push({ - x: 0, - y: 0, // 鍒濆浣嶇疆鍦ㄥ簳閮� - direction: 'up', - delay: i * delayFrames, - style: { - width: '15px', - height: '15px', - backgroundColor: i % 2 === 0 ? '#911005' : 'blue', - position: 'absolute', - transform: `translate(0px, 0px)` - } - }); -} + boxes2.value.push({ + x: 0, + y: 0, // 鍒濆浣嶇疆鍦ㄥ簳閮� + direction: 'up', + delay: i * delayFrames, + style: { + width: '15px', + height: '15px', + backgroundColor: i % 2 === 0 ? '#911005' : 'blue', + position: 'absolute', + transform: `translate(0px, 0px)` + } + }); + } } const boxStart3 = () => { boxes3.value = []; for (let i = 0; i < numBoxes3.value; i++) { - boxes3.value.push({ - x: 0, - y: 0, // 鍒濆浣嶇疆鍦ㄥ簳閮� - direction: 'left', - delay: i * delayFrames, - style: { - width: '15px', - height: '15px', - backgroundColor: i % 2 === 0 ? '#911005' : 'blue', - position: 'absolute', - transform: `translate(0px, 0px)` - } - }); -} + boxes3.value.push({ + x: 0, + y: 0, // 鍒濆浣嶇疆鍦ㄥ簳閮� + direction: 'left', + delay: i * delayFrames, + style: { + width: '15px', + height: '15px', + backgroundColor: i % 2 === 0 ? '#911005' : 'blue', + position: 'absolute', + transform: `translate(0px, 0px)` + } + }); + } } const boxStart4 = () => { boxes4.value = []; for (let i = 0; i < numBoxes4.value; i++) { - boxes4.value.push({ - x: 0, - y: 0, // 鍒濆浣嶇疆鍦ㄥ簳閮� - direction: 'right', - delay: i * delayFrames, - style: { - width: '15px', - height: '15px', - backgroundColor: i % 2 === 0 ? '#911005' : 'blue', - position: 'absolute', - transform: `translate(0px, 0px)` - } - }); -} + boxes4.value.push({ + x: 0, + y: 0, // 鍒濆浣嶇疆鍦ㄥ簳閮� + direction: 'right', + delay: i * delayFrames, + style: { + width: '15px', + height: '15px', + backgroundColor: i % 2 === 0 ? '#911005' : 'blue', + position: 'absolute', + transform: `translate(0px, 0px)` + } + }); + } } const animate = () => { boxes.value.forEach((box) => { @@ -285,7 +332,7 @@ } else if (box.direction === 'left') { box.x -= speed; if (box.x <= -maxX3) { - + box.direction = 'up'; } } @@ -306,7 +353,7 @@ box.x = 0; box.y = 0; // 閲嶆柊鍥炲埌搴曢儴 } - } + } box.style = { ...box.style, transform: `translate(${box.x}px, ${box.y}px)` @@ -314,67 +361,216 @@ }); requestAnimationFrame(animate); }; +//宓屽叆鍘嗗彶浠诲姟 +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}/#/StockBasicData/stockhistory`;; +}; +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`; +}; +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/hellowquiptwohistory`; +}; +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}/#/largescreendisplay/statistics`; +}; </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> + <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> + <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> + <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> + <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> + <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> + <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> + <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> + <!-- 鐢熶骇缁熻 --> + <div style="height: 190px;width: 43%;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="40" /> + <el-table-column prop="countIn" align="center" :label="$t('large.countIn')" min-width="40" /> + <el-table-column prop="totalAreaIn" align="center" :label="$t('large.totalAreaIn')" min-width="40" /> + <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="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 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> + <div v-for="(item, index) in rawGlassStorageDetailList.slice(0, 7)" :key="index" + :style='"width: " + (item.remainQuantity / 5) + "px;height: 5px;background-color: #911005;"'></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 v-for="(item, index) in rawGlassStorageDetailList.slice(8, 17)" :key="index" + :style='"width: " + (item.remainQuantity / 5) + "px;height: 5px;background-color: #911005;"'></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 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 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 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 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;border: 1px solid #000;position: absolute;"> - <div v-for="(box, index) in boxes" :key="index" class="box" :style="box.style"></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;border: 1px solid #000;position: absolute;"> - <div v-for="(box, index) in boxes2" :key="index" class="box" :style="box.style"></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;border: 1px solid #000;position: absolute;"> + <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;border: 1px solid #000;position: absolute;"> + <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 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> + <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> </div> + <div class="clickable-area" @click="handlehistorical" - style="position: relative;width: 110px;height: 140px;top: 603px;left: 297px;"></div> + 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" /> @@ -384,47 +580,26 @@ <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.warehousing')" min-width="50" prop="warehousing"> + <el-table-column align="center" :label="$t('large.operate')" min-width="50"> <template #default="scope"> - <el-tag :type="getStatusType(scope.row.warehousing)"> - {{ getStatusText(scope.row.warehousing) }} - </el-tag> + <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-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-column> </el-table> </div> </div> - <!-- 鐐瑰嚮涓嬫柟寮圭獥 --> + <!-- 鍘熺墖浣跨敤璇︽儏 --> <el-dialog v-model="blindb" top="10vh" width="90%"> <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-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-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> @@ -441,36 +616,33 @@ <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="orderId" fixed align="center" :label="$t('large.orderId1')" 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="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="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-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> - <template #footer> - <div id="dialog-footer" style="text-align: center;"> - <el-button @click="blinda = false">{{ $t('large.close') }}</el-button> - </div> - </template> </el-dialog> </template> <style scoped> @@ -480,16 +652,19 @@ 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 { text-align: center; align-items: center; @@ -499,9 +674,11 @@ background-color: #337ecc; margin-left: 28%; } + #awatch { height: 460px; } + .img-screen { max-width: 48%; max-height: 100%; @@ -518,6 +695,7 @@ height: 0; padding-bottom: 50%; */ } + .clickable-area { cursor: pointer; /* 鎸囩ず杩欐槸涓�涓彲鐐瑰嚮鐨勫尯鍩� */ @@ -526,6 +704,7 @@ line-height: 95px; /* 濡傛灉闇�瑕侊紝浣挎枃鏈瀭鐩村眳涓� */ } + /* .awatch{ height: 460px; /* max-width: 100%; */ -- Gitblit v1.8.0