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.
18 lines
517 B
18 lines
517 B
5 years ago
|
<!--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>
|