From b86d97b09d1aca57291004c1a2bc014f90702918 Mon Sep 17 00:00:00 2001 From: ludc Date: 星期五, 26 一月 2024 16:14:39 +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