天波h5前端应用
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.

44 line
1.3KB

  1. /*
  2. * @Date: 2021-11-20 10:26:39
  3. * @LastEditors: JinxChen
  4. * @LastEditTime: 2023-06-16 17:19:45
  5. * @FilePath: \TelpoH5FrontendWeb\src\config\models.js
  6. * @description:
  7. */
  8. export const VERSION_MODEL = '1.0.62F'; //版本号
  9. export const IMAGE_URL = {
  10. production: 'http://zfb.ssjlai.com/web/',
  11. test: 'http://zfb.ssjlai.com/web/',
  12. development: 'http://zfb.ssjlai.com/web/'
  13. };
  14. //用户设备
  15. export const USER_AGENT = window.navigator.userAgent;
  16. // 支付宝下载链接
  17. export const ALIPAY_DOWN_URL = {
  18. android: 'https://d.alipay.com',
  19. ios: 'https://itunes.apple.com/cn/app/zhi-fu-bao-qian-bao-yu-e-bao/id333206289?mt=8'
  20. };
  21. export const BaiduStatisticsModel = {
  22. production: "https://hm.baidu.com/hm.js?b33e6f07636c9fd9ec8cfe04979f1664", // 随手精灵百度流量统计 正式环境
  23. test: "https://hm.baidu.com/hm.js?edb76b471e997167b7782c1513382771", // 随手精灵百度流量统计 测试环境
  24. development: "https://hm.baidu.com/hm.js?edb76b471e997167b7782c1513382771", // 随手精灵百度流量统计 测试环境
  25. };
  26. // 情绪模型
  27. export const EmotionModel = {
  28. // 抑郁
  29. depression: {
  30. name: '抑郁',
  31. type: 2
  32. },
  33. // 压力
  34. stress: {
  35. name: '压力',
  36. type: 1
  37. },
  38. // 疲劳
  39. tiredness: {
  40. name: '疲劳',
  41. type: 3
  42. }
  43. };