23 lines
904 B
Plaintext
23 lines
904 B
Plaintext
|
|
<view class="page">
|
|
|
|
<view class="weui-cells weui-cells_after-title" style="margin-top:0px;background:none;">
|
|
<block wx:for="{{results}}" wx:key="unique" style="color:#fff;">
|
|
<navigator url="detail?id={{item.id}}" style="margin-bottom: 20rpx;color:#fff;" hover-class="weui-cell_active">
|
|
<view style="padding: 20rpx;border: 1rpx solid #c0acac;background: #31CDC1; border-radius: 20rpx;width:80%;margin:30px">
|
|
<view class="weui-media-box__desc" style="display: flex;">
|
|
<view style="margin-right: 10rpx;color:#fff;height:60px;font-size: 18px;">
|
|
{{item.title}}
|
|
</view>
|
|
|
|
</view>
|
|
<view class="weui-media-box__desc" style="display: flex;">
|
|
<view style="display: flex;color:#fff;text-align:right;">{{item.update_time}}</view>
|
|
|
|
</view>
|
|
</view>
|
|
</navigator>
|
|
</block>
|
|
</view>
|
|
</view>
|
|
|