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.
49 lines
1.2 KiB
49 lines
1.2 KiB
|
3 years ago
|
/**
|
||
|
|
* 全局配置文件
|
||
|
|
*/
|
||
|
|
export default {
|
||
|
|
title: "saber",
|
||
|
|
logo: "A",
|
||
|
|
key: 'saber',//配置主键,目前用于存储
|
||
|
|
indexTitle: 'Saber Admin',
|
||
|
|
clientId: 'saber', // 客户端id
|
||
|
|
clientSecret: 'saber_secret', // 客户端密钥
|
||
|
|
tenantMode: true, // 是否开启租户模式
|
||
|
|
captchaMode: true, // 是否开启验证码模式
|
||
|
|
tokenTime: 6000,//token过期时间
|
||
|
|
Authorization: 'Blade-Auth',
|
||
|
|
//http的status默认放行不才用统一处理的,
|
||
|
|
statusWhiteList: [400],
|
||
|
|
//配置首页不可关闭
|
||
|
|
setting: {
|
||
|
|
sidebar: 'vertical',
|
||
|
|
tag: true,
|
||
|
|
debug: true,
|
||
|
|
collapse: true,
|
||
|
|
search: true,
|
||
|
|
lock: true,
|
||
|
|
screenshot: true,
|
||
|
|
fullscren: true,
|
||
|
|
theme: true,
|
||
|
|
menu: true
|
||
|
|
},
|
||
|
|
fistPage: {
|
||
|
|
name: "首页",
|
||
|
|
path: "/wel/index"
|
||
|
|
},
|
||
|
|
//配置菜单的属性
|
||
|
|
menu: {
|
||
|
|
iconDefault: 'icon-caidan',
|
||
|
|
label: 'name',
|
||
|
|
path: 'path',
|
||
|
|
icon: 'source',
|
||
|
|
children: 'children',
|
||
|
|
query: 'query',
|
||
|
|
href: 'path',
|
||
|
|
meta: 'meta'
|
||
|
|
},
|
||
|
|
// 授权地址
|
||
|
|
authUrl: 'http://localhost/blade-auth/oauth/render',
|
||
|
|
// 报表设计器地址(cloud端口为8108,boot端口为80)
|
||
|
|
reportUrl: 'http://localhost:8108/ureport',
|
||
|
|
}
|