xusd
7 days ago 998218675eb243d43912c203174a6b72b299c0f8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!--pages/urgingList/index.wxml-->
<!--更多资讯和更多视频页面-->
<view class="homePageInfo-main">
  <block>
    <view class="homePageInfo-main-item" wx:for="{{ data }}" wx:key="index">
      <view class="urgingList-title">
        <time-format format="YYYY-MM-DD HH:mm" value="{{ item.replyTime }}" />
      </view>
      <view class="urgingList-text"><text class="public-color">{{item.replyUserName}}: </text>{{ item.replyContent }}</view>
    </view>
  </block>
  <view >
    <van-divider contentPosition="center" custom-style="margin-top: 12px;">没有更多了</van-divider>
  </view>
</view>