Showing
1 changed file
with
9 additions
and
3 deletions
| @@ -10,6 +10,7 @@ import { PeopleShipNoMoreData } from '../reusable/PeopleShipNoMoreData'; | @@ -10,6 +10,7 @@ import { PeopleShipNoMoreData } from '../reusable/PeopleShipNoMoreData'; | ||
| 10 | import { EmptyComponent } from '../view/EmptyComponent'; | 10 | import { EmptyComponent } from '../view/EmptyComponent'; |
| 11 | import { ErrorComponent } from '../view/ErrorComponent'; | 11 | import { ErrorComponent } from '../view/ErrorComponent'; |
| 12 | import LoadMoreLayout from '../page/LoadMoreLayout' | 12 | import LoadMoreLayout from '../page/LoadMoreLayout' |
| 13 | +import { LottieView } from '../../components/lottie/LottieView' | ||
| 13 | 14 | ||
| 14 | const TAG: string = 'LiveMorePage'; | 15 | const TAG: string = 'LiveMorePage'; |
| 15 | 16 | ||
| @@ -232,9 +233,14 @@ struct LiveMorePage { | @@ -232,9 +233,14 @@ struct LiveMorePage { | ||
| 232 | @Builder | 233 | @Builder |
| 233 | LiveImage(item: ContentDTO) { | 234 | LiveImage(item: ContentDTO) { |
| 234 | Row() { | 235 | Row() { |
| 235 | - Image($r('app.media.icon_live_new_running')) | ||
| 236 | - .width(14) | ||
| 237 | - .height(14) | 236 | + LottieView({ |
| 237 | + name: 'live_status_wait', | ||
| 238 | + path: "lottie/live_detail_living.json", | ||
| 239 | + lottieWidth: 14, | ||
| 240 | + lottieHeight: 14, | ||
| 241 | + autoplay: true, | ||
| 242 | + loop: true, | ||
| 243 | + }) | ||
| 238 | .margin({ | 244 | .margin({ |
| 239 | right: '2vp' | 245 | right: '2vp' |
| 240 | }) | 246 | }) |
-
Please register or login to post a comment