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
| <template>
| <view class="box">
| <view class="title">输入自提码</view>
| <view class="input">
| <input type="number" placeholder="请输入6位自提码" />
| </view>
| <view class="btn">确认</view>
| <view class="footer">
| <image src="/pagesA/images/ic_saoma@2x.png" mode="widthFix"></image>
| <text>扫码核销</text>
| </view>
| </view>
| </template>
|
| <script>
| export default {
| data() {
| return {
|
| };
| }
| }
| </script>
|
| <style lang="scss" scoped>
| .box {
| width: 100vw;
| height: 100vh;
| display: flex;
| padding-top: 198rpx;
| box-sizing: border-box;
| align-items: center;
| flex-direction: column;
| background: linear-gradient( 180deg, #C8F3FF 0%, #FFFFFF 52.19%, #FFFFFF 100%);
| .title {
| font-weight: 600;
| font-size: 34rpx;
| color: #222222;
| }
| .input {
| width: 630rpx;
| height: 88rpx;
| padding: 0 30rpx;
| box-sizing: border-box;
| background: #FFFFFF;
| border-radius: 50rpx;
| border: 2rpx solid #004096;
| margin-top: 40rpx;
| input {
| width: 100%;
| height: 100%;
| font-weight: 400;
| font-size: 32rpx;
| color: #111111;
| text-align: center;
| }
| }
| .btn {
| width: 630rpx;
| height: 88rpx;
| line-height: 88rpx;
| text-align: center;
| background: #004096;
| border-radius: 44rpx;
| font-weight: 600;
| font-size: 32rpx;
| color: #FFFFFF;
| margin-top: 40rpx;
| }
| .footer {
| display: flex;
| align-items: center;
| margin-top: 48rpx;
| image {
| width: 40rpx;
| height: 40rpx;
| margin-right: 12rpx;
| }
| text {
| font-weight: 400;
| font-size: 28rpx;
| color: #004096;
| }
| }
| }
| </style>
|
|