icon-nav.wxml 495 字节
Newer Older
G
wechat  
gongfuxiang 已提交
1
<view wx:if="{{propData.length > 0}}">
D
devil_gong 已提交
2
  <view class="data-list bg-white spacing-mb">
G
wechat  
gongfuxiang 已提交
3
    <view class="items" wx:for="{{propData}}" wx:key="key">
D
devil_gong 已提交
4 5 6 7 8 9
      <view class="items-content tc" style="background-color:{{item.bg_color}}" data-value="{{item.event_value}}" data-type="{{item.event_type}}" bindtap="nav_event">
        <image class="wh-auto" src="{{item.images_url}}" mode="aspectFit" />
      </view>
      <view class="title tc single-text">{{item.name}}</view>
    </view>
  </view>
G
wechat  
gongfuxiang 已提交
10
</view>