51 lines
1.3 KiB
JavaScript
51 lines
1.3 KiB
JavaScript
/*
|
|
* @Descripttion:
|
|
* @version:
|
|
* @Date: 2021-04-20 11:06:21
|
|
* @LastEditors: huzhushan@126.com
|
|
* @LastEditTime: 2022-09-24 19:27:21
|
|
* @Author: huzhushan@126.com
|
|
* @HomePage: https://huzhushan.gitee.io/vue3-element-admin
|
|
* @Github: https://github.com/huzhushan/vue3-element-admin
|
|
* @Donate: https://huzhushan.gitee.io/vue3-element-admin/donate/
|
|
*/
|
|
// home.js
|
|
const Layout = () => import('@/layout/index.vue')
|
|
const jg_knowledge_files_add = () =>
|
|
import('@/views/jg_gcb/jg_knowledge_files_add.vue')
|
|
const jg_model_file_add = () => import('@/views/jg_gcb/jg_model_file_add.vue')
|
|
|
|
export default [
|
|
{
|
|
path: '/jg_gcb',
|
|
component: Layout,
|
|
name: 'jg_gcb',
|
|
meta: {
|
|
title: '结构工程部-工具集合',
|
|
},
|
|
icon: 'Setting',
|
|
children: [
|
|
{
|
|
path: '/jg_knowledge_files_add',
|
|
name: 'jg_knowledge_files_add',
|
|
component: jg_knowledge_files_add,
|
|
meta: {
|
|
title: 'JG-知识库文件新增管理',
|
|
affix: false,
|
|
},
|
|
icon: 'User',
|
|
},
|
|
{
|
|
path: '/jg_model_file_add',
|
|
name: 'jg_model_file_add',
|
|
component: jg_model_file_add,
|
|
meta: {
|
|
title: 'JG-模型文件新增',
|
|
affix: false,
|
|
},
|
|
icon: '',
|
|
},
|
|
],
|
|
},
|
|
]
|