From efe0ca2dcc12f1a04c59b6ef3fe9808a57124126 Mon Sep 17 00:00:00 2001 From: mengxiaolong Date: Fri, 21 Aug 2020 15:14:03 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E7=A4=BA=E5=86=85=E5=AE=B9=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ebiz/questions/QuestionsDetail.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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('请上传被保人补充资料')