hookehuyr

fix

......@@ -97,7 +97,7 @@ const commentType = ref('comment'); // 类型 comment 为评论/类型 reply 为
const commentId = ref('')
const replayUser = ref('')
const setComment = (v, type) => { //
if (!validIdCard.can_use) {
if (validIdCard.can_use) {
showCommentBoxPopup.value = true;
commentType.value = type;
replayUser.value = v.name;
......
......@@ -171,7 +171,7 @@ 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;
......