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

This commit is contained in:
mengxiaolong
2020-08-21 13:42:32 +08:00
2 changed files with 3 additions and 22 deletions

View File

@@ -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

View File

@@ -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`
}
})
}