From 876e940038b2d4f8cfd88ad4e81af5a1d7eb62c0 Mon Sep 17 00:00:00 2001 From: zhangdi <15053473693@163.com> Date: Fri, 6 Feb 2026 20:17:42 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=9F=E4=BA=A7=E7=AE=A1=E7=90=86=E7=9B=91?= =?UTF-8?q?=E6=8E=A7=E8=81=94=E8=B0=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../productionMonitoring.vue | 11 ++- src/views/workRate/index.vue | 90 ++++++++++++++++++- 2 files changed, 95 insertions(+), 6 deletions(-) diff --git a/src/views/productionManagement/productionMonitoring.vue b/src/views/productionManagement/productionMonitoring.vue index a53d342..38ba8b1 100644 --- a/src/views/productionManagement/productionMonitoring.vue +++ b/src/views/productionManagement/productionMonitoring.vue @@ -122,6 +122,9 @@ :itemData="itemData" @closeDialog="closeDialog" > + + + @@ -132,7 +135,7 @@ import batchesDialog from './components/batchesDialog.vue'; import closedDialog from './components/closedDialog.vue'; import abnormalDialog from './components/abnormalDialog.vue'; import productionMonitoringDialog from './components/productionMonitoringDialog.vue'; - +import workRate from "@/views/workRate/index.vue"; import { getList,turnType } from '@/api/productionManagement/productionMonitoring'; export default { @@ -143,9 +146,11 @@ export default { closedDialog, abnormalDialog, productionMonitoringDialog, + workRate, }, data() { return { + isWorkRateOpen: true, isPriorityOpen: false, showAbnormal: false, showOemDialog: false, @@ -645,7 +650,7 @@ export default { // 生产监控 clickProduction(row) { this.rowItem = row; - this.monitorDialog = true; + this.isWorkRateOpen = true; }, // 打印标签 handlePrintTags() { @@ -689,7 +694,7 @@ export default { // 关闭弹窗 closeDialog(type) { this.showOemDialog = false; - this.monitorDialog = false; + this.isWorkRateOpen = false; this.showBatches = false; this.showClose = false; this.showAbnormal = false; diff --git a/src/views/workRate/index.vue b/src/views/workRate/index.vue index 332cea4..6cc219e 100644 --- a/src/views/workRate/index.vue +++ b/src/views/workRate/index.vue @@ -1,11 +1,90 @@