From d1d276eb9bc247dba1a11542fa38a656703e15f1 Mon Sep 17 00:00:00 2001
From: 田源 <lastanimals@163.com>
Date: 星期五, 08 十二月 2023 10:51:34 +0800
Subject: [PATCH] 编码规则日期码段校验

---
 Source/UBCS-WEB/src/components/Master/MasterTree.vue |   10 ++++------
 1 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/Source/UBCS-WEB/src/components/Master/MasterTree.vue b/Source/UBCS-WEB/src/components/Master/MasterTree.vue
index 978e482..4957ea4 100644
--- a/Source/UBCS-WEB/src/components/Master/MasterTree.vue
+++ b/Source/UBCS-WEB/src/components/Master/MasterTree.vue
@@ -31,10 +31,6 @@
       type: String,
       default: ''
     },
-    isLoading:{
-      type: Boolean,
-      default:false
-    }
   },
   data() {
     return {
@@ -151,14 +147,16 @@
     },
     //琛ㄦ牸鍒锋柊
     TableRend() {
-      this.isLoading = true;
+      this.loading = true;
+      this.$emit('loading', this.loading)
       TableData({
         templateOid: this.templateOids,
         codeClassifyOid: this.nodeClickList.oid,
         page: this.currentPage,
         limit: this.pageSize,
       }).then(res => {
-        this.isLoading = false;
+        this.loading = false;
+        this.$emit('loading', this.loading)
         this.tableDataArray = res.data.data;
         this.$emit('tableDataArray', this.tableDataArray)
         this.$emit('total', res.data.total)

--
Gitblit v1.9.3