From b1b0317ff4290ebde1c3555a5d4687e44e05d27f Mon Sep 17 00:00:00 2001 From: shiziyuan9527 Date: Thu, 20 Oct 2022 11:08:33 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E7=B3=BB=E7=BB=9F=E8=AE=BE=E7=BD=AE):=20?= =?UTF-8?q?=E5=AF=BC=E5=85=A5=E7=94=A8=E6=88=B7=E6=8F=90=E7=A4=BA=E6=88=90?= =?UTF-8?q?=E5=8A=9F=E5=AE=9E=E9=99=85=E6=9C=AA=E5=AF=BC=E5=85=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --bug=1018390 --user=李玉号 [ 系统设置]用户-导入用户提示成功实际未导入 https://www.tapd.cn/55049933/s/1269203 --- .../frontend/src/business/system/components/UserImport.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system-setting/frontend/src/business/system/components/UserImport.vue b/system-setting/frontend/src/business/system/components/UserImport.vue index 0e9bcb2c56..ca8484cbbf 100644 --- a/system-setting/frontend/src/business/system/components/UserImport.vue +++ b/system-setting/frontend/src/business/system/components/UserImport.vue @@ -109,7 +109,7 @@ export default { this.isLoading = false; this.fileList.push(file.file); this.loading = userImport(file.file, null, {}).then(response => { - let res = response.data; + let res = response.data.data; if (res.success) { this.$success(this.$t('commons.import_success')); this.dialogVisible = false;