Authored by TaoHuang

add report

... ... @@ -130,13 +130,27 @@ export default {
this.binded = true;
this.close();
this.SET_LOGIN_INFO({ uid: 999999999999 }); // 设置登录状态
this.reportYas('XY_YB_BIND_RESULT', {
BIND_RES: 1
});
} else {
this.toast(res.message);
this.reportYas('XY_YB_BIND_RESULT', {
BIND_RES: 0
});
}
});
} else {
this.toast(this.phone ? '请输入短信验证码' : '请输入手机号');
}
},
reportYas(name, params) {
this.$store.dispatch('reportYas', {
params: {
appop: name,
param: params
}
});
}
},
components: {
... ...