mirror of https://gitee.com/pnoker/dc3-web.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
920 B
40 lines
920 B
/**
|
|
* 全局配置文件
|
|
*/
|
|
export default {
|
|
title: "dc3",
|
|
indexTitle: 'DC3 UI',
|
|
clientId: 'dc3', // 客户端id
|
|
clientSecret: 'dc3_secret', // 客户端密钥
|
|
tenantMode: true, // 是否开启租户模式
|
|
logo: "D",
|
|
key: 'dc3',//配置主键,目前用于存储
|
|
lockPage: '/lock',
|
|
tokenTime: 6000,
|
|
//http的status默认放行不才用统一处理的,
|
|
statusWhiteList: [],
|
|
//配置首页不可关闭
|
|
isFirstPage: false,
|
|
fistPage: {
|
|
label: "首页",
|
|
value: "/wel/index",
|
|
params: {},
|
|
query: {},
|
|
meta: {
|
|
i18n: 'dashboard'
|
|
},
|
|
group: [],
|
|
close: false
|
|
},
|
|
//配置菜单的属性
|
|
menu: {
|
|
iconDefault: 'iconfont icon-caidan',
|
|
props: {
|
|
label: 'name',
|
|
path: 'path',
|
|
icon: 'source',
|
|
children: 'children'
|
|
}
|
|
}
|
|
}
|