46 lines
996 B
JavaScript
46 lines
996 B
JavaScript
module.exports = {
|
|
base: '/',
|
|
lang: 'zh-CN',
|
|
title: 'WGINK',
|
|
description: '',
|
|
themeConfig: {
|
|
sidebar: [
|
|
{
|
|
title: '首页',
|
|
path: '/',
|
|
sidebarDepth: 1,
|
|
children: []
|
|
},
|
|
{
|
|
title: '业务',
|
|
collapsable: true,
|
|
sidebarDepth: 5,
|
|
children: [
|
|
{
|
|
title: 'OA',
|
|
collapsable: true,
|
|
sidebarDepth: 5,
|
|
children: [
|
|
'/service/oa/backend.md',
|
|
'/service/oa/app.md',
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: '代码模板',
|
|
collapsable: true,
|
|
sidebarDepth: 5,
|
|
children: [
|
|
'/code-template/area-select',
|
|
'/code-template/excel-upload',
|
|
'/code-template/layui-input-tree',
|
|
'/code-template/select',
|
|
'/code-template/list-select',
|
|
'/code-template/layui-util',
|
|
'/code-template/user-select',
|
|
],
|
|
}
|
|
]
|
|
}
|
|
} |