yuminge-app/yun-min-program-plugin-master/packageE/stationNotice/stationNoticeLogistics/stationNoticeLogistics.wxml

36 lines
950 B
Plaintext

<!--packageE/stationNotice/stationNoticeLogistics/stationNoticeLogistics.wxml-->
<view class="items">
<view class="item" wx:for="{{listData}}" bindtap="gotoPages" data-page="{{item.mini_url}}">
<view class="time">{{item.created_at}}</view>
<view class="wrapper">
<view class="head">
<view class="face">
<image src="{{item.platform_img}}"></image>
</view>
<view class="name">{{item.title}}</view>
<view class="label">{{item.platform}}</view>
</view>
<view class="c1 ca">{{item.desc}}</view>
<view class="anchor" wx:if="{{item.msg_body && item.msg_body.length!=0}}">
<view class="face">
<image src="{{item.msg_body.img}}"></image>
</view>
<view class="desc">
<view class="name">{{item.msg_body.title}}</view>
<view wx:if="{{item.msg_body.desc}}">{{item.msg_body.desc}}</view>
<view class="tips" wx:else>点击查看</view>
</view>
</view>
</view>
</view>
</view>