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
王士厅
2024-09-23 14:05:53 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a2ba40eb4376ba5a2805f764e0138b5ef8a9e2d5
a2ba40eb
1 parent
5fdeaab7
fix: 稿件详情图片预览单击返回
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
sight_harmony/features/wdComponent/src/main/ets/pages/MultiPictureListPage.ets
sight_harmony/features/wdComponent/src/main/ets/pages/MultiPictureListPage.ets
View file @
a2ba40e
...
...
@@ -113,6 +113,16 @@ export struct MultiPictureListPage {
this.swiperIndex = targetIndex
this.currentUrl = this.photoList[targetIndex]?.picPath
})
.gesture(
GestureGroup(
GestureMode.Exclusive,
// 单击返回上一层
TapGesture({ count: 1 })
.onAction(() => {
router.back()
})
)
)
Flex({
direction: FlexDirection.Row,
...
...
Please
register
or
login
to post a comment