searchResultByScreen.wxml
1.5 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
<view class='nav_type_box'>
<view class='nav_type_left'>
<view class='nav_type type_active'>
<text class='iconfont icon-liebiao'></text>
<text>列表</text>
</view>
<view class='nav_type'>
<text class='iconfont icon-wangge'></text>
<text>网格</text>
</view>
<view class='nav_type'>
<text class='iconfont icon-datu'></text>
<text>大图</text>
</view>
</view>
</view>
<view class='item_list6'>
<view class='collocation'>
<view class='collocation_box' wx:for='{{goods}}' wx:key='{{item.id}}'>
<view class='collocation_img'>
<image src='{{item.more.thumbnail}}'></image>
</view>
<view class='collocation_content'>
<view>{{item.title}}</view>
<view class='introduce'>{{item.tips}}</view>
<view class=''>
<text class='money_icon2'>¥</text>
<text class='money2'>{{item.price}}</text>
<text class='original_price'>¥{{item.old_price}}</text>
</view>
</view>
</view>
</view>
</view>