xusd
7 days ago 998218675eb243d43912c203174a6b72b299c0f8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!--更多资讯和更多视频页面-->
<view class="homePageInfo-main">
    <block wx:if="{{ type === 'newMsg' }}">
        <view class="homePageInfo-main-item" wx:for="{{ data }}" wx:key="index">
            <view bindtap="goSeeMessage" class="van-multi-ellipsis--l3" data-url="{{ item.showUrl }}">{{ item.title }}</view>
            <view class="homePageInfo-main-item-text">
                发布时间:
                <time-format format="YYYY-MM-DD" value="{{ item.pushTime }}" />
            </view>
        </view>
    </block>
    <block wx:else>
        <view class="homePageInfo-main-item homePageInfo-main-itemVideo" wx:for="{{ data }}" wx:key="index">
            <view class="homePageInfo-main-itemVideo-content">
                <view class="van-multi-ellipsis--l2">{{ item.title }}</view>
                <view class="homePageInfo-main-item-text">
                    发布时间:
                    <time-format format="YYYY-MM-DD" value="{{ item.pushTime }}" />
                </view>
            </view>
            <video class="homePageInfo-main-itemVideo-video" id="myVideo-{{index}}" show-mute-btn="{{ true }}" src="{{ item.showUrl }}" />
        </view>
    </block>
</view>