xiaofeijilu.wxml
3.2 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
93
94
95
96
97
98
99
100
101
<view class="xiaofeipage">
<view class="xiaofeibox" wx:for="{{xiaofeilist}}" wx:key=''>
<view class="xiaofeiboxitemtop">{{item.times}}</view>
<view wx:for="{{item.info}}" wx:key="">
<view wx:if="{{item.pic_id!=null}}">
<view class="xiaofeiboxitem" wx:for="{{item.pic_id}}" wx:key="">
<view class="xiaofeipic">
<image src="{{item.thumbnail}}"></image>
</view>
<view class="xiaofeibottom">
<view class="xiaofeibotname">{{item.title}}</view>
<view class="xiaofeimoney" wx:if="{{item.vipprice}}">¥{{item.vipprice}}</view>
<view class="xiaofeimoney" wx:else>¥{{item.price}}</view>
</view>
</view>
</view>
<view wx:if="{{item.video_id!=null}}">
<view class="xiaofeiboxitem" wx:for="{{item.video_id}}" wx:key="">
<view class="xiaofeipicvideo">
<image src="{{item.info.thumbnail}}"></image>
<view class="anniu">
<image src="/img/anniu.png"></image>
</view>
</view>
<view class="xiaofeibottom">
<view class="xiaofeivideotop">
<view class="xiaofeibotname">{{item.info.title}}</view>
<view class="xiaofeivideotype" wx:if="{{item.info.attr==1}}">2k</view>
<view class="xiaofeivideotype" wx:if="{{item.info.attr==2}}">4k</view>
<view class="xiaofeivideotype" wx:if="{{item.info.attr==3}}">8k</view>
</view>
<view wx:if="{{item.info.vipprice}}">
<view class="xiaofeimoney" wx:if="{{item.info.attr==1}}">¥{{item.info.vipprice}}</view>
<view class="xiaofeimoney" wx:if="{{item.info.attr==2}}">¥{{item.info.four_vipprice}}</view>
<view class="xiaofeimoney" wx:if="{{item.info.attr==3}}">¥{{item.info.eight_vipprice}}</view>
</view>
<view wx:else>
<view class="xiaofeimoney" wx:if="{{item.info.attr==1}}">¥{{item.info.price}}</view>
<view class="xiaofeimoney" wx:if="{{item.info.attr==2}}">¥{{item.info.four_price}}</view>
<view class="xiaofeimoney" wx:if="{{item.info.attr==3}}">¥{{item.info.eight_price}}</view>
</view>
</view>
</view>
</view>
</view>
</view>
<!-- <view class="xiaofeibox">
<view class="xiaofeiboxitemtop">2019年10月11日</view>
<view class="xiaofeiboxitem">
<view class="xiaofeipic">
<image src="/img/picimg.png"></image>
</view>
<view class="xiaofeibottom">
<view class="xiaofeibotname">这是图片的名字</view>
<view class="xiaofeimoney">¥215</view>
</view>
</view>
<view class="xiaofeiboxitem">
<view class="xiaofeipicvideo">
<image src="/img/videoimg.png"></image>
<view class="anniu">
<image src="/img/anniu.png"></image>
</view>
</view>
<view class="xiaofeibottom">
<view class="xiaofeivideotop">
<view class="xiaofeibotname">这是视频的名字的名字</view>
<view class="xiaofeivideotype">2k</view>
</view>
<view class="xiaofeimoney">¥215</view>
</view>
</view>
</view> -->
</view>