Fix:3989 【商城小程序】互动消息回复内容为空时将提示消息“reply评论内容不能为空”改为“请输入回复内容”
This commit is contained in:
@@ -198,12 +198,13 @@ export default {
|
||||
})
|
||||
return
|
||||
}
|
||||
if(this.content === '') {
|
||||
if(this.content.trim() === ('@' + this.currentComment.senderUserNickname)) {
|
||||
// 请输入回复内容
|
||||
uni.showToast({
|
||||
title: '请输入回复内容',
|
||||
icon: 'none',
|
||||
})
|
||||
return
|
||||
}
|
||||
// 点击弹出回复框,输入回复内容,点击发送按钮,发送回复消息
|
||||
uni.showLoading({
|
||||
|
||||
Reference in New Issue
Block a user