zhaojs
2023-09-15 39e2103e28830337c3be4dbd3dc7ad0a829ee78b
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
<template>
    <view class="container position-relative">
        <view style="margin-bottom: 130rpx;">
            <view class="section-1">
                <template v-if="orderType == 'takein'">
                    <list-cell class="location">
                        <view class="flex-fill d-flex justify-content-between align-items-center">
                            <view class="store-name flex-fill">
                                {{ store.name }}
                            </view>
                            <image src="/static/images/navigator-1.png" class="arrow"></image>
                        </view>
                    </list-cell>
                </template>
                <template v-else>
                    <list-cell @click="chooseAddress">
                        <view class="w-100 d-flex flex-column">
                            <view class="d-flex align-items-center justify-content-between mb-10">
                                <view class="font-size-extra-lg text-color-base">{{ address.street }}</view>
                                <image src="/static/images/navigator-1.png" class="arrow"></image>
                            </view>
                            <view class="d-flex text-color-assist font-size-sm align-items-center">
                                <view class="mr-10">{{ address.accept_name }}</view>
                                <view class="mr-10">{{ !address.sex ? '先生' : '女士' }}</view>
                                <view>{{ address.mobile }}</view>
                            </view>
                        </view>
                    </list-cell>
                </template>
                <template v-if="orderType == 'takein'">
                    <list-cell arrow class="meal-time">
                        <view class="flex-fill d-flex justify-content-between align-items-center">
                            <view class="title">取餐时间</view>
                            <view class="time">立即用餐</view>
                        </view>
                    </list-cell>
                    <list-cell class="contact" last :hover="false">
                        <view class="flex-fill d-flex justify-content-between align-items-center">
                            <view class="title flex-fill">联系电话</view>
                            <view class="time">
                                <input class="text-right" placeholder="请输入手机号码" value="18666600000"/>
                            </view>
                            <view class="contact-tip font-size-sm">自动填写</view>
                        </view>
                    </list-cell>
                </template>
                <template v-else>
                    <list-cell>
                        <view class="w-100 d-flex flex-column">
                            <view class="d-flex align-items-center font-size-base text-color-base">
                                <view class="flex-fill">预计送达时间</view>
                                <view class="mr-10">15:18</view>
                                <image src="/static/images/navigator-1.png" class="arrow"></image>
                            </view>
                            <view class="font-size-base text-color-primary">
                                特殊时期减少接触,请修改下方订单备注
                            </view>
                        </view>
                    </list-cell>
                </template>
            </view>
            <!-- 购物车列表 begin -->
            <view class="section-2">
                <view class="cart d-flex flex-column">
                    <list-cell last v-for="(item, index) in cart" :key="index">
                        <view class="w-100 d-flex flex-column">
                            <view class="d-flex align-items-center mb-10">
                                <view class="name-and-props overflow-hidden">
                                    <view class="text-color-base font-size-lg">
                                        {{ item.name }}
                                    </view>
                                </view>
                                <view class="d-flex flex-fill justify-content-between align-items-center text-color-base font-size-lg">
                                    <view>x{{ item.number }}</view>
                                    <view>¥{{ item.price }}</view>
                                </view>
                            </view>
                            <view class="text-truncate font-size-base text-color-assist">
                                {{ item.props_text }}
                            </view>
                        </view>
                    </list-cell>
                    <template v-if="orderType == 'takeout'">
                        <list-cell last v-if="store.packing_fee > 0">
                            <view class="w-100 d-flex font-size-base align-items-center justify-content-between">
                                <view>包装费</view>
                                <view>¥{{ parseFloat(store.packing_fee) }}</view>
                            </view>
                        </list-cell>
                        <list-cell last v-if="store.delivery_cost > 0">
                            <view class="w-100 d-flex font-size-base align-items-center justify-content-between">
                                <view>配送费</view>
                                <view>¥{{ parseFloat(store.delivery_cost) }}</view>
                            </view>
                        </list-cell>
                    </template>
                </view>
                <list-cell arrow @click="goToPackages">
                    <view class="flex-fill d-flex justify-content-between align-items-center">
                        <view class="text-color-base">奈雪券</view>
                        <view class="text-color-primary">超值购买优惠券大礼包</view>
                    </view>
                </list-cell>
                <list-cell arrow>
                    <view class="flex-fill d-flex justify-content-between align-items-center">
                        <view class="text-color-base">礼品卡</view>
                        <view class="text-color-primary">请选择</view>
                    </view>
                </list-cell>
                <list-cell last>
                    <view class="flex-fill d-flex justify-content-end align-items-center">
                        <view>总计¥{{ total }},实付</view>
                        <view class="font-size-extra-lg font-weight-bold">¥{{ amount }}</view>
                    </view>
                </list-cell>
            </view>
            <!-- 购物车列表 end -->
            <view class="d-flex align-items-center justify-content-start font-size-sm text-color-warning" 
                style="padding: 20rpx 0;">
                <view class="iconfont iconhelp line-height-100"></view>
                <view>优惠券不与满赠、满减活动共享</view>
            </view>
            <!-- 支付方式 begin -->
            <view class="payment">
                <list-cell last :hover="false">
                    <text>支付方式</text>
                </list-cell>
                <list-cell>
                    <view class="d-flex align-items-center justify-content-between w-100 disabled">
                        <view class="iconfont iconbalance line-height-100 payment-icon"></view>
                        <view class="flex-fill">余额支付(余额¥0)</view>
                        <view class="font-size-sm">余额不足</view>
                        <view class="iconfont iconradio-button-off line-height-100 checkbox"></view>
                    </view>
                </list-cell>
                <list-cell last>
                    <view class="d-flex align-items-center justify-content-between w-100">
                        <view class="iconfont iconwxpay line-height-100 payment-icon" style="color: #7EB73A;"></view>
                        <view class="flex-fill">微信支付</view>
                        <view class="iconfont iconradio-button-on line-height-100 checkbox checked"></view>
                    </view>
                </list-cell>
            </view>
            <!-- 支付方式 end -->
            <!-- 备注 begin -->
            <list-cell arrow last @click="goToRemark">
                <view class="d-flex flex-fill align-items-center justify-content-between overflow-hidden">
                    <view class="flex-shrink-0 mr-20">备注</view>
                    <view class="text-color-primary flex-fill text-truncate text-right">{{ form.remark || '点击填写备注' }}</view>
                </view>
            </list-cell>
            <!-- 备注 end -->
        </view>
        <!-- 付款栏 begin -->
        <view class="w-100 pay-box position-fixed fixed-bottom d-flex align-items-center justify-content-between bg-white">
            <view class="font-size-sm" style="margin-left: 20rpx;">合计:</view>
            <view class="font-size-lg flex-fill">¥{{ amount }}</view>
            <view class="bg-primary h-100 d-flex align-items-center just-content-center text-color-white font-size-base"
                style="padding: 0 60rpx;" @tap="submit">
                付款
            </view>
        </view>
        <!-- 付款栏 end -->
        <modal :show="ensureAddressModalVisible" custom :mask-closable="false" :radius="0" width="90%">
            <view class="modal-content">
                <view class="d-flex justify-content-end">
                    <image src="/static/images/pay/close.png" style="width: 40rpx; height: 40rpx;" @tap="ensureAddressModalVisible=false"></image>
                </view>
                <view class="d-flex just-content-center align-items-center" style="margin-bottom: 40px;">
                    <view class="font-size-extra-lg text-color-base">请再次确认下单地址</view>
                </view>
                <view class="d-flex font-size-base text-color-base font-weight-bold align-items-center justify-content-between mb-20">
                    <view>{{ address.accept_name }} {{ address.sex ? '女士' : '先生' }}</view>
                    <view>{{ address.mobile }}</view>
                </view>
                <view class="d-flex font-size-sm text-color-assist align-items-center justify-content-between mb-40">
                    <view>{{ address.street + address.door_number }}</view>
                    <button type="primary" size="mini" plain class="change-address-btn">修改地址</button>
                </view>
                <button type="primary" class="pay_btn" @tap="pay">确认并付款</button>
            </view>
        </modal>
    </view>
