settings.js 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. module.exports = {
  2. /**
  3. * @description 打开详情页
  4. */
  5. outsideUrl: process.env.VUE_APP_URL,
  6. imgUrl: 'https://api.yaoyi.net/wmkj/',
  7. /**
  8. * @description 网站标题
  9. */
  10. title: 'SY-CRM',
  11. /**
  12. * @description 是否显示 tagsView
  13. */
  14. tagsView: true,
  15. /**
  16. * @description 固定头部
  17. */
  18. fixedHeader: true,
  19. /**
  20. * @description 记住密码状态下的token在Cookie中存储的天数,默认1天
  21. */
  22. tokenCookieExpires: 1,
  23. /**
  24. * @description 记住密码状态下的密码在Cookie中存储的天数,默认1天s
  25. */
  26. passCookieExpires: 1,
  27. /**
  28. * @description 是否只保持一个子菜单的展开
  29. */
  30. uniqueOpened: true,
  31. /**
  32. * @description token key
  33. */
  34. TokenKey: 'ZL-ADMIN-TOEKN',
  35. /**
  36. * @description 请求超时时间,毫秒(默认2分钟)
  37. */
  38. timeout: 1200000,
  39. /**
  40. * @description 是否显示logo
  41. */
  42. sidebarLogo: true,
  43. /**
  44. * 是否显示设置的底部信息
  45. */
  46. showFooter: true,
  47. /**
  48. * 底部文字,支持html语法
  49. */
  50. footerTxt: '© 2021 要易云 <a href="http://beian.miit.gov.cn" target="_blank"></a>',
  51. /**
  52. * 备案号
  53. */
  54. caseNumber: ''
  55. }