This commit is contained in:
yanran200730
2023-03-20 17:58:39 +08:00
parent 05f593e87c
commit 062b2f6039

View File

@@ -168,6 +168,18 @@ div<template>
},
showComment () {
if (!this.user.AreaId) {
this.$dialog.confirm({
content: '您只有完成信息认证后,才可进行相关操作。',
confirmText: '去认证'
}).then(() => {
this.$linkTo('../AppMine/userInfo')
}).catch(() => {
})
return false
}
this.commentId = ''
this.replyName = ''
this.isShowComment = true
@@ -180,6 +192,18 @@ div<template>
},
replay (item) {
if (!this.user.AreaId) {
this.$dialog.confirm({
content: '您只有完成信息认证后,才可进行相关操作。',
confirmText: '去认证'
}).then(() => {
this.$linkTo('../AppMine/userInfo')
}).catch(() => {
})
return false
}
this.commentId = item.id
this.replyName = item.createUserName
@@ -219,17 +243,6 @@ div<template>
},
send () {
if (!this.user.AreaId) {
this.$dialog.confirm({
content: '您只有完成信息认证后,才可进行相关操作。',
confirmText: '去认证'
}).then(() => {
this.$linkTo('../AppMine/userInfo')
}).catch(() => {
})
return false
}
if (!this.content) {
return this.$toast('内容不能为空')
}