</template>
 
<script>
    import {mapState, mapMutations} from 'vuex'
    import listCell from '@/components/list-cell/list-cell'
    import modal from '@/components/modal/modal'
    import orders from '@/api/orders'
    
    export default {
        components: {
            listCell,
            modal
        },
        data() {
            return {
                cart: [],
                form: {
                    remark: ''
                },
                ensureAddressModalVisible: false
            }
        },
        computed: {
            ...mapState(['orderType', 'address', 'store']),
            total() {
                return this.cart.reduce((acc, cur) => acc + cur.number * cur.price, 0)
            },
            amount() {
                return this.cart.reduce((acc, cur) => acc + cur.number * cur.price, 0)
            }
        },
        onLoad(option) {
            const {remark} = option
            this.cart = uni.getStorageSync('cart')
            remark && this.$set(this.form, 'remark', remark)
        },
        methods: {
            ...mapMutations(['SET_ORDER']),
            goToRemark() {
                uni.navigateTo({
                    url: '/pages/remark/remark?remark=' + this.form.remark
                })
            },
            chooseAddress() {
                uni.navigateTo({
                    url: '/pages/address/address?is_choose=true&scene=pay'
                })
            },
            goToPackages() {
                uni.navigateTo({
                    url: '/pages/packages/index'
                })
            },
            submit() {
                if(this.orderType == 'takeout') {
                    this.ensureAddressModalVisible = true
                } else {
                    this.pay()
                }
            },
            pay() {
                uni.showLoading({title: '加载中'})
                //测试订单
                let order = this.orderType == 'takein' ? orders[0] : orders[1]
                order = Object.assign(order, {status: 1})
                this.SET_ORDER(order)
                uni.removeStorageSync('cart')
                uni.reLaunch({
                    url: '/pages/take-foods/take-foods'
                })
                uni.hideLoading()
            }
        }
    }
</script>
 
<style lang="scss" scoped>
    .container {
        padding: 30rpx;
    }
    
    .arrow {
        width: 50rpx; 
        height: 50rpx;
        position: relative;
        margin-right: -10rpx;
    }
    
    .location {
        .store-name {
            font-size: $font-size-lg;
        }
        
        .iconfont {
            font-size: 50rpx;
            line-height: 100%;
            color: $color-primary;
        }
    }
    
    .section-1 {
        margin-bottom: 30rpx;
        .contact {
            .contact-tip {
                margin-left: 10rpx;
                border: 2rpx solid $color-primary;
                padding: 6rpx 10rpx;
                color: $color-primary;
            }
        }
    }
    
    .section-2 {
        .name-and-props {
            width: 65%;
        }
    }
    
    .payment {
        margin-bottom: 30rpx;
        
        .disabled {
            color: $text-color-grey;
        }
        
        .payment-icon {
            font-size: 44rpx; 
            margin-right: 10rpx;
        }
        
        .checkbox {
            font-size: 36rpx;
            margin-left: 10rpx;
        }
        
        .checked {
            color: $color-primary;
        }
    }
    
    .pay-box {
        box-shadow: 0 0 20rpx rgba(0, 0, 0, .1);
        height: 100rpx;
    }
    
    .modal-content {
        .change-address-btn {
            line-height: 2;
            padding: 0 1em;
        }
        .pay_btn {
            width: 100%;
            border-radius: 50rem !important;
            line-height: 3;
        }
    }
</style>