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) => {