promate_pop.wxml
4.43 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
<!-- --弹起领券-- -->
<view wx:if='{{pro_pop==1}}'>
<view class="cover-layer flex-center" bindtap="close_pro_pop"></view>
<view class="cx-popup {{pro_pop== true ? 'up_pro' : 'down_pro'}} ">
<view class="top-frame">
<view class="top t-c">促销列表</view>
</view>
<view class="xc-frame">
<view class="top-frame">
<view class="xc-coupon-frame ">
<!-- 优惠促销 -->
<view class="item_pro flex ai-center">
<view class="tab_bx fs24">优惠</view>
<view class="item_pro_left flex jc-center ai-center">
<view class="fs34 left_f_box" >优惠促销</view>
</view>
<view class="item_pro_right">
<view class="fs26">消费满100元享受优惠</view>
<view class="fs22" style="max-width: 430rpx; color: #b9b6b6">
<text class="tick pdr20" >减价10元</text>
<text class="tick pdr20" >减价10元</text>
<text class="tick pdr20" >减价10元</text>
<text class="tick pdr20" >减价10元</text>
<text class="tick pdr20" >减价10元</text>
<text class="tick pdr20" >减价10元</text>
<text class="tick pdr20" >减价10元</text>
</view>
</view>
<view class="xq_btn fs30">详情</view>
</view>
<!-- 搭配促销 -->
<view class="item_pro flex ai-center">
<view class="tab_bx fs24">搭配</view>
<view class="item_pro_left flex jc-center ai-center">
<view class="fs36 left_f_box">搭配促销</view>
</view>
<view class="item_pro_right">
<view class="fs26">活动名称</view>
<view class="fs26">搭配价:<text class="c-red">¥101.00-210.00</text></view>
<view class="fs22" style="color: #b9b6b6">
2022.12.19 00:00:00 至 2022.12.31 23:59:59
</view>
</view>
<view class="xq_btn fs30">详情</view>
</view>
<!-- 组合购 -->
<view class="item_pro flex ai-center">
<view class="tab_bx fs24">组合</view>
<view class="item_pro_left flex jc-center ai-center">
<view class="fs36 left_f_box">组合购</view>
</view>
<view class="item_pro_right">
<view class="fs26">活动名称</view>
<view class="fs22" style="color: #b9b6b6">
2022.12.19 00:00:00 至 2022.12.31 23:59:59
</view>
</view>
<view class="xq_btn fs30">详情</view>
</view>
<!-- 阶梯促销 -->
<view class="item_pro flex ai-center">
<view class="tab_bx fs24">阶梯</view>
<view class="item_pro_left flex jc-center ai-center">
<view class="fs36 left_f_box">阶梯促销</view>
</view>
<view class="item_pro_right">
<view class="fs26">第1件8折,第2件7折,第3件6折</view>
<view class="fs22" style="color: #b9b6b6">
2022.12.19 00:00:00 至 2022.12.31 23:59:59
</view>
</view>
<view class="xq_btn fs30">详情</view>
</view>
</view>
</view>
</view>
<view class="cx-confirm pd20" bindtap="close_pro_pop">
<view wx:if="{{type==0}}" class="confirm t-c">我知道了</view>
<view wx:if="{{type==1}}" class="confirm t-c">确定</view>
</view>
</view>
</view>