mirror of
https://gitee.com/dromara/go-view.git
synced 2026-04-23 00:00:12 +08:00
fix: 设置菜单折叠宽度
This commit is contained in:
Vendored
+8
@@ -0,0 +1,8 @@
|
||||
export type ListType = {
|
||||
key: string
|
||||
type: string
|
||||
name: string
|
||||
desc: string
|
||||
value: any
|
||||
tip?: string
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
import SystemSet from './index.vue';
|
||||
|
||||
export { SystemSet };
|
||||
@@ -0,0 +1,99 @@
|
||||
<template>
|
||||
<n-modal v-model:show="modelShow" @afterLeave="closeHandle">
|
||||
<n-list bordered class="go-system-setting">
|
||||
<template #header> 系统设置 </template>
|
||||
|
||||
<n-list-item v-for="item in list" :key="item.name">
|
||||
<n-space :size="40">
|
||||
<n-space>
|
||||
<n-text class="item-left">{{ item.name }}</n-text>
|
||||
<template v-if="item.type === 'switch'">
|
||||
<n-switch
|
||||
v-model:value="item.value"
|
||||
size="small"
|
||||
@update:value="handleChange($event, item)"
|
||||
/>
|
||||
</template>
|
||||
</n-space>
|
||||
<n-space>
|
||||
<n-text class="item-right">{{ item.desc }}</n-text>
|
||||
<n-tooltip v-if="item.tip" trigger="hover">
|
||||
<template #trigger>
|
||||
<n-icon size="21">
|
||||
<HelpOutlineIcon />
|
||||
</n-icon>
|
||||
</template>
|
||||
<span>
|
||||
{{ item.tip }}
|
||||
</span>
|
||||
</n-tooltip>
|
||||
</n-space>
|
||||
</n-space>
|
||||
</n-list-item>
|
||||
<n-list-item></n-list-item>
|
||||
</n-list>
|
||||
</n-modal>
|
||||
</template>
|
||||
|
||||
<script script lang="ts" setup>
|
||||
import { reactive } from 'vue'
|
||||
import { ListType } from './index.d'
|
||||
import { useLangStore } from '@/store/modules/langStore/langStore'
|
||||
import { useDesignStore } from '@/store/modules/designStore/designStore'
|
||||
import { icon } from '@/plugins'
|
||||
|
||||
const { HelpOutlineIcon } = icon.ionicons5
|
||||
|
||||
const emit = defineEmits(['update:modelShow'])
|
||||
|
||||
defineProps({
|
||||
modelShow: Boolean
|
||||
})
|
||||
|
||||
const langStore = useLangStore()
|
||||
const designStore = useDesignStore()
|
||||
|
||||
const list = reactive<ListType[]>([
|
||||
{
|
||||
key: 'lang',
|
||||
value: langStore.getReload,
|
||||
type: 'switch',
|
||||
name: '切换语言',
|
||||
desc: '切换语言是否重新加载页面',
|
||||
tip: '不重载有较低可能性导致部分区域语言切换失败'
|
||||
},
|
||||
{
|
||||
key: 'aollapsed',
|
||||
value: designStore.asideAllCollapsed,
|
||||
type: 'switch',
|
||||
name: '菜单折叠',
|
||||
desc: '左侧菜单是否全部折叠',
|
||||
}
|
||||
])
|
||||
|
||||
const closeHandle = () => {
|
||||
emit('update:modelShow', false)
|
||||
}
|
||||
|
||||
const handleChange = (e: Event, item: ListType) => {
|
||||
switch (item.key) {
|
||||
case 'lang':
|
||||
langStore.changeReload(item.value)
|
||||
break
|
||||
case 'aollapsed':
|
||||
designStore.changeAsideAllCollapsed()
|
||||
break
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@include go('system-setting') {
|
||||
@extend .go-background-filter;
|
||||
min-width: 100px;
|
||||
max-width: 60vw;
|
||||
.item-left {
|
||||
width: 200px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user