Merge branch 'feature/GFRS-213【待确定】电投问题件-前端开发-new' into dev

This commit is contained in:
mengxiaolong
2020-08-04 14:15:23 +08:00

View File

@@ -199,9 +199,25 @@ export default {
this.processedList.splice(0)
}
this.loadMore()
},
appCallBack(data) {
if (data.trigger == 'left_button_click') {
this.$jump({
flag: 'service'
})
}
}
},
created() {
setTimeout(() => {
// eslint-disable-next-line no-undef
EWebBridge.webCallAppInJs('webview_left_button', {
// 是否拦截原生返回事件 1是 其他否
intercept: '1'
})
}, 100)
// 筛选按钮的点击事件
window.appCallBack = this.appCallBack
localStorage.removeItem('currentProblemItem')
this.loadMore()
},