This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.
<view class="container">
<scroll-view class="message-list" scroll-y="true" style="height: 600px;">
<!-- 使用 wx:for 循环遍历上报数据 -->
<block wx:for="{{messages}}" wx:key="index">
<view class="message-item" bindtap="viewDetail" data-index="{{index}}">
<!-- 显示上报日期和 name -->
<text>{{item.selectedDate}}-{{item.selectedTime}} - {{item.name}}</text>
<!-- 简略的提示 -->
<text class="message-summary">点击查看详细信息...</text>
</view>
</block>
</scroll-view>