|
@@ -0,0 +1,631 @@
|
|
1
|
+<template>
|
|
2
|
+ <div class="page">
|
|
3
|
+ <div class="card">
|
|
4
|
+ <div class="row head-row">
|
|
5
|
+ <div class="l">商品总额</div>
|
|
6
|
+ <div class="r">{{ totalPrice }}</div>
|
|
7
|
+ </div>
|
|
8
|
+ <div class="row" v-if="discount.show">
|
|
9
|
+ <div class="l">折扣</div>
|
|
10
|
+ <div class="r">
|
|
11
|
+ {{ (totalPrice - discount.value) | plusMinus }}
|
|
12
|
+ <span class="close" @click="removeDiscount">
|
|
13
|
+ <my-image
|
|
14
|
+ class="img"
|
|
15
|
+ src="/static/icon/close2.png"
|
|
16
|
+ ></my-image>
|
|
17
|
+ </span>
|
|
18
|
+ </div>
|
|
19
|
+ </div>
|
|
20
|
+ <div class="row" v-if="cashValue">
|
|
21
|
+ <div class="l">现金</div>
|
|
22
|
+ <div class="r">
|
|
23
|
+ -{{ cashValue }}
|
|
24
|
+ <span class="close" @click="cashValue = ''">
|
|
25
|
+ <my-image
|
|
26
|
+ class="img"
|
|
27
|
+ src="/static/icon/close2.png"
|
|
28
|
+ ></my-image>
|
|
29
|
+ </span>
|
|
30
|
+ </div>
|
|
31
|
+ </div>
|
|
32
|
+ <div class="info" v-if="surplusPrice > 0">
|
|
33
|
+ <div class="tools">
|
|
34
|
+ <span @click="discountShow">折扣</span>
|
|
35
|
+ <span>优惠券</span>
|
|
36
|
+ </div>
|
|
37
|
+ <div class="money">
|
|
38
|
+ <span>应收(元)</span>
|
|
39
|
+ <span class="price"> {{ surplusPrice }} </span>
|
|
40
|
+ </div>
|
|
41
|
+ </div>
|
|
42
|
+ <div class="success" v-if="surplusPrice <= 0">
|
|
43
|
+ <my-image
|
|
44
|
+ v-if="surplusPrice === 0"
|
|
45
|
+ class="img"
|
|
46
|
+ src="/static/icon/ok1.png"
|
|
47
|
+ ></my-image>
|
|
48
|
+ <my-image
|
|
49
|
+ v-if="surplusPrice < 0"
|
|
50
|
+ class="img"
|
|
51
|
+ src="/static/icon/ok2.png"
|
|
52
|
+ ></my-image>
|
|
53
|
+ <div class="text" :class="{ text2: surplusPrice < 0 }">
|
|
54
|
+ {{ successText }}
|
|
55
|
+ </div>
|
|
56
|
+ </div>
|
|
57
|
+ </div>
|
|
58
|
+
|
|
59
|
+ <div class="submit-btn" v-if="surplusPrice <= 0" @click="submit">
|
|
60
|
+ 完成支付
|
|
61
|
+ </div>
|
|
62
|
+
|
|
63
|
+ <ul class="pay-list" v-if="surplusPrice > 0">
|
|
64
|
+ <li class="item" @click="cashVisibile = true">现金</li>
|
|
65
|
+ <li class="item">刷卡</li>
|
|
66
|
+ <li class="item">支付宝</li>
|
|
67
|
+ <li class="item">微信</li>
|
|
68
|
+ </ul>
|
|
69
|
+
|
|
70
|
+ <div class="modal" v-if="cashVisibile">
|
|
71
|
+ <div class="bg" @click="cashVisibile = false"></div>
|
|
72
|
+ <div class="modal-body">
|
|
73
|
+ <div class="modal-head">
|
|
74
|
+ <div>现金</div>
|
|
75
|
+ <div @click="cashVisibile = false">
|
|
76
|
+ <my-image
|
|
77
|
+ class="close"
|
|
78
|
+ src="/static/icon/close3.png"
|
|
79
|
+ ></my-image>
|
|
80
|
+ </div>
|
|
81
|
+ </div>
|
|
82
|
+ <div class="modal-main">
|
|
83
|
+ <div class="collection">
|
|
84
|
+ <section class="l">
|
|
85
|
+ <div class="name">实收</div>
|
|
86
|
+ <!-- <input type="d" class="digit"> -->
|
|
87
|
+ <div
|
|
88
|
+ class="input"
|
|
89
|
+ :class="{ focus: inputType === 3 }"
|
|
90
|
+ >
|
|
91
|
+ {{ cashValue }}
|
|
92
|
+ </div>
|
|
93
|
+ <!-- <div class="surplus">剩余应收{{actualPrice}}</div> -->
|
|
94
|
+ </section>
|
|
95
|
+ <section class="r">
|
|
96
|
+ <div class="name">找零</div>
|
|
97
|
+ <div class="input">0</div>
|
|
98
|
+ </section>
|
|
99
|
+ </div>
|
|
100
|
+ </div>
|
|
101
|
+ <keyboard-package
|
|
102
|
+ @onInput="onInput($event, 'cash')"
|
|
103
|
+ @onDelete="onDelete('cash')"
|
|
104
|
+ @onConfirm="onConfirm('cash')"
|
|
105
|
+ ></keyboard-package>
|
|
106
|
+ </div>
|
|
107
|
+ </div>
|
|
108
|
+
|
|
109
|
+ <!-- 折扣 -->
|
|
110
|
+ <div class="modal" v-if="discountVisibile">
|
|
111
|
+ <div class="bg" @click="discountVisibile = false"></div>
|
|
112
|
+ <div class="modal-body">
|
|
113
|
+ <div class="modal-head">
|
|
114
|
+ <div>折扣</div>
|
|
115
|
+ <div @click="discountVisibile = false">
|
|
116
|
+ <my-image
|
|
117
|
+ class="close"
|
|
118
|
+ src="/static/icon/close3.png"
|
|
119
|
+ ></my-image>
|
|
120
|
+ </div>
|
|
121
|
+ </div>
|
|
122
|
+ <div class="modal-main">
|
|
123
|
+ <div class="collection">
|
|
124
|
+ <section class="l" @click="inputType = 0">
|
|
125
|
+ <div class="name">折后总额</div>
|
|
126
|
+ <!-- <input type="d" class="digit"> -->
|
|
127
|
+ <div
|
|
128
|
+ class="input"
|
|
129
|
+ :class="{ focus: inputType === 0 }"
|
|
130
|
+ >
|
|
131
|
+ {{ discount.value }}
|
|
132
|
+ </div>
|
|
133
|
+ </section>
|
|
134
|
+ <section class="r" @click="inputType = 1">
|
|
135
|
+ <div class="name">折扣率</div>
|
|
136
|
+ <div
|
|
137
|
+ class="input"
|
|
138
|
+ :class="{ focus: inputType === 1 }"
|
|
139
|
+ >
|
|
140
|
+ {{ discount.ratio }}
|
|
141
|
+ </div>
|
|
142
|
+ %
|
|
143
|
+ </section>
|
|
144
|
+ </div>
|
|
145
|
+ </div>
|
|
146
|
+ <keyboard-package
|
|
147
|
+ :disableDot="inputType === 1"
|
|
148
|
+ @onInput="onInput($event, 'discount')"
|
|
149
|
+ @onDelete="onDelete('discount')"
|
|
150
|
+ @onConfirm="onConfirm('discount')"
|
|
151
|
+ ></keyboard-package>
|
|
152
|
+ </div>
|
|
153
|
+ </div>
|
|
154
|
+ </div>
|
|
155
|
+</template>
|
|
156
|
+
|
|
157
|
+<script>
|
|
158
|
+import MyImage from "../../../components/image/index";
|
|
159
|
+import KeyboardPackage from "../../../components/keyboard-package/keyboard-package";
|
|
160
|
+
|
|
161
|
+export default {
|
|
162
|
+ name: "",
|
|
163
|
+ components: { MyImage, KeyboardPackage },
|
|
164
|
+ filters: {
|
|
165
|
+ plusMinus(v) {
|
|
166
|
+ if (v > 0) {
|
|
167
|
+ return "-" + +v.toFixed(2);
|
|
168
|
+ } else {
|
|
169
|
+ v = 0 - v;
|
|
170
|
+ return "+" + v.toFixed(2);
|
|
171
|
+ }
|
|
172
|
+ },
|
|
173
|
+ },
|
|
174
|
+ // 数据
|
|
175
|
+ data() {
|
|
176
|
+ return {
|
|
177
|
+ goods: [],
|
|
178
|
+
|
|
179
|
+ inputType: 0, // 0 折扣总额。 1 折扣率 3 现金
|
|
180
|
+
|
|
181
|
+ cashVisibile: false, // 输入现金显示
|
|
182
|
+ cashValue: "",
|
|
183
|
+ // 折扣
|
|
184
|
+ discountVisibile: false,
|
|
185
|
+ discount: {
|
|
186
|
+ show: false,
|
|
187
|
+ ratio: "",
|
|
188
|
+ value: "",
|
|
189
|
+ },
|
|
190
|
+ btnLoading: false,
|
|
191
|
+ };
|
|
192
|
+ },
|
|
193
|
+
|
|
194
|
+ onLoad() {
|
|
195
|
+ this.goods = this.$store.state.common.cashierGoodList;
|
|
196
|
+ if (!this.goods) {
|
|
197
|
+ this.router.back();
|
|
198
|
+ }
|
|
199
|
+ },
|
|
200
|
+ async onShow() {},
|
|
201
|
+ // 函数
|
|
202
|
+ methods: {
|
|
203
|
+ onInput(v, name) {
|
|
204
|
+ switch (name) {
|
|
205
|
+ case "discount":
|
|
206
|
+ this.discount.show = true;
|
|
207
|
+ // 折扣
|
|
208
|
+ if (this.inputType === 0) {
|
|
209
|
+ this.discount.value += v;
|
|
210
|
+ this.computeDiscountRatio();
|
|
211
|
+ } else {
|
|
212
|
+ this.discount.ratio += v;
|
|
213
|
+ this.computeDiscountValue();
|
|
214
|
+ }
|
|
215
|
+
|
|
216
|
+ break;
|
|
217
|
+ case "cash":
|
|
218
|
+ // 现金
|
|
219
|
+ this.cashValue += v;
|
|
220
|
+ break;
|
|
221
|
+
|
|
222
|
+ default:
|
|
223
|
+ break;
|
|
224
|
+ }
|
|
225
|
+ },
|
|
226
|
+
|
|
227
|
+ onDelete(name) {
|
|
228
|
+ switch (name) {
|
|
229
|
+ case "discount":
|
|
230
|
+ // 折扣
|
|
231
|
+ if (this.inputType === 0) {
|
|
232
|
+ this.discount.value = this.discount.value.replace(
|
|
233
|
+ /.$/,
|
|
234
|
+ ""
|
|
235
|
+ );
|
|
236
|
+ this.computeDiscountRatio();
|
|
237
|
+ if (this.discount.value === "") {
|
|
238
|
+ this.discount.show = false;
|
|
239
|
+ }
|
|
240
|
+ } else {
|
|
241
|
+ this.discount.ratio = String(
|
|
242
|
+ this.discount.ratio
|
|
243
|
+ ).replace(/.$/, "");
|
|
244
|
+ if (this.discount.ratio === "") {
|
|
245
|
+ this.discount.show = false;
|
|
246
|
+ }
|
|
247
|
+ if (this.cashValue === "") {
|
|
248
|
+ this.cashValue === "";
|
|
249
|
+ }
|
|
250
|
+ this.computeDiscountValue();
|
|
251
|
+ }
|
|
252
|
+
|
|
253
|
+ break;
|
|
254
|
+ case "cash":
|
|
255
|
+ // 现金
|
|
256
|
+ this.cashValue = this.cashValue.replace(/.$/, "");
|
|
257
|
+ break;
|
|
258
|
+
|
|
259
|
+ default:
|
|
260
|
+ break;
|
|
261
|
+ }
|
|
262
|
+ },
|
|
263
|
+
|
|
264
|
+ onConfirm(name) {
|
|
265
|
+ switch (name) {
|
|
266
|
+ case "discount":
|
|
267
|
+ // 折扣
|
|
268
|
+ this.discountVisibile = false;
|
|
269
|
+ break;
|
|
270
|
+ case "cash":
|
|
271
|
+ // 现金
|
|
272
|
+ this.cashVisibile = false;
|
|
273
|
+ break;
|
|
274
|
+
|
|
275
|
+ default:
|
|
276
|
+ break;
|
|
277
|
+ }
|
|
278
|
+ },
|
|
279
|
+
|
|
280
|
+ // 删除折扣
|
|
281
|
+ removeDiscount() {
|
|
282
|
+ this.discount.show = false;
|
|
283
|
+ this.discount.ratio = "";
|
|
284
|
+ this.discount.value = "";
|
|
285
|
+ },
|
|
286
|
+ // 折扣显示
|
|
287
|
+ discountShow() {
|
|
288
|
+ this.discountVisibile = true;
|
|
289
|
+ this.inputType = 0;
|
|
290
|
+ },
|
|
291
|
+ // 计算折扣后值
|
|
292
|
+ computeDiscountValue() {
|
|
293
|
+ let ratioV = (
|
|
294
|
+ (this.totalPrice * this.discount.ratio) /
|
|
295
|
+ 100
|
|
296
|
+ ).toFixed(2);
|
|
297
|
+ this.discount.value = ratioV;
|
|
298
|
+ },
|
|
299
|
+ // 计算折扣率
|
|
300
|
+ computeDiscountRatio() {
|
|
301
|
+ this.discount.ratio = Math.round(
|
|
302
|
+ (this.discount.value / this.totalPrice) * 100
|
|
303
|
+ );
|
|
304
|
+ },
|
|
305
|
+
|
|
306
|
+ submit() {
|
|
307
|
+ if (this.btnLoading) {
|
|
308
|
+ return;
|
|
309
|
+ }
|
|
310
|
+ let sendData = {
|
|
311
|
+ totalAmount: this.totalPrice * 100,
|
|
312
|
+ payAmount: this.payAmount * 100,
|
|
313
|
+ discount: this.discount.show ? Number(this.discount.ratio) : 100, // 折扣
|
|
314
|
+ payMethod: 1, // 支付方式,1-现金支付,2-刷卡支付,3-支付宝支付,4-微信支付
|
|
315
|
+ orderItems: [],
|
|
316
|
+ };
|
|
317
|
+ for (let item of this.goods) {
|
|
318
|
+ sendData.orderItems.push({
|
|
319
|
+ productId: item.id,
|
|
320
|
+ // skuId:item.id,
|
|
321
|
+ // skuId: "1",
|
|
322
|
+ count: item.select_num,
|
|
323
|
+ remark: "",
|
|
324
|
+ });
|
|
325
|
+ }
|
|
326
|
+ console.log(sendData);
|
|
327
|
+ this.submitLoading = true;
|
|
328
|
+ uni.showLoading({
|
|
329
|
+ title: "提交中...",
|
|
330
|
+ mask: true,
|
|
331
|
+ });
|
|
332
|
+ this.api
|
|
333
|
+ .post("/Order/Settle", sendData, { pass: true })
|
|
334
|
+ .then((res) => {
|
|
335
|
+ this.btnLoading = false;
|
|
336
|
+ uni.hideLoading();
|
|
337
|
+ if (res.success) {
|
|
338
|
+ this.fn.showToast("保存成功");
|
|
339
|
+ this.router.back();
|
|
340
|
+ } else {
|
|
341
|
+ this.fn.showModal({
|
|
342
|
+ content: res.message,
|
|
343
|
+ showCancel: false,
|
|
344
|
+ });
|
|
345
|
+ }
|
|
346
|
+ });
|
|
347
|
+ },
|
|
348
|
+ },
|
|
349
|
+
|
|
350
|
+ // 数据计算
|
|
351
|
+ computed: {
|
|
352
|
+ user() {
|
|
353
|
+ return this.$store.state.user.user;
|
|
354
|
+ },
|
|
355
|
+ // 总金额
|
|
356
|
+ totalPrice() {
|
|
357
|
+ let n = 0;
|
|
358
|
+ for (let item of this.goods) {
|
|
359
|
+ n += item.price / 100;
|
|
360
|
+ }
|
|
361
|
+ return n;
|
|
362
|
+ // return 100;
|
|
363
|
+ },
|
|
364
|
+ // 打折 优惠 后价格
|
|
365
|
+ actualPrice() {
|
|
366
|
+ let price = this.totalPrice;
|
|
367
|
+ if (this.discount.show) {
|
|
368
|
+ price = this.discount.value;
|
|
369
|
+ }
|
|
370
|
+ return price;
|
|
371
|
+ },
|
|
372
|
+ // 收款金额
|
|
373
|
+ payAmount() {
|
|
374
|
+ let v = 0;
|
|
375
|
+ if (this.cashValue) {
|
|
376
|
+ v += Number(this.cashValue);
|
|
377
|
+ }
|
|
378
|
+ return v;
|
|
379
|
+ },
|
|
380
|
+ // 收款后还差多少
|
|
381
|
+ surplusPrice() {
|
|
382
|
+ let v = this.actualPrice;
|
|
383
|
+ if (this.payAmount) {
|
|
384
|
+ v = v - this.payAmount;
|
|
385
|
+ }
|
|
386
|
+ return v;
|
|
387
|
+ },
|
|
388
|
+ // 成功显示文字
|
|
389
|
+ successText() {
|
|
390
|
+ if (this.surplusPrice === 0) {
|
|
391
|
+ return `实收 ¥${this.actualPrice}`;
|
|
392
|
+ } else {
|
|
393
|
+ return `实收 ¥${this.actualPrice - this.surplusPrice},找零¥${
|
|
394
|
+ 0 - this.surplusPrice
|
|
395
|
+ }`;
|
|
396
|
+ }
|
|
397
|
+ },
|
|
398
|
+ },
|
|
399
|
+
|
|
400
|
+ // 数据监听
|
|
401
|
+ watch: {},
|
|
402
|
+};
|
|
403
|
+</script>
|
|
404
|
+
|
|
405
|
+<style lang="scss" scoped>
|
|
406
|
+.page {
|
|
407
|
+ background-color: #0399ce;
|
|
408
|
+ min-height: 100vh;
|
|
409
|
+ display: flex;
|
|
410
|
+ flex-direction: column;
|
|
411
|
+ justify-content: flex-end;
|
|
412
|
+ padding-bottom: px(40);
|
|
413
|
+}
|
|
414
|
+.card {
|
|
415
|
+ background-color: #fff;
|
|
416
|
+ margin: px(35);
|
|
417
|
+ border-radius: px(8);
|
|
418
|
+ .row {
|
|
419
|
+ display: flex;
|
|
420
|
+ justify-content: space-between;
|
|
421
|
+ align-items: center;
|
|
422
|
+ padding: 0 px(30);
|
|
423
|
+ font-size: px(38);
|
|
424
|
+ height: px(110);
|
|
425
|
+ color: #333;
|
|
426
|
+ .close {
|
|
427
|
+ width: px(40);
|
|
428
|
+ height: px(40);
|
|
429
|
+ border-radius: 50%;
|
|
430
|
+ background-color: #d1d1d1;
|
|
431
|
+ display: inline-flex;
|
|
432
|
+ align-items: center;
|
|
433
|
+ justify-content: center;
|
|
434
|
+ margin-left: px(20);
|
|
435
|
+ .img {
|
|
436
|
+ width: px(25);
|
|
437
|
+ height: px(25);
|
|
438
|
+ /deep/ img {
|
|
439
|
+ width: px(25);
|
|
440
|
+ height: px(25);
|
|
441
|
+ }
|
|
442
|
+ }
|
|
443
|
+ }
|
|
444
|
+ }
|
|
445
|
+ .head-row {
|
|
446
|
+ height: px(120);
|
|
447
|
+ font-size: px(44);
|
|
448
|
+ border-bottom: 1px solid #f1f1f1;
|
|
449
|
+ }
|
|
450
|
+ .row ~ .row {
|
|
451
|
+ border-top: 1px solid #f1f1f1;
|
|
452
|
+ }
|
|
453
|
+ .info {
|
|
454
|
+ padding: px(50);
|
|
455
|
+ display: flex;
|
|
456
|
+ justify-content: space-between;
|
|
457
|
+ align-items: center;
|
|
458
|
+ }
|
|
459
|
+ .tools {
|
|
460
|
+ display: flex;
|
|
461
|
+ align-items: center;
|
|
462
|
+ span {
|
|
463
|
+ border-radius: px(8);
|
|
464
|
+ height: px(66);
|
|
465
|
+ padding: 0 px(20);
|
|
466
|
+ background-color: #ebdcbb;
|
|
467
|
+ color: #4f3912;
|
|
468
|
+ font-size: px(34);
|
|
469
|
+ display: inline-flex;
|
|
470
|
+ justify-content: center;
|
|
471
|
+ align-items: center;
|
|
472
|
+ & ~ span {
|
|
473
|
+ margin-left: px(20);
|
|
474
|
+ }
|
|
475
|
+ }
|
|
476
|
+ }
|
|
477
|
+ .money {
|
|
478
|
+ display: flex;
|
|
479
|
+ flex-direction: column;
|
|
480
|
+ font-size: px(40);
|
|
481
|
+ .price {
|
|
482
|
+ font-size: px(74);
|
|
483
|
+ margin-top: px(15);
|
|
484
|
+ color: #049dd7;
|
|
485
|
+ }
|
|
486
|
+ }
|
|
487
|
+}
|
|
488
|
+.pay-list {
|
|
489
|
+ display: flex;
|
|
490
|
+ justify-content: space-between;
|
|
491
|
+ align-items: center;
|
|
492
|
+ padding: 0 px(35);
|
|
493
|
+ .item {
|
|
494
|
+ width: 32%;
|
|
495
|
+ height: px(150);
|
|
496
|
+ border-radius: px(8);
|
|
497
|
+ background-color: #fff;
|
|
498
|
+ font-size: px(40);
|
|
499
|
+ display: flex;
|
|
500
|
+ align-items: center;
|
|
501
|
+ padding: px(30);
|
|
502
|
+ box-sizing: border-box;
|
|
503
|
+ }
|
|
504
|
+}
|
|
505
|
+.modal {
|
|
506
|
+ position: fixed;
|
|
507
|
+ top: 0;
|
|
508
|
+ left: 0;
|
|
509
|
+ width: 100%;
|
|
510
|
+ height: 100%;
|
|
511
|
+ z-index: 100;
|
|
512
|
+ .bg {
|
|
513
|
+ width: 100%;
|
|
514
|
+ height: 100%;
|
|
515
|
+ background-color: rgba(0, 0, 0, 0.3);
|
|
516
|
+ }
|
|
517
|
+ .modal-body {
|
|
518
|
+ position: absolute;
|
|
519
|
+ bottom: 0;
|
|
520
|
+ left: 0;
|
|
521
|
+ width: 100%;
|
|
522
|
+ z-index: 1;
|
|
523
|
+ }
|
|
524
|
+ .modal-head {
|
|
525
|
+ height: px(130);
|
|
526
|
+ background-color: #f4f4f4;
|
|
527
|
+ display: flex;
|
|
528
|
+ align-items: center;
|
|
529
|
+ justify-content: space-between;
|
|
530
|
+ padding: 0 px(35);
|
|
531
|
+ .close {
|
|
532
|
+ width: px(40);
|
|
533
|
+ height: px(40);
|
|
534
|
+ /deep/ img {
|
|
535
|
+ width: px(40);
|
|
536
|
+ height: px(40);
|
|
537
|
+ }
|
|
538
|
+ }
|
|
539
|
+ }
|
|
540
|
+ .modal-main {
|
|
541
|
+ padding: px(35);
|
|
542
|
+ background-color: #fff;
|
|
543
|
+ }
|
|
544
|
+}
|
|
545
|
+.collection {
|
|
546
|
+ display: flex;
|
|
547
|
+ justify-content: space-between;
|
|
548
|
+ align-items: flex-start;
|
|
549
|
+ .l,
|
|
550
|
+ .r {
|
|
551
|
+ width: 49%;
|
|
552
|
+ }
|
|
553
|
+ .name {
|
|
554
|
+ font-size: px(38);
|
|
555
|
+ color: #666;
|
|
556
|
+ }
|
|
557
|
+ .input {
|
|
558
|
+ font-size: px(70);
|
|
559
|
+ color: #333;
|
|
560
|
+ margin-top: px(30);
|
|
561
|
+ min-height: px(80);
|
|
562
|
+ line-height: px(80);
|
|
563
|
+ position: relative;
|
|
564
|
+ display: inline-block;
|
|
565
|
+ min-width: 2px;
|
|
566
|
+ max-width: 100%;
|
|
567
|
+ word-break: break-all;
|
|
568
|
+ &.focus {
|
|
569
|
+ &::after {
|
|
570
|
+ content: "";
|
|
571
|
+ position: absolute;
|
|
572
|
+ right: -3px;
|
|
573
|
+ height: 1em;
|
|
574
|
+ bottom: 3px;
|
|
575
|
+ z-index: 1;
|
|
576
|
+ width: 1px;
|
|
577
|
+ background-color: #666;
|
|
578
|
+ animation: focusLine 0.8s linear alternate infinite;
|
|
579
|
+ }
|
|
580
|
+ }
|
|
581
|
+ }
|
|
582
|
+ .surplus {
|
|
583
|
+ font-size: px(38);
|
|
584
|
+ color: #666;
|
|
585
|
+ margin-top: px(30);
|
|
586
|
+ }
|
|
587
|
+}
|
|
588
|
+@keyframes focusLine {
|
|
589
|
+ from {
|
|
590
|
+ opacity: 1;
|
|
591
|
+ }
|
|
592
|
+ to {
|
|
593
|
+ opacity: 0;
|
|
594
|
+ }
|
|
595
|
+}
|
|
596
|
+.success {
|
|
597
|
+ height: px(500);
|
|
598
|
+ display: flex;
|
|
599
|
+ align-items: center;
|
|
600
|
+ justify-content: center;
|
|
601
|
+ flex-direction: column;
|
|
602
|
+ .img {
|
|
603
|
+ width: px(140);
|
|
604
|
+ height: px(140);
|
|
605
|
+ /deep/ img {
|
|
606
|
+ width: px(140);
|
|
607
|
+ height: px(140);
|
|
608
|
+ }
|
|
609
|
+ }
|
|
610
|
+ .text {
|
|
611
|
+ margin-top: px(40);
|
|
612
|
+ font-size: px(50);
|
|
613
|
+ text-align: center;
|
|
614
|
+ color: #06cd58;
|
|
615
|
+ }
|
|
616
|
+ .text2 {
|
|
617
|
+ color: #3c9ec5;
|
|
618
|
+ }
|
|
619
|
+}
|
|
620
|
+.submit-btn {
|
|
621
|
+ height: px(120);
|
|
622
|
+ margin: 0 px(35);
|
|
623
|
+ border-radius: px(8);
|
|
624
|
+ background-color: #fff;
|
|
625
|
+ color: #3c9ec5;
|
|
626
|
+ font-size: px(40);
|
|
627
|
+ display: flex;
|
|
628
|
+ justify-content: center;
|
|
629
|
+ align-items: center;
|
|
630
|
+}
|
|
631
|
+</style>
|