Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
tswj
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2022-05-14 17:22:11 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ffbbe0ab07bb31d6d719f950eb8685c3e9491999
ffbbe0ab
1 parent
13cad3f0
fix
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
src/components/CommentList/index.vue
src/views/client/videoDetailComment.vue
src/components/CommentList/index.vue
View file @
ffbbe0a
...
...
@@ -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;
...
...
src/views/client/videoDetailComment.vue
View file @
ffbbe0a
...
...
@@ -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;
...
...
Please
register
or
login
to post a comment