Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -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; | ... | ... |
-
Please register or login to post a comment