Toggle navigation
Toggle navigation
This project
Loading...
Sign in
developOne
/
harmonyPool
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
chenquansheng
2024-10-30 16:58:55 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e4671b5b4b31caba933d2b4ff445bd372b13aaa6
e4671b5b
1 parent
2ce5c50e
fix |> 修复直播详情页面评论问题
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletions
sight_harmony/features/wdComponent/src/main/ets/components/comment/view/CommentCustomDialog.ets
sight_harmony/features/wdDetailPlayLive/src/main/ets/viewModel/LiveViewModel.ets
sight_harmony/features/wdComponent/src/main/ets/components/comment/view/CommentCustomDialog.ets
View file @
e4671b5
...
...
@@ -47,6 +47,7 @@ export struct CommentCustomDialog {
if (this.onPublishBtnClick) {
let content: CommentDialogInputContent = { comment: this.publishCommentModel.commentContent }
if (this.onPublishBtnClick(content)) {
this.publishCommentModel.commentContent = ''
return
}
}
...
...
sight_harmony/features/wdDetailPlayLive/src/main/ets/viewModel/LiveViewModel.ets
View file @
e4671b5
...
...
@@ -173,7 +173,9 @@ export class LiveViewModel {
} else {
success(undefined)
}
ToastUtils.showToast(data.tipMessage, 3000)
setTimeout(()=>{
ToastUtils.showToast(data.tipMessage, 3000)
},400)
}).catch((message: string) => {
fail(message)
})
...
...
Please
register
or
login
to post a comment