OpenAuth.Net/docs/.vuepress/config.js

158 lines
4.5 KiB
JavaScript
Raw Normal View History

/*
* @Author: yubaolee <yubaolee@163.com> | ahfu~ <954478625@qq.com>
* @Date: 2023-08-12 10:48:24
2025-03-31 10:43:31 +08:00
* @LastEditTime: 2025-03-31 10:24:25
* @Description:
* @
* @Copyright (c) 2023 by yubaolee | ahfu~ , All Rights Reserved.
*/
2024-06-19 20:32:23 +08:00
2023-08-11 17:47:02 +08:00
module.exports = {
title: 'OpenAuth.Net',
description: '最好用的.net权限工作流框架,最好用的.net vue前后分离框架',
head: [
['link', {
rel: 'icon',
href: '/logo.png'
2024-06-19 20:49:27 +08:00
}],['script',{},
`var _hmt = _hmt || [];
(function () {
var hm = document.createElement('script')
hm.src = 'https://hm.baidu.com/hm.js?93a7b9a145222f9b7109d643a0c58f8d'
var s = document.getElementsByTagName('script')[0]
s.parentNode.insertBefore(hm, s)
})();
`]
2023-08-11 17:47:02 +08:00
],
extendMarkdown: (md) => {
md.set({
breaks: true
})
md.use(require('markdown-it-plantuml'))
},
themeConfig: {
lastUpdated: '最后更新时间', // string | boolean
nav: [{
text: '首页',
link: 'http://openauth.net.cn/',
target: '_blank'
},
{
text: '在线文档',
ariaLabel: 'Proj Menu',
items: [{
2023-10-05 10:13:09 +08:00
text: 'OpenAuth.Net开源后端',
2023-08-11 17:47:02 +08:00
link: '/core/',
target: '_blank'
},
{
2023-10-05 10:13:09 +08:00
text: 'OpenAuth.Pro(企业vue2/vue3)',
2023-08-11 17:47:02 +08:00
link: '/pro/',
target: '_blank'
2023-10-05 10:13:09 +08:00
}
2023-08-11 17:47:02 +08:00
],
},
{
text: '项目地址',
ariaLabel: 'Proj Menu',
items: [{
text: 'gitee',
link: 'https://gitee.com/dotnetchina/OpenAuth.Net',
2023-08-11 17:47:02 +08:00
target: '_blank'
},
{
text: 'github',
link: 'https://github.com/yubaolee/OpenAuth.Core',
target: '_blank'
},
],
},
{
text: '战略合作',
ariaLabel: 'Proj Menu',
items: [{
text: 'Variant Form - 可视化低代码表单',
link: 'https://www.vform666.com/',
target: '_blank'
2023-08-27 22:39:58 +08:00
},
{
text: 'SqlSugar',
link: 'https://www.donet5.com/',
target: '_blank'
2023-08-11 17:47:02 +08:00
}
],
},
],
sidebar: {
'/core/': [
['', '项目介绍'],
{
title: '后端开发', // 必要的
path: 'start', // 可选的, 标题的跳转链接,应为绝对路径且必须存在
sidebarDepth: 1, // 可选的, 默认值是 1
collapsable: false,
2025-03-31 10:43:31 +08:00
children: ['start', 'specialist', 'deploy', 'deployapi', 'devnew', 'multidbs', 'multitenant', 'unitwork','sqlsugar', 'entity','dynamicapi', 'datavalidation', 'log', 'identity', 'job', 'cache', 'unittest','changesdk'],
2023-08-11 17:47:02 +08:00
},
{
title: '权限控制', // 必要的
sidebarDepth: 1, // 可选的, 默认值是 1
collapsable: false,
2023-09-10 19:39:13 +08:00
children: ['moduleauth','apiauth', 'logininfo', 'dataprivilege', 'datapropertyrule'],
2023-08-11 17:47:02 +08:00
},
'form',
{
title: '工作流', // 必要的
sidebarDepth: 1, // 可选的, 默认值是 1
collapsable: false,
children: ['flowinstance', 'flowinstancestatus', 'thirdparty'],
},
{
title: '前端开发', // 必要的
sidebarDepth: 1, // 可选的, 默认值是 1
collapsable: false,
children: ['wwwarchitect'],
},
{
title: '更新日志', // 必要的
sidebarDepth: 1, // 可选的, 默认值是 1
collapsable: false,
children: ['changelog', 'routineupdate'],
},
'faq',
],
'/pro/': [
['', '项目介绍'],
'deploy',
'structure',
'devnew',
{
title: '基础开发', // 必要的
sidebarDepth: 1, // 可选的, 默认值是 1
collapsable: false,
2023-12-30 21:12:05 +08:00
children: ['router','openurl','keepalive'],
2023-08-11 17:47:02 +08:00
},
'datapropertyrule',
2023-10-02 11:53:40 +08:00
'printerplan',
2023-08-11 17:47:02 +08:00
{
title: '表单设计', // 必要的
sidebarDepth: 1, // 可选的, 默认值是 1
collapsable: false,
children: ['startform','dragform','dragformdetail'],
},
{
title: '工作流', // 必要的
sidebarDepth: 1, // 可选的, 默认值是 1
collapsable: false,
children: ['startflow','form'],
},
'components',
'faq',
],
'/net/': [
['', '项目介绍'], 'start', 'deploy', 'devnew'
],
},
},
}