doum
刚刚 1c7c8e034add7e68602bdb56be08f63bac1262b7
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<template>
    <view class="box">
        <view class="item">
            <view class="item-a">
                <text class="item-a-num">8</text>
                <text>满100可用</text>
            </view>
            <view class="item-b">
                <view class="item-b-left">
                    <text>新客专享</text>
                    <text>2020.5.25 日到期</text>
                </view>
            </view>
        </view>
        <view class="info">
            <view class="info-item">
                <view class="info-item-label">使用时间</view>
                <view class="info-item-val">2020.5.25 日到期</view>
            </view>
            <view class="info-item">
                <view class="info-item-label">适用对象</view>
                <view class="info-item-val">支重轮、导轨</view>
            </view>
            <view class="info-item">
                <view class="info-item-label">使用说明</view>
                <view class="info-item-val">为确保顺利使用,请您留意:
                ·有效期:每张优惠券均有明确的使用起止日期,过期自动失效,请及时使用。
                ·适用范围:券面会注明是否适用于全平台商品,或仅限指定品牌、品类、特定商品参与。请在券详情页或商品页核对“可用优惠”。
                挑选心仪商品加入购物车。
                进入结算页面,确认收货地址和商品信息。
                在“支付信息”区域找到「优惠券」或「选择优惠」入口。
                系统将自动筛选出当前订单可用的优惠券,请选择您希望使用的一张。
                选择后,订单总额将立即更新,显示抵扣后的最终支付金额。
                确认无误,完成支付即可。
                </view>
            </view>
        </view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                
            };
        }
    }
</script>
 
<style lang="scss" scoped>
    .box {
        width: 100%;
        padding: 30rpx;
        box-sizing: border-box;
        .info {
            width: 100%;
            display: flex;
            flex-direction: column;
            margin-top: 18rpx;
            .info-item {
                width: 100%;
                padding: 30rpx 0;
                box-sizing: border-box;
                border-bottom: 1rpx solid #E5E5E5;
                .info-item-label {
                    font-weight: 500;
                    font-size: 32rpx;
                    color: #111111;
                }
                .info-item-val {
                    font-weight: 400;
                    font-size: 28rpx;
                    color: #777777;
                    margin-top: 24rpx;
                    line-height: 45rpx;
                }
            }
        }
        .item {
            width: 100%;
            height: 170rpx;
            display: flex;
            align-items: center;
            background: #FFEFEF;
            border-radius: 16rpx;
            margin-bottom: 20rpx;
            &:last-child {
                margin: 0 !important;
            }
            .item-a {
                width: 208rpx;
                height: 100%;
                flex-shrink: 0;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                border-right: 1rpx dashed #E3C1C1;
                .item-a-num {
                    font-weight: 600;
                    font-size: 44rpx;
                    color: #E4001D;
                    &::before {
                        content: '¥';
                        font-weight: 600;
                        font-size: 24rpx;
                        color: #E4001D;
                    }
                }
                text {
                    font-weight: 400;
                    font-size: 24rpx;
                    color: #E93047;
                    margin-top: 8rpx;
                }
            }
            .item-b {
                flex: 1;
                padding: 0 30rpx;
                box-sizing: border-box;
                height: 100%;
                display: flex;
                align-items: center;
                .item-b-left {
                    flex: 1;
                    height: 100%;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    text {
                        &:nth-child(1) {
                            font-weight: 500;
                            font-size: 32rpx;
                            color: #222222;
                        }
                        &:nth-child(2) {
                            font-weight: 400;
                            font-size: 24rpx;
                            color: #777777;
                            margin-top: 12rpx;
                        }
                    }
                }
            }
        }
    }
</style>