bladex前端ui项目,基于avue-cli2.0开发
包含基础工作流,不包含表单设计器
https://git.javablade.com/blade/Saber
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.
36 lines
745 B
36 lines
745 B
|
7 years ago
|
/**
|
||
|
|
* 全局配置文件
|
||
|
|
*/
|
||
|
|
export default {
|
||
|
|
title: "saber",
|
||
|
|
logo: "S",
|
||
|
|
key: 'saber',//配置主键,目前用于存储
|
||
|
|
indexTitle: 'Saber Admin',
|
||
|
|
lockPage: '/lock',
|
||
|
|
tokenTime: 6000,
|
||
|
|
//http的status默认放行不才用统一处理的,
|
||
|
|
statusWhiteList: [],
|
||
|
|
//配置首页不可关闭
|
||
|
|
isFirstPage: false,
|
||
|
|
fistPage: {
|
||
|
|
label: "首页",
|
||
|
|
value: "/wel/index",
|
||
|
|
params: {},
|
||
|
|
query: {},
|
||
|
|
meta: {
|
||
|
|
i18n: 'dashboard'
|
||
|
|
},
|
||
|
|
group: [],
|
||
|
|
close: false
|
||
|
|
},
|
||
|
|
//配置菜单的属性
|
||
|
|
menu: {
|
||
|
|
props: {
|
||
|
|
label: 'name',
|
||
|
|
path: 'path',
|
||
|
|
icon: 'icon',
|
||
|
|
children: 'children'
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|