hookehuyr

fix

...@@ -97,7 +97,7 @@ const commentType = ref('comment'); // 类型 comment 为评论/类型 reply 为 ...@@ -97,7 +97,7 @@ const commentType = ref('comment'); // 类型 comment 为评论/类型 reply 为
97 const commentId = ref('') 97 const commentId = ref('')
98 const replayUser = ref('') 98 const replayUser = ref('')
99 const setComment = (v, type) => { // 99 const setComment = (v, type) => { //
100 - if (validIdCard.can_use) { 100 + if (validIdCard.can_use.value) {
101 showCommentBoxPopup.value = true; 101 showCommentBoxPopup.value = true;
102 commentType.value = type; 102 commentType.value = type;
103 replayUser.value = v.name; 103 replayUser.value = v.name;
......