Fix:3989 【商城小程序】互动消息回复内容为空时将提示消息“reply评论内容不能为空”改为“请输入回复内容”

This commit is contained in:
linxi
2025-07-09 16:31:37 +08:00
parent 933bd0d64e
commit 5a883ff1dc
+2 -1
View File
@@ -198,12 +198,13 @@ export default {
}) })
return return
} }
if(this.content === '') { if(this.content.trim() === ('@' + this.currentComment.senderUserNickname)) {
// 请输入回复内容 // 请输入回复内容
uni.showToast({ uni.showToast({
title: '请输入回复内容', title: '请输入回复内容',
icon: 'none', icon: 'none',
}) })
return
} }
// 点击弹出回复框,输入回复内容,点击发送按钮,发送回复消息 // 点击弹出回复框,输入回复内容,点击发送按钮,发送回复消息
uni.showLoading({ uni.showLoading({