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
zhangfengjin
2024-05-14 21:24:47 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f847b7bf973b1bedad9fe7d9c9cc69bf46e4d3aa
f847b7bf
1 parent
6fb54e1c
fix: 17063 UI还原问题-【uat】-直播列表页直播图标动态展示
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
sight_harmony/features/wdComponent/src/main/ets/components/page/LiveMorePage.ets
sight_harmony/features/wdComponent/src/main/ets/components/page/LiveMorePage.ets
View file @
f847b7b
...
...
@@ -10,6 +10,7 @@ import { PeopleShipNoMoreData } from '../reusable/PeopleShipNoMoreData';
import { EmptyComponent } from '../view/EmptyComponent';
import { ErrorComponent } from '../view/ErrorComponent';
import LoadMoreLayout from '../page/LoadMoreLayout'
import { LottieView } from '../../components/lottie/LottieView'
const TAG: string = 'LiveMorePage';
...
...
@@ -232,9 +233,14 @@ struct LiveMorePage {
@Builder
LiveImage(item: ContentDTO) {
Row() {
Image($r('app.media.icon_live_new_running'))
.width(14)
.height(14)
LottieView({
name: 'live_status_wait',
path: "lottie/live_detail_living.json",
lottieWidth: 14,
lottieHeight: 14,
autoplay: true,
loop: true,
})
.margin({
right: '2vp'
})
...
...
Please
register
or
login
to post a comment