From 3e17faf676860e7b65079bed632b552bc4be2fc1 Mon Sep 17 00:00:00 2001
From: 田源 <lastanimals@163.com>
Date: 星期三, 24 一月 2024 15:29:14 +0800
Subject: [PATCH] 主题库定义表格调整

---
 Source/UBCS-WEB/src/views/integration/integrationIndex.vue |   12 ++++++++----
 1 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/Source/UBCS-WEB/src/views/integration/integrationIndex.vue b/Source/UBCS-WEB/src/views/integration/integrationIndex.vue
index 2401ed9..d175b2d 100644
--- a/Source/UBCS-WEB/src/views/integration/integrationIndex.vue
+++ b/Source/UBCS-WEB/src/views/integration/integrationIndex.vue
@@ -166,7 +166,7 @@
         header: true,
         rowKey: 'oid',
         selection: false,
-        refreshBtn:false,
+        refreshBtn: false,
         column: [
           {label: '闆嗗洟鍒嗙被', prop: 'sourceClassifyName', minWidth: 80},
           {label: '鎵�灞炶鍥�', prop: 'viewName', minWidth: 80},
@@ -394,9 +394,13 @@
           message: "璇烽�夋嫨涓�鏉¢泦鍥㈠垎绫�"
         });
       } else {
-        const response = await syncClassifyModel(param)
-        if (response.status === 200) {
-          console.log(response)
+        try {
+          const response = await syncClassifyModel(param);
+          if (response.status === 200) {
+            this.$message.success(response.data.msg)
+          }
+        } catch (error) {
+          console.error(error);
         }
       }
     },

--
Gitblit v1.9.3