-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.config.js
66 lines (66 loc) · 1.54 KB
/
admin.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
export default {
login: {
url: '/pages/login/login' // 登录页面路径
},
index: {
url: '/pages/index/index' // 登录后跳转的第一个页面
},
error: {
url: '/pages/error/404' // 404 Not Found 错误页面路径
},
navBar: { // 顶部导航
logo: '/static/images/logo.png', // 左侧 Logo
links: [
// {
// text: '中文简体',
// lang: 'zh-Hans'
// },
// {
// text: '中文繁體',
// lang: 'zh-Hant'
// },
// {
// text: 'English',
// lang: 'en'
// },
{ // 右侧链接
text: 'topwindow.text.doc',
url: 'https://uniapp.dcloud.net.cn/uniCloud/admin'
},
{
text: 'topwindow.text.plugin',
url: 'https://ext.dcloud.net.cn/?cat1=7&cat2=74'
},
],
debug: {
enable: process.env.NODE_ENV !== 'production', //是否显示错误信息
engine: [{ // 搜索引擎配置(每条错误信息后,会自动生成搜索链接,点击后跳转至搜索引擎)
name: '百度',
url: 'https://www.baidu.com/baidu?wd=ERR_MSG'
}, {
name: '谷歌',
url: 'https://www.google.com/search?q=ERR_MSG'
}]
}
},
sideBar: { // 左侧菜单
// 配置静态菜单列表(放置在用户被授权的菜单列表下边)
staticMenu: [{
menu_id: "demo",
text: '组件',
icon: 'uni-icons-list',
url: "",
children: [{
menu_id: "icons",
text: '图标',
icon: 'uni-icons-star',
value: '/pages/demo/icons/icons',
}, {
menu_id: "table",
text: '表格',
icon: 'uni-icons-map',
value: '/pages/demo/table/table',
}]
}]
}
}