index.wxml
4.13 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!--index.wxml-->
<dialog
id='dialog'
src="{{dialogSrc}}"
url="{{dialogUrl}}"
></dialog>
<view class="container">
<!-- 筛选框 -->
<!-- <block wx:if="{{homeTabs.length > 0}}">
<view class="fixedFilterNormalBack {{fixedFilter ? 'fixedFilter' : ''}}" style="top:{{homelist.length==0?'96':'0'}}rpx">
<view class="fixedFilterNormalView">
<block wx:if="{{homeTabs.length == 2}}">
<view class="fixedFilterItem" data-type='0' bindtap='fixedFilterTapped'>
<view class="{{currentFixedFilterIndex==0 ? 'fixedFilterTextSelect' : 'fixedFilterTextNormal'}}" style='margin-left: 70rpx;'>{{homeTabs[0].content}}</view>
</view>
<view class="fixedFilterItem" data-type='1' bindtap='fixedFilterTapped'>
<view class="{{currentFixedFilterIndex==1 ? 'fixedFilterTextSelect' : 'fixedFilterTextNormal'}}" style='margin-right: 70rpx;'>{{homeTabs[1].content}}</view>
</view>
</block>
<block wx:elif='homeTabs.length == 1'>
<view class="fixedFilterItem" data-type='0' bindtap='fixedFilterTapped'>
<view class="fixedFilterTextSelect">{{homeTabs[0].content}}</view>
</view>
</block>
</view>
</view> -->
<view class='guang'>
<view class='sLine' wx:if="{{fixedFilter}}"></view>
<view id='fixedFilterViewC' style='height: 1rpx;width: 100%;background-color: white;z-index: 1090;position: relative;'></view>
<block wx:if="{{homeTabs[currentFixedFilterIndex].type == 1}}">
<block wx:for="{{guangList.list}}" wx:key="{{index}}">
<form bindsubmit='formSubmitFromGuangArt' report-submit='true'>
<view class='guangArtContent' wx:if="{{item.type==1}}"
data-f_inindex='{{index}}' data-article-id='{{item.id}}'
bindtap='tappedGuangArtContent'>
<button class='guangItemButton'form-type='submit'></button>
<image class="artImage" src="{{item.src}}" ></image>
<text class="artTitle">{{item.title}}</text>
<text class='artType'># {{item.min_category_name}}</text>
</view>
<view class='space' wx:if="{{item.type==1}}"></view>
<view class='line' wx:if="{{item.type==1}}"></view>
</form>
</block>
</block>
<block wx:elif='{{homeTabs[currentFixedFilterIndex].type == 2}}'>
<view class="likeContainer">
<block wx:for="{{newChannels[selectedChannel]['recommend']['data']}}" wx:key="{{index}}">
<view class='suggestCell' data-f_inindex='{{index}}' catchtap="productCellTapped" data-product-item="{{item}}">
<view class='left'>
<image class="activityImage" src="{{item.default_images}}"></image>
</view>
<view class='right'>
<view class='titleView'>
<text class="title">{{item.product_name}}</text>
</view>
<view class='priceView'>
<text class="icon">¥</text>
<text class="price1">{{item.salePriceFixed2}}</text>
<text wx:if="{{item.showOriginPrice}}" class="price2">¥{{item.originPriceFixed2}}</text>
</view>
<view class='brandView' wx:if="{{item.shop_id}}" catchtap="brandCellTapped" data-product-item="{{item}}">
<image class="brandicon" src="./images/dianpu@2x.png"></image>
<text class="brandTitle">{{item.shop_name}}</text>
<image class="brandArrowIcon" src="./images/go@2x.png"></image>
</view>
</view>
</view>
<view class='spaceLine'/>
</block>
</view>
</block>
</view>
<loading wx:if="{{newChannels[selectedChannel]['isLoading'] }}">加载中</loading>
</view>
<quickNavigation id="quickNavigation" isHome="{{true}}" isShowIndicator="{{isShowIndicator}}" isShowShopCart="{{true}}" isShowMenu="{{false}}" marginBottom="{{50}}" bind:backToTop="backToTop"></quickNavigation>
<import src="../../vendors/toast/wetoast.wxml"/>
<template is="wetoast" data="{{...__wetoast__}}"/>
<import src="../../vendors/zanui/toast/index.wxml"/>
<template is="zan-toast" data="{{zanToast}}"/>