提交 0d71bfaf authored 作者: lihuihui's avatar lihuihui

添加百度统计代码

上级 082cfd1a
......@@ -24,8 +24,23 @@ window.G = Vue.prototype.$GlobalVariable = {
}
Vue.prototype.$md5 = md5
// 百度统计
var _hmt = _hmt || [];
window._hmt = _hmt; // 将_hmt挂载到window下
(function () {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?245cd20bd13e57fbce444467d7986c46";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
/* 导航守卫 */
router.beforeEach(async (to, from, next) => {
if (_hmt) {
if (to.path) {
_hmt.push(['_trackPageview', '/#' + to.fullPath])
}
}
/* 设置 全局变量 */
BeforeRouter.globalVariable.init(Vue, { to, from, next })
if (to.meta.requiredLogin) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论