index.js 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. // 主题配置信息
  2. const getConfig = (theme) => {
  3. const config = {
  4. // 章鱼巡店
  5. "zyuxd":{
  6. themePath: 'zyuxd',
  7. pro_URL: 'https://aitour.zyucgj.com/at-employee/', // 生产地址
  8. uat_URL: 'https://aitour.test.zyucgj.com/at-employee/', // 预发布地址
  9. dev_URL: 'http://192.168.16.100:9102/at-employee/', // 本地地址
  10. appName: '智能巡店系统', // app 名称
  11. company: '陕西山海高科信息技术有限公司',
  12. primaryColors: '#55aaff', // 主色调
  13. buttonColors: '#3399ff', // 按钮主色调
  14. fixedButtonColors: '#0099FF', // 浮动按钮色调
  15. topBarBackground: '#3399ff', // 主页顶部栏渐变色
  16. },
  17. // 丘比养车巡店
  18. "qiubxd":{
  19. themePath: 'qiubxd',
  20. pro_URL: 'https://aitour.qiubcar.com/at-employee/', // 生产地址
  21. uat_URL: 'https://aitour.test.qiubcar.com/at-employee/', // 预发布地址
  22. dev_URL: 'http://192.168.16.100:9102/at-employee/', // 本地地址
  23. appName: '智能巡店系统', // app 名称
  24. company: '成都丘比象科技有限公司',
  25. primaryColors: '#f8a240', // 主色调
  26. buttonColors: '#ff6600', // 按钮主色调
  27. fixedButtonColors: '#FF9933', // 浮动按钮色调
  28. topBarBackground: '#282828', // 主页顶部栏渐变色
  29. }
  30. }
  31. return config[theme]
  32. }
  33. export default getConfig