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-06-14 16:21:59 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
7016b93c0cc75b381eb3f4167a4c1313912bf8dd
7016b93c
1 parent
05907819
fix: 18445 横滑卡-选择不跳转右滑至卡片结尾不该展示查看更多按钮且跳转其他页面
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
sight_harmony/features/wdComponent/src/main/ets/components/view/HorizontalStrokeCardThreeTwoRadioForMoreComponent.ets
sight_harmony/features/wdComponent/src/main/ets/components/view/LiveHorizontalCardComponent.ets
sight_harmony/features/wdComponent/src/main/ets/components/view/HorizontalStrokeCardThreeTwoRadioForMoreComponent.ets
View file @
7016b93
...
...
@@ -87,7 +87,7 @@ export struct HorizontalStrokeCardThreeTwoRadioForMoreComponent {
}
showMore() {
return
!!this.compDTO.dataSourceType
|| !(this.compDTO?.objectType === '0' || this.compDTO?.objectType === '')
return
(!!this.compDTO.dataSourceType && this.compDTO.dataSourceType !== 'OBJECT_POS')
|| !(this.compDTO?.objectType === '0' || this.compDTO?.objectType === '')
}
build() {
...
...
sight_harmony/features/wdComponent/src/main/ets/components/view/LiveHorizontalCardComponent.ets
View file @
7016b93
...
...
@@ -100,7 +100,7 @@ export struct LiveHorizontalCardComponent {
}
showMore() {
return
!!this.compDTO.dataSourceType
|| !(this.compDTO?.objectType === '0' || this.compDTO?.objectType === '')
return
(!!this.compDTO.dataSourceType && this.compDTO.dataSourceType !== 'OBJECT_POS')
|| !(this.compDTO?.objectType === '0' || this.compDTO?.objectType === '')
}
...
...
Please
register
or
login
to post a comment