From 81e1bdcf2953c8f91b343c7e59fc40f5a016594d Mon Sep 17 00:00:00 2001
From: zhaowei <zhaowei>
Date: 星期五, 14 三月 2025 11:09:56 +0800
Subject: [PATCH] 删除idea配置文件

---
 src/views/mdc/base/modules/WorkshopSignage/DeviceAlarmInfo.vue |   11 ++++++++---
 1 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/src/views/mdc/base/modules/WorkshopSignage/DeviceAlarmInfo.vue b/src/views/mdc/base/modules/WorkshopSignage/DeviceAlarmInfo.vue
index a3cfc86..5a79cf0 100644
--- a/src/views/mdc/base/modules/WorkshopSignage/DeviceAlarmInfo.vue
+++ b/src/views/mdc/base/modules/WorkshopSignage/DeviceAlarmInfo.vue
@@ -8,19 +8,24 @@
   export default {
     name: 'DeviceAlarmInfo',
     components: {},
+    props: {
+      currentProductionId: {
+        type: String
+      }
+    },
     data() {
       return {
         config: {}
       }
     },
-    mounted() {
+    created() {
+      if (!this.currentProductionId) return
       this.getDeviceAlarmInfoByApi()
     },
     methods: {
       getDeviceAlarmInfoByApi() {
         const that = this
-        that.initChart()
-        signageApi.getWorkshopAlarmInfoApi()
+        signageApi.getWorkshopAlarmInfoApi(that.currentProductionId)
           .then(res => {
             if (!res.success) return
             that.initChart(res.result)

--
Gitblit v1.9.3