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-05-10 10:05:20 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c693fe9cf52f12f404b366a7a1a729fdd5846534
c693fe9c
1 parent
8444ea2b
fix: 仅wifi加载图片轮播组件
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
7 deletions
sight_harmony/features/wdComponent/src/main/ets/components/compview/ZhCarouselLayout01.ets
sight_harmony/features/wdComponent/src/main/ets/components/compview/ZhCarouselLayout01.ets
View file @
c693fe9
...
...
@@ -172,16 +172,11 @@ struct CarouselLayout01CardView {
build() {
Stack() {
Image(this.
item.coverUrl
)
Image(this.
loadImg ? this.item.coverUrl : ''
)
.width(CommonConstants.FULL_PARENT)
.height(CommonConstants.FULL_PARENT)
.objectFit(ImageFit.Cover)
.visibility(this.loadImg ? Visibility.Visible : Visibility.None)
Row()
.width(CommonConstants.FULL_PARENT)
.height(CommonConstants.FULL_PARENT)
.visibility(this.loadImg ? Visibility.None : Visibility.Visible)
.backgroundColor(0xf5f5f5)
Row()
.width(CommonConstants.FULL_PARENT)
...
...
Please
register
or
login
to post a comment