From 83e67ff491fd9a789cfecd5b271a83602a134469 Mon Sep 17 00:00:00 2001
From: wangting <675591594@qq.com>
Date: 星期二, 19 十一月 2024 11:14:55 +0800
Subject: [PATCH] 调整tab浏览的传参

---
 Source/plt-web/plt-web-ui/src/components/dynamic-components/dynamic-table.vue |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/Source/plt-web/plt-web-ui/src/components/dynamic-components/dynamic-table.vue b/Source/plt-web/plt-web-ui/src/components/dynamic-components/dynamic-table.vue
index 8a7ccc6..9f80fae 100644
--- a/Source/plt-web/plt-web-ui/src/components/dynamic-components/dynamic-table.vue
+++ b/Source/plt-web/plt-web-ui/src/components/dynamic-components/dynamic-table.vue
@@ -202,7 +202,6 @@
     },
     isShow: {
       handler(newval) {
-        debugger;
         if (newval && this.$el.clientHeight > 50) {
           this.parentHeight = this.$el.clientHeight - this.$children[0].$children[1].$children[0].$el.clientHeight - this.$children[0].$children[2].$el.clientHeight - 5;
         }
@@ -227,10 +226,10 @@
     },
     'sourceData':{
       handler(newval) {
-        if(newval) {
+        if(newval && Object.keys(newval).length>0) {
           this.sourceDataMapParams=this.sourceDataMap();
           this.getParams();
-          // this.handleRefresh();
+          this.handleRefresh();
         }
       },
       deep: true,

--
Gitblit v1.9.3