index.wxml
1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<wxs src="../../wxs/helper.wxs" module="helper" />
<view class="container">
<view class="search-bar" bindtap="toSearch">
<view class="tip">
<view class="text"><image class="icon" src="../../static/images/search@2x.png"></image>搜索店铺内潮品</view>
</view>
</view>
<view class="search-stand-in"></view>
<view class="shop-info">
<image class="info-bg" src="{{shopBanner}}"></image>
<view class="logo-mask"></view>
<image class="logo" src="{{helper.image(shopInfo.shop_logo, 100, 100)}}" wx:if="{{false}}"></image>
<text class="name" wx:if="{{false}}">{{shopInfo.shop_name}}</text>
<view class="fav" wx:if="{{false}}">粉丝:{{favCount}}</view>
</view>
<view class="separator"></view>
<resources
floors="{{decorFloors}}"
floor-index="1"
bindclickreport="decorFloorReport">
</resources>
<view class="product-list">
<view class="header-filter {{floatFilter ? 'float' : ''}}">
<view class="filter">
<product-list-filter bind:sortchange="filterChange"></product-list-filter>
</view>
</view>
<view class="filter-stand-in" hidden="{{!floatFilter}}"></view>
<view class="list">
<product-list
bindproductclick="productReport"
list="{{shopProductList}}"
show-no-more="{{allLoaded}}"
show-loading="{{showLoading}}">
</product-list>
</view>
</view>
<view>
<copyright></copyright>
</view>
</view>