classify.wxml
2.1 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
<!--pages/classify/classify.wxml-->
<view class='search_box' bindtap='search'>
<view class='search'>
<view class='search_img'>
<image src='/images/serach.png'></image>
</view>
<view class='search_input'>华为 小米</view>
</view>
</view>
<view class='box'>
<view class='tabbar_box'>
<view class="tabbar_item {{currenttab==0?'active':''}}" data-current='0' bindtap='chargeStyle'>手机</view>
<view class="tabbar_item {{currenttab==1?'active':''}}" data-current='1' bindtap='chargeStyle'>电脑</view>
<view class="tabbar_item {{currenttab==2?'active':''}}" data-current='2' bindtap='chargeStyle'>平板</view>
<view class="tabbar_item {{currenttab==3?'active':''}}" data-current='3' bindtap='chargeStyle'>手表</view>
<view class="tabbar_item {{currenttab==4?'active':''}}" data-current='4' bindtap='chargeStyle'>相机</view>
<view class="tabbar_item {{currenttab==5?'active':''}}" data-current='5' bindtap='chargeStyle'>配件</view>
<view class="tabbar_item {{currenttab==6?'active':''}}" data-current='6' bindtap='chargeStyle'>其他</view>
</view>
<view class='content_item'>
<view class='item_list'>
<view class='content_title_box'>
<view>安卓专场</view>
<view bindtap='androidMord'>更多</view>
</view>
<view class='list_content_box'>
<view class='list_content' wx:for='{{[1,2,3,4,5,6]}}' wx:key=''>
<view class='list_content_images'>
<image src='/images/b02@2x.png'></image>
</view>
<view class='content_title'>华为</view>
</view>
</view>
</view>
<view class='item_list'>
<view class='content_title_box'>
<view>iPhone专场</view>
<view>更多</view>
</view>
<view class='list_content_box'>
<view class='list_content' wx:for='{{[1,2,3]}}' wx:key=''>
<view class='list_content_images'>
<image src='/images/b02@2x.png'></image>
</view>
<view class='content_title'>iPhone5</view>
</view>
</view>
</view>
</view>
</view>