effect.wxml 878 B

12345678910111213141516171819202122
  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. <image class="function_img" src="{{item.img}}" mode="widthFix"></image>
  6. <view class="m_title">
  7. <view>
  8. <text class="function_rounds"></text>
  9. <text>{{item.name}}</text>
  10. <text class="function_rounds"></text>
  11. </view>
  12. <view class="look_btn">查看全部</view>
  13. </view>
  14. </view>
  15. <view class="function_item_container">
  16. <view class="function_item" wx:for-index="index" wx:for="{{item.subitem}}">
  17. <image class="subitem_img" src="{{item.img}}" mode="widthFix"></image>
  18. <view class="subitem_title">{{item.name}}</view>
  19. </view>
  20. </view>
  21. </view>
  22. </view>