提示内容修改

This commit is contained in:
mengxiaolong
2020-08-21 14:29:15 +08:00
parent 6e11494c43
commit a8258cd248
2 changed files with 3 additions and 3 deletions

View File

@@ -503,7 +503,7 @@ export default {
// 下一步 // 下一步
submit() { 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.issueType === '828601') {
if (!this.checkInsurantUpload()) return this.$toast('请上传被保人补充资料') if (!this.checkInsurantUpload()) return this.$toast('请上传被保人补充资料')
@@ -532,7 +532,7 @@ export default {
} }
} }
if (!this.checked) { if (!this.checked) {
return this.$toast('请先同意协议') return this.$toast('请先阅读并勾选协议')
} }
// 校验签名 // 校验签名
if (this.$route.query.receiveType === '0') { if (this.$route.query.receiveType === '0') {

View File

@@ -265,7 +265,7 @@ export default {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
/deep/ .van-field__body { /deep/ .van-field__body {
font-size: 10px; font-size: 12px;
} }
.question-container { .question-container {