@@ -412,4 +412,9 @@ fix | |||||
`2023.5.7` | `2023.5.7` | ||||
update | update | ||||
- 微信支付 | - 微信支付 | ||||
- 修改 取消微信支付时文字 “您取消了支付” | |||||
- 修改 取消微信支付时文字 “您取消了支付” | |||||
## v1.0.50 | |||||
`2023.5.10` | |||||
feature | |||||
- 增加 百度页面访问统计 |
@@ -1,11 +1,11 @@ | |||||
/* | /* | ||||
* @Date: 2021-11-20 10:26:39 | * @Date: 2021-11-20 10:26:39 | ||||
* @LastEditors: JinxChen | * @LastEditors: JinxChen | ||||
* @LastEditTime: 2023-04-28 16:41:10 | |||||
* @LastEditTime: 2023-05-10 09:17:03 | |||||
* @FilePath: \TelpoH5FrontendWeb\src\config\models.js | * @FilePath: \TelpoH5FrontendWeb\src\config\models.js | ||||
* @description: | * @description: | ||||
*/ | */ | ||||
export const VERSION_MODEL = '1.0.49F'; //版本号 | |||||
export const VERSION_MODEL = '1.0.50F'; //版本号 | |||||
export const IMAGE_URL = { | export const IMAGE_URL = { | ||||
production: 'http://zfb.ssjlai.com/web/', | production: 'http://zfb.ssjlai.com/web/', | ||||
test: 'http://zfb.ssjlai.com/web/', | test: 'http://zfb.ssjlai.com/web/', | ||||
@@ -19,3 +19,8 @@ export const ALIPAY_DOWN_URL = { | |||||
android: 'https://d.alipay.com', | android: 'https://d.alipay.com', | ||||
ios: 'https://itunes.apple.com/cn/app/zhi-fu-bao-qian-bao-yu-e-bao/id333206289?mt=8' | 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?ef364e6446439911bc4ced79bece7715", // 随手精灵百度流量统计 正式环境 | |||||
test: "https://hm.baidu.com/hm.js?edb76b471e997167b7782c1513382771", // 随手精灵百度流量统计 测试环境 | |||||
development: "https://hm.baidu.com/hm.js?edb76b471e997167b7782c1513382771", // 随手精灵百度流量统计 测试环境 | |||||
} |
@@ -1,7 +1,7 @@ | |||||
/* | /* | ||||
* @Date: 2022-01-19 10:08:26 | * @Date: 2022-01-19 10:08:26 | ||||
* @LastEditors: JinxChen | * @LastEditors: JinxChen | ||||
* @LastEditTime: 2023-03-27 16:04:16 | |||||
* @LastEditTime: 2023-05-10 09:15:16 | |||||
* @FilePath: \TelpoH5FrontendWeb\src\main.js | * @FilePath: \TelpoH5FrontendWeb\src\main.js | ||||
* @description: | * @description: | ||||
*/ | */ | ||||
@@ -14,6 +14,7 @@ import '@/assets/css/reset.scss'; | |||||
import dayjs from 'dayjs'; | import dayjs from 'dayjs'; | ||||
// ui库按需引入 | // ui库按需引入 | ||||
import 'vant/lib/index.css'; | import 'vant/lib/index.css'; | ||||
import { BaiduStatisticsModel } from '@/config/models'; | |||||
import { | import { | ||||
Button, | Button, | ||||
Calendar, | Calendar, | ||||
@@ -115,6 +116,18 @@ Dialog.setDefaultOptions({ | |||||
Vue.config.productionTip = false; | Vue.config.productionTip = false; | ||||
Vue.prototype.$dayjs = dayjs; | Vue.prototype.$dayjs = dayjs; | ||||
Vue.prototype.$bus = new Vue(); | Vue.prototype.$bus = new Vue(); | ||||
router.afterEach((to, from, next) => { | |||||
// 创建百度统计js | |||||
setTimeout(()=>{ | |||||
var _hmt = _hmt || []; | |||||
(function() { | |||||
var hm = document.createElement("script"); | |||||
hm.src = BaiduStatisticsModel[ process.env.NODE_ENV ]; | |||||
var s = document.getElementsByTagName("script")[0]; | |||||
s.parentNode.insertBefore(hm, s); | |||||
})(); | |||||
},0); | |||||
}); | |||||
new Vue({ | new Vue({ | ||||
router, | router, | ||||
store, | store, | ||||