effect.wxml 1.1 KB

1234567891011121314151617181920212223242526
  1. <!--pages/components/blocks/effect/effect.wxml-->
  2. <view class="function_list">
  3. <view class="function_items" wx:key="index" wx:for-index="index" wx:for="{{function_items}}">
  4. <view class="function_masker_box">
  5. <navigator url="/pages/brand/brand?keyword={{item.name}}&title={{item.name}}">
  6. <image class="function_img" src="{{item.img}}" mode="widthFix"></image>
  7. <view class="m_title">
  8. <view>
  9. <text class="function_rounds"></text>
  10. <text>{{item.name}}</text>
  11. <text class="function_rounds"></text>
  12. </view>
  13. <view class="look_btn">查看全部</view>
  14. </view>
  15. </navigator>
  16. </view>
  17. <view class="function_item_container">
  18. <view class="function_item" wx:key="index" wx:for-index="index" wx:for="{{item.subitem}}">
  19. <navigator url="/pages/brand/brand?keyword={{item.name}}&title={{item.name}}">
  20. <image class="subitem_img" src="{{item.img}}" mode="widthFix"></image>
  21. <view class="subitem_title">{{item.name}}</view>
  22. </navigator>
  23. </view>
  24. </view>
  25. </view>
  26. </view>