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-11-08 17:47:05 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ba4d410b7373dbe37d4bc9e1b163289b8600007f
ba4d410b
1 parent
83ad26dd
fix |> 修复bindSheet半模态退出时出现重影的问题
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
sight_harmony/features/wdComponent/src/main/ets/components/comment/view/CommentListDialog.ets
sight_harmony/features/wdComponent/src/main/ets/components/comment/view/CommentListDialog.ets
View file @
ba4d410
...
...
@@ -44,14 +44,18 @@ export struct CommentListDialogView {
showClose: false,
maskColor: "#50000000",
dragBar: false,
onDisappear:()=>{
this.showCommentList = false
if (this.onClose) { this.onClose() }
},
onWillDisappear: () => {
this.showCommentList = false
if (this.onClose) { this.onClose() }
},
shouldDismiss:((sheetDismiss: SheetDismiss)=> {
console.log("bind sheet shouldDismiss")
sheetDismiss.dismiss()
}),
// shouldDismiss:((sheetDismiss: SheetDismiss)=> {
// console.log("bind sheet shouldDismiss")
// sheetDismiss.dismiss()
// }),
onHeightDidChange: (number: number) => {
Logger.debug(TAG, "onHeightDidChange : " + number)
let height = number
...
...
Please
register
or
login
to post a comment