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

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