From 21aa90990b7cf75e698de467253b356f4455b391 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BE=99=E8=BF=90=E6=A8=A1?= <1724894114@qq.com> Date: Thu, 18 Jul 2024 16:34:10 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=AF=BC=E5=87=BA=E9=87=8D?= =?UTF-8?q?=E5=A4=8D=E5=AF=BC=E5=87=BA=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/setting/company/index.vue | 1 + src/views/setting/log/index.vue | 1 + src/views/setting/user/index.vue | 7 ++++++- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/views/setting/company/index.vue b/src/views/setting/company/index.vue index 9835667..872269b 100644 --- a/src/views/setting/company/index.vue +++ b/src/views/setting/company/index.vue @@ -251,6 +251,7 @@ export default { } }, async exportData() { + if(this.exportShow) return const res = await this.$API.system.company.export.post(this.params); if(res.code == 200){ this.$message.success('开始导出'); diff --git a/src/views/setting/log/index.vue b/src/views/setting/log/index.vue index be90a37..36ef14f 100644 --- a/src/views/setting/log/index.vue +++ b/src/views/setting/log/index.vue @@ -78,6 +78,7 @@ } }, async exportData() { + if(this.exportShow) return const res = await this.$API.system.log.export.post(this.params); if(res.code == 200){ this.$message.success('开始导出'); diff --git a/src/views/setting/user/index.vue b/src/views/setting/user/index.vue index d1a80f7..0a9ed27 100644 --- a/src/views/setting/user/index.vue +++ b/src/views/setting/user/index.vue @@ -42,7 +42,11 @@ - + + + {{scope.row.name.substring(0, 1)}} + + @@ -312,6 +316,7 @@ } }, async exportData() { + if(this.exportShow) return const res = await this.$API.system.user.export.post(); if(res.code == 200){ this.$message.success('开始导出');