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

35 lines
947 B
Plaintext

<!--packageE/stationNotice/stationNoticeAnchor/stationNoticeAnchor.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" wx:if="{{item.msg_body!=null}}">
<view class="name">{{item.title}}</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 class="tips">点击查看</view>
</view>
</view>
</view>
<view class="wrapper_activity" wx:else>
<view class="face">
<image src="{{item.msg_img_src}}"></image>
</view>
<view class="name">{{item.title}}</view>
<view class="desc">{{item.desc}}</view>
</view>
</view>
</view>