Authored by 李奇

添加通知事件go.blkBackStatus参数修改

... ... @@ -509,7 +509,7 @@ const yoho = {
window.yohoInterface.triggerEvent(success || nullFun, fail || nullFun, {
method: 'go.blkBackStatus',
arguments: {
show: args ? 'Y' : 'N'
isHidden: args ? 'Y' : 'N'
}
});
} else {
... ...
... ... @@ -67,11 +67,11 @@ export default {
},
beforeRouteEnter (to, from, next) {
next(vm => {
vm.$yoho.blkBackStatus(true);
vm.$yoho.blkBackStatus(false);
});
},
beforeRouteLeave (to, from, next) {
this.$yoho.blkBackStatus(false);
this.$yoho.blkBackStatus(true);
next();
},
components: {
... ...