mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-20 14:16:44 +08:00
防止再次进入已处理问题件
This commit is contained in:
@@ -481,7 +481,6 @@ export default {
|
|||||||
url: `${location.origin}/#/questions/detail/${this.problemDetail.issueId}/${this.problemDetail.issueType}?&token=${localStorage.token}&receiveType=${this.problemDetail.receiveType}&prtNo=${this.$route.query.prtNo}`,
|
url: `${location.origin}/#/questions/detail/${this.problemDetail.issueId}/${this.problemDetail.issueType}?&token=${localStorage.token}&receiveType=${this.problemDetail.receiveType}&prtNo=${this.$route.query.prtNo}`,
|
||||||
img: this.$assetsUrl + 'images/logo.png'
|
img: this.$assetsUrl + 'images/logo.png'
|
||||||
}
|
}
|
||||||
console.log(JSON.stringify(shareObj))
|
|
||||||
if (data.trigger == 'right_button_click') {
|
if (data.trigger == 'right_button_click') {
|
||||||
// eslint-disable-next-line no-undef
|
// eslint-disable-next-line no-undef
|
||||||
EWebBridge.webCallAppInJs('bridge', {
|
EWebBridge.webCallAppInJs('bridge', {
|
||||||
@@ -630,6 +629,28 @@ export default {
|
|||||||
prtNo: this.$route.query.prtNo,
|
prtNo: this.$route.query.prtNo,
|
||||||
userType: Number(this.$route.query.receiveType)
|
userType: Number(this.$route.query.receiveType)
|
||||||
})
|
})
|
||||||
|
if (rs.result === '0') {
|
||||||
|
// 已处理问题件跳转至列表页
|
||||||
|
if (rs.content && rs.content.status === '1') {
|
||||||
|
Dialog({
|
||||||
|
message: '问题件已被处理',
|
||||||
|
confirmButtonColor: 'red',
|
||||||
|
beforeClose: (action, done) => {
|
||||||
|
done()
|
||||||
|
this.$jump({
|
||||||
|
flag: 'h5',
|
||||||
|
extra: {
|
||||||
|
url: location.origin + `/#/questions/list`,
|
||||||
|
forbidSwipeBack: '1'
|
||||||
|
},
|
||||||
|
routerInfo: {
|
||||||
|
path: `/questions/list`
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
// 包含投保人和被保人证件id和姓名
|
// 包含投保人和被保人证件id和姓名
|
||||||
this.problemInfo = rs.content
|
this.problemInfo = rs.content
|
||||||
this.pdfUrl = encodeURIComponent(config.imgDomain + `/returnDirectStream?imgPath=${this.problemInfo.pdfUrl}`)
|
this.pdfUrl = encodeURIComponent(config.imgDomain + `/returnDirectStream?imgPath=${this.problemInfo.pdfUrl}`)
|
||||||
@@ -640,6 +661,9 @@ export default {
|
|||||||
this.supplement.descriptionInsurant = this.problemDetail.content
|
this.supplement.descriptionInsurant = this.problemDetail.content
|
||||||
// 投保人资料问题描述
|
// 投保人资料问题描述
|
||||||
this.supplement.descriptionPolicyholder = this.problemDetail.issueContent
|
this.supplement.descriptionPolicyholder = this.problemDetail.issueContent
|
||||||
|
} else {
|
||||||
|
this.$toast(rs.resultMessage)
|
||||||
|
}
|
||||||
},
|
},
|
||||||
// 微信空签
|
// 微信空签
|
||||||
toAirSign(status, keyword, offset, originStatus, personType) {
|
toAirSign(status, keyword, offset, originStatus, personType) {
|
||||||
|
|||||||
Reference in New Issue
Block a user