From d0df2f761d92fbf94cc0751460f9e36b7b0b357a Mon Sep 17 00:00:00 2001 From: xiejun <xiejun@vci-tech.com> Date: 星期五, 26 一月 2024 13:08:13 +0800 Subject: [PATCH] erp项目代号集成接口开发 --- Source/UBCS-WEB/src/views/integration/integrationIndex.vue | 11 ++++++++--- 1 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Source/UBCS-WEB/src/views/integration/integrationIndex.vue b/Source/UBCS-WEB/src/views/integration/integrationIndex.vue index d399a31..d175b2d 100644 --- a/Source/UBCS-WEB/src/views/integration/integrationIndex.vue +++ b/Source/UBCS-WEB/src/views/integration/integrationIndex.vue @@ -166,6 +166,7 @@ header: true, rowKey: 'oid', selection: false, + refreshBtn: false, column: [ {label: '闆嗗洟鍒嗙被', prop: 'sourceClassifyName', minWidth: 80}, {label: '鎵�灞炶鍥�', prop: 'viewName', minWidth: 80}, @@ -393,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