12345678910111213141516171819202122 |
- <!--pages/components/blocks/effect/effect.wxml-->
- <view class="function_list">
- <view class="function_items" wx:key="index" wx:for-index="index" wx:for="{{function_items}}">
- <view class="function_masker_box">
- <image class="function_img" src="{{item.img}}" mode="widthFix"></image>
- <view class="m_title">
- <view>
- <text class="function_rounds"></text>
- <text>{{item.name}}</text>
- <text class="function_rounds"></text>
- </view>
- <view class="look_btn">查看全部</view>
- </view>
- </view>
- <view class="function_item_container">
- <view class="function_item" wx:for-index="index" wx:for="{{item.subitem}}">
- <image class="subitem_img" src="{{item.img}}" mode="widthFix"></image>
- <view class="subitem_title">{{item.name}}</view>
- </view>
- </view>
- </view>
- </view>
|