hookehuyr

fix

......@@ -171,13 +171,12 @@ const commentType = ref('comment'); // 类型 comment 为评论/类型 reply 为
const commentId = ref('')
const replayUser = ref('')
const setComment = (v, type) => {
if (validIdCard.can_use.value) {
if (!validIdCard.can_use.value) {
showCommentBoxPopup.value = true;
commentType.value = type;
replayUser.value = v.name;
commentId.value = v.id;
} else {
closeBtn();
showNotice.value = true;
}
}
......