2018-12-31 11:34:09 +08:00
|
|
|
<view wx:if="{{propData.length > 0}}">
|
2019-01-01 02:53:36 +08:00
|
|
|
<view class="data-list">
|
2018-12-31 11:34:09 +08:00
|
|
|
<view class="items" wx:for="{{propData}}" wx:key="key">
|
2019-01-01 02:53:36 +08: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 18:39:25 +08:00
|
|
|
</view>
|
2019-01-01 02:53:36 +08:00
|
|
|
<view class="title">{{item.name}}</view>
|
2018-12-29 18:39:25 +08:00
|
|
|
</view>
|
|
|
|
|
</view>
|
2018-12-31 11:34:09 +08:00
|
|
|
</view>
|