Rap 原分销系统代码Web
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.

bcfac94a2cfa673736d27cc8e5f7f0ab49358709.svn-base 1015B

пре 5 месеци
12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. module.exports = {
  2. /**
  3. * @description 网站标题
  4. */
  5. title: 'EL-ADMIN',
  6. /**
  7. * @description 是否显示 tagsView
  8. */
  9. tagsView: true,
  10. /**
  11. * @description 固定头部
  12. */
  13. fixedHeader: true,
  14. /**
  15. * @description 记住密码状态下的token在Cookie中存储的天数,默认1天
  16. */
  17. tokenCookieExpires: 1,
  18. /**
  19. * @description 记住密码状态下的密码在Cookie中存储的天数,默认1天s
  20. */
  21. passCookieExpires: 1,
  22. /**
  23. * @description token key
  24. */
  25. TokenKey: 'EL-ADMIN-TOEKN',
  26. /**
  27. * @description 请求超时时间,毫秒(默认2分钟)
  28. */
  29. timeout: 1200000,
  30. /**
  31. * @description 是否显示logo
  32. */
  33. sidebarLogo: true,
  34. /**
  35. * 是否显示设置的底部信息
  36. */
  37. showFooter: true,
  38. /**
  39. * 底部文字,支持html语法
  40. */
  41. footerTxt: '© 2019 Zheng Jie <a href="http://www.apache.org/licenses/LICENSE-2.0" target="_blank">Apache License 2.0</a>',
  42. /**
  43. * 备案号
  44. */
  45. caseNumber: '浙ICP备18005431号'
  46. }