From bd09e5b11ccb425d2b280c96b98dc110b1bb2c59 Mon Sep 17 00:00:00 2001
From: RuoYi <yzz_ivy@163.com>
Date: Mon, 01 Nov 2021 15:02:47 +0800
Subject: [PATCH] 修复字符串无法被反转义问题
---
ruoyi-ui/src/views/system/config/index.vue | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/ruoyi-ui/src/views/system/config/index.vue b/ruoyi-ui/src/views/system/config/index.vue
index c1bb728..efb6961 100644
--- a/ruoyi-ui/src/views/system/config/index.vue
+++ b/ruoyi-ui/src/views/system/config/index.vue
@@ -339,7 +339,7 @@
this.exportLoading = true;
return exportConfig(queryParams);
}).then(response => {
- this.download(response.msg);
+ this.$download.name(response.msg);
this.exportLoading = false;
}).catch(() => {});
},
--
Gitblit v1.9.2