zhangfengjin

fix: 17063 UI还原问题-【uat】-直播列表页直播图标动态展示

... ... @@ -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'
})
... ...