- <view class="list">
- <view class="item" wx:for="{{list}}" wx:key="index" bindtap="goDetails" data-item="{{item}}">
- <view class="flex-around">
- <view class="flex">
- <view class="tit">{{item.desc}}</view>
- <view class="time">
- 上报时间:{{item.reportTime}}
- </view>
- </view>
- <image src="../../../static/function-bar/{{item.status==1?'pending':item.status==2?'processing':item.status==3?'processed':'close'}}.png"></image>
- </view>
- </view>
- <view class="tip-area" wx:if="{{list.length<=0}}">
- <text>~暂无更多~</text>
- </view>
- </view>
|