hookehuyr

fix 修复埋点问题

<!--
* @Date: 2024-09-26 13:42:11
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-12-04 10:46:22
* @LastEditTime: 2024-12-04 15:32:43
* @FilePath: /hager/src/components/common/hagerHeader.vue
* @Description: 文件描述
-->
......@@ -356,8 +356,10 @@ export default {
path,
});
}
// TAG: 统计埋点
this.maEvent(`h_${path.slice(1)}`);
if (path.indexOf('/solution') === -1) { // 不统计解决方案页面
// TAG: 统计埋点
this.maEvent(`h5_${path.slice(1)}`);
}
},
goToC (item) { // 跳转产品二级
this.$router.push({
......
<!--
* @Date: 2024-10-17 09:22:56
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-12-04 10:47:34
* @LastEditTime: 2024-12-04 15:28:52
* @FilePath: /hager/src/views/about/index.vue
* @Description: 文件描述
-->
......@@ -130,7 +130,7 @@ export default {
path,
});
// TAG: 统计埋点
this.maEvent(`h_${path.slice(7)}`);
this.maEvent(`h5_${path.slice(7)}`);
}
}
}
......