From 46c673f0bf4a22ae108e90cfcf1bdeb4f0b6a45c Mon Sep 17 00:00:00 2001
From: wangting <675591594@qq.com>
Date: 星期二, 07 五月 2024 17:48:19 +0800
Subject: [PATCH] 添加action,数据联动

---
 Source/ProjectWeb/src/views/base/UIContentViewerInDialog.vue |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/Source/ProjectWeb/src/views/base/UIContentViewerInDialog.vue b/Source/ProjectWeb/src/views/base/UIContentViewerInDialog.vue
index 0bd27af..2b4043b 100644
--- a/Source/ProjectWeb/src/views/base/UIContentViewerInDialog.vue
+++ b/Source/ProjectWeb/src/views/base/UIContentViewerInDialog.vue
@@ -143,22 +143,22 @@
       data:{
         northAreaInDialog:{
           type:'',
-          btmType:'',
+          DefineVO:null,
           data:null
         },
         westAreaInDialog:{
           type:'',
-          btmType:'',
+          DefineVO:null,
           data:null
         },
         centerAreaInDialog:{
           type:'',
-          btmType:'',
+          DefineVO:null,
           data:null
         },
         southAreaInDialog:{
           type:'',
-          btmType:'',
+          DefineVO:null,
           data:null
         }
       },
@@ -202,7 +202,7 @@
       }
     },
     setData(value) {
-      this.data[value.area].btmType = value.btmType;
+      this.data[value.area].DefineVO = value.currentDefineVO;
       this.data[value.area].data = value.data;
       this.data[value.area].type = value.type;
     },

--
Gitblit v1.9.3