diff --git a/src/views/ebiz/questions/QuestionsDetail.vue b/src/views/ebiz/questions/QuestionsDetail.vue index a22b284e8..ac56542ed 100644 --- a/src/views/ebiz/questions/QuestionsDetail.vue +++ b/src/views/ebiz/questions/QuestionsDetail.vue @@ -473,7 +473,6 @@ export default { let shareObj = { title: title, content: '签字进行', - shareType: 0, url: `${location.origin}/#/questions/detail/${this.problemDetail.id}/${this.problemDetail.issueType}?&token=${localStorage.token}&receiveType=${this.problemDetail.receiveType}&prtNo=${this.$route.query.prtNo}`, img: this.$assetsUrl + 'images/logo.png' } @@ -485,20 +484,6 @@ export default { extra: shareObj }) } - if (data.trigger == 'left_button_click') { - this.$jump({ - flag: 'h5', - extra: { - title: '电投问题件', - // 当前页面禁止右滑返回 - forbidSwipeBack: 1, - url: location.origin + `/#/questions/list` - }, - routerInfo: { - path: `/questions/list` - } - }) - } }, modeChange(mode) { if (mode !== 1) { @@ -850,9 +835,6 @@ export default { } ] }) - window.EWebBridge.webCallAppInJs('webview_left_button', { - intercept: '1' - }) } }, 1000) window['appCallBack'] = this.appCallBack diff --git a/src/views/ebiz/questions/Result.vue b/src/views/ebiz/questions/Result.vue index 54fd0857f..000653aff 100644 --- a/src/views/ebiz/questions/Result.vue +++ b/src/views/ebiz/questions/Result.vue @@ -53,17 +53,16 @@ export default { } }, goBack() { - let problem = JSON.parse(localStorage.getItem('currentProblemItem')) this.$jump({ flag: 'h5', extra: { - title: '提交结果', + title: '电投问题件', // 当前页面禁止右滑返回 forbidSwipeBack: 1, - url: location.origin + `/#/questions/detail/${problem.id}/${problem.businessType}?receiveType=${problem.receiveType}&prtNo=${problem.prtNo}` + url: location.origin + `/#/questions/list` }, routerInfo: { - path: `/questions/detail/${problem.id}/${problem.businessType}?receiveType=${problem.receiveType}&prtNo=${problem.prtNo}` + path: `/questions/list` } }) }