diff --git a/src/views/ebiz/questions/QuestionsDetail.vue b/src/views/ebiz/questions/QuestionsDetail.vue index 00a90147a..e996e602d 100644 --- a/src/views/ebiz/questions/QuestionsDetail.vue +++ b/src/views/ebiz/questions/QuestionsDetail.vue @@ -361,7 +361,7 @@ export default { // 新契约问题件签名前必须输入回复内容 if (this.issueType === 'TB89') { if (!this.newContract.feedback.trim()) { - return this.$toast('请填写回复信息') + return this.$toast('请填写具体回复信息') } else { localStorage.setItem('problemReplay', this.newContract.feedback.trim()) } @@ -473,7 +473,7 @@ export default { let shareObj = { title: title, content: '签字进行', - url: `${location.origin}/#/questions/detail/${this.problemDetail.id}/${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' } console.dir(shareObj) @@ -503,7 +503,7 @@ export default { // 下一步 submit() { // 校验回复内容 - if (this.issueType === 'TB89' && this.newContract.feedback.trim() === '') return this.$toast('请填写回复信息') + if (this.issueType === 'TB89' && this.newContract.feedback.trim() === '') return this.$toast('请填写具体回复信息') // 校验补充资料 if (this.issueType === '828601') { if (!this.checkInsurantUpload()) return this.$toast('请上传被保人补充资料')