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