Commit 938f107d by qlintonger xeno

Merge remote-tracking branch 'origin/master'

parents 2fefca61 2501c976
...@@ -21,19 +21,19 @@ export default { ...@@ -21,19 +21,19 @@ export default {
path: '/events', path: '/events',
component: () => import(/* webpackChunkName: "Events" */ '@/views/remote/events/index.vue'), component: () => import(/* webpackChunkName: "Events" */ '@/views/remote/events/index.vue'),
name: 'Events', name: 'Events',
meta: { title: '进行中的事件', locale: 'menu.remote.events', hideInMenu: false } meta: { title: '进行中的事件', locale: 'menu.remote.events', hideInMenu: true }
}, },
{ {
path: '/experience', path: '/experience',
component: () => import(/* webpackChunkName: "Experience" */ '@/views/remote/experience/index.vue'), component: () => import(/* webpackChunkName: "Experience" */ '@/views/remote/experience/index.vue'),
name: 'Experience', name: 'Experience',
meta: { title: '经验库', locale: 'menu.remote.experience', hideInMenu: false } meta: { title: '经验库', locale: 'menu.remote.experience', hideInMenu: true }
}, },
{ {
path: '/resource', path: '/resource',
component: () => import(/* webpackChunkName: "Resource" */ '@/views/remote/resource/index.vue'), component: () => import(/* webpackChunkName: "Resource" */ '@/views/remote/resource/index.vue'),
name: 'Resource', name: 'Resource',
meta: { title: '资源库', locale: 'menu.remote.resource', hideInMenu: false } meta: { title: '资源库', locale: 'menu.remote.resource', hideInMenu: true }
} }
] ]
} }
...@@ -43,7 +43,7 @@ interface Props { ...@@ -43,7 +43,7 @@ interface Props {
showGroup?: boolean showGroup?: boolean
} }
const ps = withDefaults(defineProps<Props>(), { const ps = withDefaults(defineProps<Props>(), {
showGroup: true showGroup: false
}) })
//是否显示群组列表 //是否显示群组列表
const getShowGroup = computed(() => { const getShowGroup = computed(() => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment