site.js 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. // 网站基本设置
  2. export const siteInfo = {
  3. display: true,
  4. zhTitle: '白山市边境卷烟打假打私协同平台',
  5. enTitle: 'Changchun Furui Technology Co., Ltd',
  6. logo_url: require('../../assets/logo.png'),
  7. };
  8. // 菜单设置
  9. export const menuInfo = {
  10. info: {
  11. display: true,
  12. mode: 'horizontal',
  13. backColor: '#00d1b2',
  14. textColor: '#ffffff',
  15. // actColor: '#fe950e',
  16. // actColor: '#ffffff',
  17. },
  18. menuList: [
  19. { icon: '', index: '/test1/index', title: '测试菜单一' },
  20. { icon: '', index: '/test2/index', title: '测试菜单二' },
  21. { icon: '', index: '/test3/index', title: '测试菜单三' },
  22. // {
  23. // icon: '',
  24. // index: '2',
  25. // title: '二级菜单',
  26. // subs: [
  27. // {
  28. // icon: '',
  29. // index: '/test3/index',
  30. // title: '二级菜单一',
  31. // },
  32. // ],
  33. // },
  34. // {
  35. // icon: '',
  36. // index: '3',
  37. // title: '三级菜单',
  38. // subs: [
  39. // {
  40. // icon: '',
  41. // index: '3-1',
  42. // title: '三级菜单-一级',
  43. // subs: [
  44. // {
  45. // icon: '',
  46. // index: '/test3/index',
  47. // title: '三级菜单-二级',
  48. // },
  49. // ],
  50. // },
  51. // ],
  52. // },
  53. ],
  54. };
  55. // 轮播图设置
  56. export const bannerInfo = {
  57. info: {
  58. display: true,
  59. // 轮播高度
  60. height: '400px',
  61. // 指示器触发方式-默认值:hover,click:点击
  62. trigger: '',
  63. // 是否自动切换-默认值:true
  64. autoplay: true,
  65. // 自动切换秒数
  66. interval: 3000,
  67. // 指示器位置显示-默认值:显示,outside:外部,none:不显示,
  68. indicatorpos: '',
  69. // 切换箭头-默认值:鼠标滑过时显示,always:一直显示,never:一直隐藏
  70. arrow: '',
  71. // 轮播类型-card:卡片化
  72. type: '',
  73. // 是否循环显示:默认值:true
  74. loop: true,
  75. // 轮播垂直方向显示-默认值:横向,vertical:垂直
  76. direction: 'horizontal',
  77. },
  78. list: [],
  79. };
  80. // 网站底部信息
  81. export const footInfo = {
  82. display: true,
  83. content:
  84. '<p>技术运营:长春市福瑞科技有限公司</p><p>技术支持:长春市福瑞科技有限公司</p><p>地址:吉林省长春市朝阳区前进大街1244号电话:12345678901微信:123456邮箱:123456@163.com</p><p>吉ICP备2020007658号-1 Copyright 2019 版权所有 长春市福瑞科技有限公司 All Rights Reserved</p>',
  85. };