vr-shopxo-source/sourcecode/weixin/default/components/icon-nav/icon-nav.wxml

10 lines
448 B
Plaintext
Raw Normal View History

2018-12-31 03:34:09 +00:00
<view wx:if="{{propData.length > 0}}">
2018-12-31 18:53:36 +00:00
<view class="data-list">
2018-12-31 03:34:09 +00:00
<view class="items" wx:for="{{propData}}" wx:key="key">
2018-12-31 18:53:36 +00:00
<view class="items-content" data-value="{{item.event_value}}" data-type="{{item.event_type}}" bindtap="navigation_event" style="background-color:{{item.bg_color}}">
<image src="{{item.images_url}}" mode="aspectFit" />
2018-12-29 10:39:25 +00:00
</view>
2018-12-31 18:53:36 +00:00
<view class="title">{{item.name}}</view>
2018-12-29 10:39:25 +00:00
</view>
</view>
2018-12-31 03:34:09 +00:00
</view>