perf: 优化设置

This commit is contained in:
奔跑的面条
2022-08-30 12:13:58 +08:00
parent 96a41f8ebc
commit 199c6abcb1
5 changed files with 97 additions and 9 deletions
+16 -7
View File
@@ -20,14 +20,17 @@
<!-- 系统设置 model -->
<go-system-set v-model:modelShow="modelShow"></go-system-set>
<!-- 关于软件 model -->
<go-system-info v-model:modelShow="modelShowInfo"></go-system-info>
</template>
<script lang="ts" setup>
import { h, ref } from 'vue'
import { NAvatar, NText } from 'naive-ui'
import { renderIcon } from '@/utils'
import { openDoc, logout, renderLang } from '@/utils'
import { logout, renderLang } from '@/utils'
import { GoSystemSet } from '@/components/GoSystemSet/index'
import { GoSystemInfo } from '@/components/GoSystemInfo/index'
import Person from './person.png'
import { icon } from '@/plugins'
@@ -40,6 +43,7 @@ const {
const t = window['$t']
const modelShowInfo = ref(false)
const modelShow = ref(false)
// 是否失败
@@ -77,16 +81,16 @@ const options = ref([
type: 'divider',
key: 'd1'
},
{
label: renderLang('global.contact'),
key: 'contact',
icon: renderIcon(ChatboxEllipsesIcon)
},
{
label: renderLang('global.sys_set'),
key: 'sysSet',
icon: renderIcon(SettingsSharpIcon)
},
{
label: renderLang('global.contact'),
key: 'contact',
icon: renderIcon(ChatboxEllipsesIcon)
},
{
type: 'divider',
key: 'd3'
@@ -108,10 +112,15 @@ const sysSetHandle = () => {
modelShow.value = true
}
// 系统设置
const sysInfoHandle = () => {
modelShowInfo.value = true
}
const handleSelect = (key: string) => {
switch (key) {
case 'contact':
openDoc()
sysInfoHandle()
break
case 'sysSet':
sysSetHandle()