集成后台重构版本
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.
 
 
 

24 lines
631 B

// 全局设置
module.exports = {
// 网站标题
title: '阅行资源库后台管理系统',
// 记住密码状态下的token在Cookie中存储的天数,默认1天
tokenCookieExpires: 1,
// 记住密码状态下的密码在Cookie中存储的天数,默认1天s
passCookieExpires: 1,
// token key
TokenKey: 'YXK-ADMIN-TOKEN',
// 请求超时时间,毫秒(默认2分钟)
timeout: 1200000,
// 是否显示设置底部信息
showFooter: true,
// 底部文字,支持html语法
footerTxt:
'© 2021 <a href="https://www.aixylib.com" target="_blank">阅行后台集成管理系统</a>'
}