You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<!--pages/user/myWhistle/index.wxml-->
|
|
|
|
<wxs module="whistle" src="whistle.wxs"></wxs>
|
|
|
|
<block wx:for="{{list}}">
|
|
|
|
<view class="column" bindtap="detail" data-id="{{item.id}}">
|
|
|
|
<view class="top">
|
|
|
|
<view class="content">
|
|
|
|
{{item.content}}
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
<view class="bottom">
|
|
|
|
<view style="font-size:12px">{{item.createTime}}</view>
|
|
|
|
<view style="font-size:13px;color:{{whistle.getColor(item.status)}}">{{whistle.getStatus(item.status)}}</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
</block>
|
|
|
|
<view wx:if="{{list.length <= 0}}" class="page_empty">暂无数据</view>
|