1.7版本发布,详情查看版本说明

This commit is contained in:
zhengjie
2019-04-11 11:15:30 +08:00
parent 0642c46288
commit 94585f26f0
86 changed files with 2287 additions and 537 deletions

26
src/config/index.js Normal file
View File

@@ -0,0 +1,26 @@
/**
* @description 系统全局配置
*/
export default {
/**
* @description 记住密码状态下的token在Cookie中存储的天数默认1天
*/
tokenCookieExpires: 1,
/**
* @description 记住密码状态下的密码在Cookie中存储的天数默认1天
*/
passCookieExpires: 1,
/**
* @description 此处修改网站名称
*/
webName: 'eladmin',
/**
* @description token key
*/
TokenKey: 'EL-ADMIN-TOEKN',
/**
* @description 请求超时时间毫秒默认2分钟
*/
timeout: 1200000
}