提示内容修改

This commit is contained in:
mengxiaolong
2020-08-21 15:14:03 +08:00
parent feecb1a562
commit efe0ca2dcc

View File

@@ -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('请上传被保人补充资料')