From 26315f3424a63c049b5ccc1e7fe5ac98bff289f7 Mon Sep 17 00:00:00 2001 From: MTrun <1262327911@qq.com> Date: Tue, 1 Mar 2022 15:39:13 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=85=A8=E5=B1=80=E8=AE=BE=E7=BD=AE?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=85=B3=E9=97=AD=E6=8C=89=E9=92=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/SystemSet/index.vue | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/src/components/SystemSet/index.vue b/src/components/SystemSet/index.vue index 49d53c2c..8f8b412a 100644 --- a/src/components/SystemSet/index.vue +++ b/src/components/SystemSet/index.vue @@ -2,7 +2,12 @@ @@ -42,7 +47,7 @@ import { useSettingStore } from '@/store/modules/settingStore/settingStore' import { SettingStoreEnums } from '@/store/modules/settingStore/settingStore.d' import { icon } from '@/plugins' -const { HelpOutlineIcon } = icon.ionicons5 +const { HelpOutlineIcon, CloseIcon } = icon.ionicons5 const emit = defineEmits(['update:modelShow']) @@ -58,14 +63,14 @@ const list = reactive([ value: settingStore.getAsideAllCollapsed, type: 'switch', name: '菜单折叠', - desc: '首页菜单折叠时隐藏全部', + desc: '首页菜单折叠时隐藏全部' }, { key: SettingStoreEnums.HIDE_PACKAGE_ONE_CATEGORY, value: settingStore.getHidePackageOneCategory, type: 'switch', name: '隐藏分类', - desc: '工作空间表单分类只有单项时隐藏', + desc: '工作空间表单分类只有单项时隐藏' }, { key: SettingStoreEnums.CHANGE_LANG_RELOAD, @@ -74,7 +79,7 @@ const list = reactive([ name: '切换语言', desc: '切换语言重新加载页面', tip: '若遇到部分区域语言切换失败,则开启' - }, + } ]) const closeHandle = () => { @@ -87,7 +92,7 @@ const handleChange = (e: Event, item: ListType) => {