From 53a18ea1dceb10fbb3510ea6362341016d2a1867 Mon Sep 17 00:00:00 2001 From: yaojn Date: Wed, 24 Jan 2024 11:49:13 +0800 Subject: [PATCH] =?UTF-8?q?-=20[=E4=BF=AE=E5=A4=8D]=E9=9B=86=E6=88=90?= =?UTF-8?q?=E7=AE=A1=E7=90=86=E9=A1=B5=E9=9D=A2=E5=AF=BC=E5=87=BA=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E8=A1=A5=E5=85=85=E5=8A=A0=E8=BD=BD=E4=B8=AD=E8=BF=87?= =?UTF-8?q?=E6=B8=A1=E6=95=88=E6=9E=9C=EF=BC=8C=E4=BC=98=E5=8C=96=E5=88=87?= =?UTF-8?q?=E6=8D=A2=E4=B8=8D=E5=90=8C=E9=A1=B5=E7=A0=81=E6=95=B0=EF=BC=8C?= =?UTF-8?q?=E6=B2=A1=E6=9C=89=E6=8A=8A=E8=AE=BE=E7=BD=AE=E9=A1=B5=E7=A0=81?= =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../integration/integration-manage.vue | 27 ++++++++++++------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/src/views/pages/framework/integration/integration-manage.vue b/src/views/pages/framework/integration/integration-manage.vue index 79ef9479..ac7fdd0d 100644 --- a/src/views/pages/framework/integration/integration-manage.vue +++ b/src/views/pages/framework/integration/integration-manage.vue @@ -6,22 +6,27 @@ {{ $t('page.config') }} {{ $t('page.import') }} {{ $t('page.export') }} + + +
{ if (res.Status == 'OK') { this.integrationData = res.Return; - this.integrationData.theadList = this.theadList; } }); }, @@ -285,6 +287,13 @@ export default { url: 'api/binary/integration/export', params: { uuidList: this.selectList + }, + changeStatus: status => { + if (status == 'start') { + this.isExportIntegration = true; + } else if (status == 'success' || status == 'error') { + this.isExportIntegration = false; + } } }; this.download(param); -- Gitee