提交 f736ac7f 编写于 作者: 张磊's avatar 张磊

Merge branch 'feature/zl' into 'release'

report btn

See merge request !152
...@@ -317,7 +317,7 @@ export default { ...@@ -317,7 +317,7 @@ export default {
}; };
this.$sendBuriedData({ this.$sendBuriedData({
action: 'ACTION_WEB_AFTER', action: 'ACTION_WEB_AFTER',
component_tag: '0000000#7802852#0#0', component_tag: '7802852#0#0#预约',
web_data:{yunOrderNo: yunOrderNo}, web_data:{yunOrderNo: yunOrderNo},
}); });
this.getDetectionName(yunOrderNo); this.getDetectionName(yunOrderNo);
...@@ -472,6 +472,11 @@ export default { ...@@ -472,6 +472,11 @@ export default {
this[name] = false; this[name] = false;
}, },
appointment() { appointment() {
this.$sendBuriedData({
action: 'ACTION_WEB_CLICK',
component_tag: '7802852#0#0#预约提交',
web_data:{yunOrderNo: this.yunOrderNo},
});
this.$refs.dectionForm.validate().then(result => { this.$refs.dectionForm.validate().then(result => {
console.log('this.dectionForm', result); console.log('this.dectionForm', result);
const data = { const data = {
......
...@@ -258,7 +258,7 @@ export default { ...@@ -258,7 +258,7 @@ export default {
this.$loading.hide(); this.$loading.hide();
this.$sendBuriedData({ this.$sendBuriedData({
action: 'ACTION_WEB_AFTER', action: 'ACTION_WEB_AFTER',
component_tag: '0000000#7802855#0#0', component_tag: '7802855#0#0#预约详情',
web_data:{yunOrderNo: yunOrderNo}, web_data:{yunOrderNo: yunOrderNo},
}); });
}, },
...@@ -313,6 +313,11 @@ export default { ...@@ -313,6 +313,11 @@ export default {
}, },
reAppoint() { reAppoint() {
this.$sendBuriedData({
action: 'ACTION_WEB_CLICK',
component_tag: '7802855#0#0#重新预约',
web_data:{yunOrderNo: this.yunOrderNo},
});
this.$router.push({ this.$router.push({
path: '/appoint', path: '/appoint',
query: { query: {
...@@ -380,6 +385,11 @@ export default { ...@@ -380,6 +385,11 @@ export default {
bindingCode() { bindingCode() {
const { pprotocolType, detectionServiceRecordId } = this.detailInfo; const { pprotocolType, detectionServiceRecordId } = this.detailInfo;
console.log('window.miniProgram', window._miniprogram); console.log('window.miniProgram', window._miniprogram);
this.$sendBuriedData({
action: 'ACTION_WEB_CLICK',
component_tag: '7802855#0#0#去绑定',
web_data:{yunOrderNo: this.yunOrderNo},
});
if (window._miniprogram) { if (window._miniprogram) {
const {detectionKind} = this.insuranceInfo; const {detectionKind} = this.insuranceInfo;
this.$rocNative.WXInstance.miniProgram.navigateTo({ this.$rocNative.WXInstance.miniProgram.navigateTo({
......
...@@ -59,7 +59,7 @@ export default { ...@@ -59,7 +59,7 @@ export default {
}; };
this.$sendBuriedData({ this.$sendBuriedData({
action: 'ACTION_WEB_AFTER', // 7802854 action: 'ACTION_WEB_AFTER', // 7802854
component_tag: '0000000#7802854#0#0', component_tag: '7802854#0#0#中转页',
web_data:data, web_data:data,
}); });
this.initMap(data); this.initMap(data);
......
...@@ -264,7 +264,7 @@ export default { ...@@ -264,7 +264,7 @@ export default {
} }
this.$sendBuriedData({ this.$sendBuriedData({
action: 'ACTION_WEB_AFTER', action: 'ACTION_WEB_AFTER',
component_tag: '0000000#7802846#0#0', component_tag: '7802846#0#0#绑定条码',
web_data:{yunOrderNo: yunOrderNo}, web_data:{yunOrderNo: yunOrderNo},
}); });
}, },
...@@ -289,6 +289,11 @@ export default { ...@@ -289,6 +289,11 @@ export default {
}); });
}, },
toggleBindingInfo() { toggleBindingInfo() {
this.$sendBuriedData({
action: 'ACTION_WEB_CLICK',
component_tag: '7802846#0#0#绑定按钮',
web_data:{yunOrderNo: this.yunOrderNo},
});
if(!this.isCheck && this.pprotocolType) { if(!this.isCheck && this.pprotocolType) {
this.goProtocol(); this.goProtocol();
}else{ }else{
......
...@@ -125,7 +125,7 @@ export default { ...@@ -125,7 +125,7 @@ export default {
mounted() { mounted() {
this.$sendBuriedData({ this.$sendBuriedData({
action: 'ACTION_WEB_AFTER', action: 'ACTION_WEB_AFTER',
component_tag: '0000000#7802847#0#0', component_tag: '7802847#0#0#绑定成功页面',
web_data:{yunOrderNo: this.yunOrderNo}, web_data:{yunOrderNo: this.yunOrderNo},
}); });
}, },
...@@ -149,6 +149,11 @@ export default { ...@@ -149,6 +149,11 @@ export default {
bottomBtnFun() { bottomBtnFun() {
const in_info = store.get('insuranceInfo'); const in_info = store.get('insuranceInfo');
const url = in_info.detectionKind == 1 ? '/insuranceQuickDetectionDetail' : '/insuranceDetectionDetail'; const url = in_info.detectionKind == 1 ? '/insuranceQuickDetectionDetail' : '/insuranceDetectionDetail';
this.$sendBuriedData({
action: 'ACTION_WEB_CLICK',
component_tag: '7802847#0#0#查看我的检测',
web_data:{yunOrderNo: this.yunOrderNo},
});
this.$router.push({ this.$router.push({
path: url, path: url,
query: { query: {
......
...@@ -253,7 +253,7 @@ export default { ...@@ -253,7 +253,7 @@ export default {
mounted() { mounted() {
this.$sendBuriedData({ this.$sendBuriedData({
action: 'ACTION_WEB_AFTER', action: 'ACTION_WEB_AFTER',
component_tag: '0000000#7802848#0#0', component_tag: '7802848#0#0#检测详情页面',
web_data:{yunOrderNo: this.yunOrderNo}, web_data:{yunOrderNo: this.yunOrderNo},
}); });
}, },
......
...@@ -131,7 +131,7 @@ export default { ...@@ -131,7 +131,7 @@ export default {
this.getDetectionName(query.yunOrderNo); this.getDetectionName(query.yunOrderNo);
this.$sendBuriedData({ this.$sendBuriedData({
action: 'ACTION_WEB_AFTER', action: 'ACTION_WEB_AFTER',
component_tag: '0000000#7802850#0#0', component_tag: '7802850#0#0#问卷结果页面',
web_data:{yunOrderNo: this.yunOrderNo}, web_data:{yunOrderNo: this.yunOrderNo},
}); });
this.$loading.hide(); this.$loading.hide();
...@@ -162,6 +162,11 @@ export default { ...@@ -162,6 +162,11 @@ export default {
}, },
// 去预约 // 去预约
toAppoint() { toAppoint() {
this.$sendBuriedData({
action: 'ACTION_WEB_CLICK',
component_tag: '7802850#0#0',
web_data:{yunOrderNo: this.yunOrderNo},
});
if (this.buttonStatus) { if (this.buttonStatus) {
const { projectEquityNo, externalOrderNo, yunOrderNo } = this.query; const { projectEquityNo, externalOrderNo, yunOrderNo } = this.query;
console.log('this.query', this.query); console.log('this.query', this.query);
......
...@@ -130,7 +130,7 @@ export default { ...@@ -130,7 +130,7 @@ export default {
const {projectEquityNo} = this.$route.query; const {projectEquityNo} = this.$route.query;
this.$sendBuriedData({ this.$sendBuriedData({
action: 'ACTION_WEB_AFTER', action: 'ACTION_WEB_AFTER',
component_tag: '0000000#7802857#0#0', component_tag: '7802857#0#0#肠癌早筛权益优先领取登记',
web_data:{projectEquityNo: projectEquityNo}, web_data:{projectEquityNo: projectEquityNo},
}); });
}, },
...@@ -150,6 +150,12 @@ export default { ...@@ -150,6 +150,12 @@ export default {
}, },
appointment() { appointment() {
const {projectEquityNo, hospitalId} = this.$route.query; const {projectEquityNo, hospitalId} = this.$route.query;
this.$sendBuriedData({
action: 'ACTION_WEB_CLICK',
component_tag: '7802857#0#0#免费领取',
web_data:{projectEquityNo: projectEquityNo},
});
this.$refs.dectionForm.validate().then(result => { this.$refs.dectionForm.validate().then(result => {
console.log('this.dectionForm', result); console.log('this.dectionForm', result);
const data = { const data = {
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册