| 12345678910111213141516171819202122 |
- <!-- 骨架屏 -->
- <import src="./index.skeleton.wxml" />
- <template is="skeleton" wx:if="{{loading}}" />
- <Yl_HeadNav styleType="1" sort='{{content.sort}}' bindonSearch="onSearch" />
- <!-- 品牌列表 -->
- <Tabs list="{{brandList}}" box-class='brand-box' tab-class='brand-tab-class' active-class='brand-active-class' />
- <!-- 产品列表 -->
- <Tabs wx:for="{{typeList}}" active="{{item.active}}" wx:key="{{index}}" rowIndex="{{index}}" list="{{item.list}}" bind:onChange="typeChange" name='itemclassname' box-class='brand-box' tab-class='brand-tab-class' active-class='brand-active-class' />
- <Yl_FloatingButton useSlot bindtap="toShopping">
- <view>
- <text class="corner-mark">99+</text>
- <image style="width: 160rpx; height: 160rpx; transform: translate(-50%,-50%);" src='/static/image/shopping.png' data-title="新建线索" />
- </view>
- </Yl_FloatingButton>
- <view class="division" />
- <Yl_ListBox id='ListBox' bind:getlist='getList'>
- <List list="{{list}}" />
- </Yl_ListBox>
|