1234567891011121314151617181920 |
- <view class='list' ref='saveChildRef0'>
- <view class='item' a:for='{{list}}' a:key='{{index}}' data-item='{{item}}' ref-numbers='{{list}}' onTap='antmoveAction' data-antmove-tap='goDetails'>
- <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' a:if='{{list.length<=0}}'>
- <text>
- ~暂无更多~ </text>
- </view>
- </view>
|