1234567891011121314151617181920212223242526 |
- <!--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">
- <navigator url="/pages/brand/brand?keyword={{item.name}}&title={{item.name}}">
- <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>
- </navigator>
- </view>
- <view class="function_item_container">
- <view class="function_item" wx:key="index" wx:for-index="index" wx:for="{{item.subitem}}">
- <navigator url="/pages/brand/brand?keyword={{item.name}}&title={{item.name}}">
- <image class="subitem_img" src="{{item.img}}" mode="widthFix"></image>
- <view class="subitem_title">{{item.name}}</view>
- </navigator>
- </view>
- </view>
- </view>
- </view>
|