5f2c4d97
“wangming”
Add billing amoun...
|
1
|
<template>
|
5c34676a
“wangming”
对会员端进行了设计
|
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
|
<view class="page-shell home-page">
<view class="page-blur"></view>
<view class="page-blur-secondary"></view>
<view class="page-blur-tertiary"></view>
<view class="page-content">
<view class="topbar capsule-safe">
<view>
<text class="brand-name">绿纤美业</text>
<text class="brand-subtitle">会员专属 SPA 与肌肤管理</text>
</view>
</view>
<view class="hero-card glass-card">
<view class="hero-copy">
<text class="hero-tag">TODAY'S BEAUTY RITUAL</text>
<text class="hero-title">今日专属护理</text>
<text class="hero-desc">
在线预约、会员权益与到店体验,在一份更安静、更柔和的界面里被重新组织。
</text>
</view>
<view class="hero-art-wrap">
<image class="hero-art" src="/static/images/art-home.png" mode="aspectFill" />
</view>
<view class="quick-grid">
<view v-for="item in quickEntries" :key="item.key" class="quick-item" @tap="handleQuick(item)">
<view class="quick-icon" :class="item.iconType">
<view class="icon-core"></view>
</view>
<text class="quick-title">{{ item.title }}</text>
<text class="quick-subtitle">{{ item.subtitle }}</text>
</view>
</view>
</view>
<view class="section-block">
<view class="section-head">
<text class="section-title">最新预约记录</text>
<text class="section-link" @tap="goRecord">查看全部</text>
</view>
<view class="record-card glass-card" @tap="goBookingDetail">
<view class="record-status-row">
<text class="record-status">{{ latestBooking.status }}</text>
<text class="record-time">{{ latestBooking.date }} · {{ latestBooking.displayTime }}</text>
</view>
<text class="record-store">{{ latestBooking.store }}</text>
<view class="record-meta-panel">
<view class="record-meta-item">
<text class="meta-label">护理顾问</text>
<text class="meta-value">{{ latestBooking.therapist }}</text>
</view>
<view class="record-meta-item">
<text class="meta-label">护理空间</text>
<text class="meta-value">{{ latestBooking.room }}</text>
</view>
</view>
</view>
</view>
<view class="section-block stores-section">
<view class="section-head">
<text class="section-title">附近门店</text>
<text class="section-link" @tap="goStoreList">全部门店</text>
</view>
<view
v-for="store in stores"
:key="store.name"
class="store-card glass-card"
@tap="goStoreDetail(store)"
>
<view class="store-cover">
<image class="store-cover-image" :src="store.cover" mode="aspectFill" />
<view class="store-cover-overlay"></view>
<text class="store-cover-badge">{{ store.tag }}</text>
<text class="store-cover-title">{{ store.coverTitle }}</text>
</view>
<view class="store-body">
<view class="store-headline">
<text class="store-name">{{ store.name }}</text>
<text class="store-distance">{{ store.distance }}</text>
</view>
<text class="store-address">{{ store.address }}</text>
<view class="store-meta-row">
<text class="store-meta">营业时间 {{ store.hours }}</text>
<text class="store-meta">{{ store.phone }}</text>
</view>
<view class="store-actions">
<view class="mini-button" @tap.stop="callStore(store.phone)">电话</view>
<view class="mini-button" @tap.stop="openMap(store)">导航</view>
<view class="mini-button primary-mini" @tap.stop="bookStore(store)">预约</view>
</view>
</view>
</view>
</view>
<view class="safe-bottom-space"></view>
</view>
<view class="lf-tabbar-wrap">
<view class="lf-tabbar-panel">
<view
v-for="item in tabs"
:key="item.key"
class="lf-tabbar-item"
:class="{ active: item.key === 'home' }"
@tap="goTab(item)"
>
<view class="lf-tabbar-icon-shell">
<image
class="lf-tabbar-icon"
:src="item.key === 'home' ? item.activeIcon : item.icon"
mode="aspectFit"
/>
</view>
<text class="lf-tabbar-label">{{ item.label }}</text>
</view>
</view>
</view>
</view>
|
5f2c4d97
“wangming”
Add billing amoun...
|
122
123
124
|
</template>
<script>
|
e1dcb3a0
“wangming”
1
|
125
126
127
|
import { bookingRecords } from '@/data/mock'
import { getPickupStores } from '@/api/mall'
import { normalizeStore, getUserLocation, attachDistance, sortByDistance } from '@/utils/store'
|
5f2c4d97
“wangming”
Add billing amoun...
|
128
129
|
export default {
|
5c34676a
“wangming”
对会员端进行了设计
|
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
|
data() {
return {
tabs: [
{
key: 'home',
label: '首页',
path: '/pages/home/home',
icon: '/static/images/tab-home.png',
activeIcon: '/static/images/tab-home-active.png'
},
{
key: 'booking',
label: '预约',
path: '/pages/booking/booking',
icon: '/static/images/tab-booking.png',
activeIcon: '/static/images/tab-booking-active.png'
},
{
key: 'mall',
label: '商城',
path: '/packageMall/main/main',
icon: '/static/images/tab-mall.png',
activeIcon: '/static/images/tab-mall-active.png'
},
{
key: 'profile',
label: '我的',
path: '/pages/profile/profile',
icon: '/static/images/tab-profile.png',
activeIcon: '/static/images/tab-profile-active.png'
}
],
quickEntries: [
{
key: 'booking',
title: '在线预约',
subtitle: '锁定到店时段',
iconType: 'orb'
},
{
key: 'mall',
title: '美容商城',
subtitle: '浏览精选好物',
iconType: 'leaf'
},
{
key: 'record',
title: '预约记录',
subtitle: '查看最近安排',
iconType: 'wave'
}
],
latestBooking: bookingRecords[0],
|
e1dcb3a0
“wangming”
1
|
183
|
stores: []
|
5c34676a
“wangming”
对会员端进行了设计
|
184
185
|
}
},
|
e1dcb3a0
“wangming”
1
|
186
187
188
|
onLoad() {
this.loadNearbyStores()
},
|
5c34676a
“wangming”
对会员端进行了设计
|
189
|
methods: {
|
e1dcb3a0
“wangming”
1
|
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
|
loadNearbyStores() {
let normalized = []
getPickupStores({})
.then((list) => {
const rows = Array.isArray(list) ? list : []
normalized = rows.map((raw) => {
const s = normalizeStore(raw)
s.tag = s.city || '门店'
s.coverTitle = s.name
return s
})
return getUserLocation()
})
.catch(() => null)
.then((loc) => {
attachDistance(normalized, loc)
this.stores = sortByDistance(normalized).slice(0, 3)
})
},
|
5c34676a
“wangming”
对会员端进行了设计
|
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
|
handleQuick(item) {
if (item.key === 'record') {
this.goRecord()
return
}
const pathMap = {
booking: '/pages/booking/booking',
mall: '/packageMall/main/main'
}
uni.redirectTo({
url: pathMap[item.key]
})
},
goRecord() {
uni.navigateTo({
url: '/packageBooking/record/record'
})
},
goBookingDetail() {
uni.navigateTo({
url: `/packageBooking/detail/detail?id=${this.latestBooking.id}`
})
},
goStoreList() {
uni.navigateTo({
url: '/packageBooking/stores/stores'
})
},
goStoreDetail(store) {
uni.navigateTo({
url: `/packageBooking/store-detail/store-detail?id=${store.id}`
})
},
callStore(phone) {
uni.makePhoneCall({
phoneNumber: phone
})
},
openMap(store) {
|
e1dcb3a0
“wangming”
1
|
248
249
250
251
252
253
254
255
256
|
if (store.latitude === null || store.longitude === null || store.latitude === undefined || store.longitude === undefined) {
uni.showToast({ title: '该门店暂无坐标,无法导航', icon: 'none' })
return
}
uni.openLocation({
latitude: store.latitude,
longitude: store.longitude,
name: store.name,
address: store.address || ''
|
5c34676a
“wangming”
对会员端进行了设计
|
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
|
})
},
bookStore(store) {
uni.redirectTo({
url: `/pages/booking/booking?storeId=${store.id}`
})
},
goTab(item) {
if (item.key === 'home') {
return
}
uni.redirectTo({
url: item.path
})
}
}
|
5f2c4d97
“wangming”
Add billing amoun...
|
273
274
275
276
|
}
</script>
<style lang="scss" scoped>
|
5c34676a
“wangming”
对会员端进行了设计
|
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
|
@import '@/styles/mixins.scss';
.topbar {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 28rpx;
}
.brand-name {
display: block;
font-size: 42rpx;
font-weight: 700;
letter-spacing: 2rpx;
}
.brand-subtitle {
display: block;
margin-top: 10rpx;
font-size: 24rpx;
color: $text-secondary;
}
.hero-card {
position: relative;
overflow: hidden;
margin-bottom: 28rpx;
padding: 42rpx;
min-height: 420rpx;
&::after {
content: '';
position: absolute;
right: -84rpx;
top: 8rpx;
width: 420rpx;
height: 420rpx;
border-radius: 50%;
background: radial-gradient(circle, rgba(100, 140, 118, 0.045), rgba(100, 140, 118, 0));
z-index: 0;
|
d8035736
“wangming”
Refactor project ...
|
317
|
animation: lfFloatSoft 11.6s ease-in-out infinite;
|
5c34676a
“wangming”
对会员端进行了设计
|
318
319
320
321
322
323
324
325
326
327
328
329
|
}
&::before {
content: '';
position: absolute;
right: 0;
top: 76rpx;
width: 250rpx;
height: 250rpx;
border-radius: 50%;
border: 2rpx solid rgba(100, 140, 118, 0.038);
z-index: 1;
|
d8035736
“wangming”
Refactor project ...
|
330
|
animation: lfPulseSoft 8.8s ease-in-out infinite;
|
5c34676a
“wangming”
对会员端进行了设计
|
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
|
}
}
.hero-copy {
position: relative;
z-index: 3;
max-width: 100%;
padding-right: 36rpx;
}
.hero-tag {
display: inline-block;
margin-bottom: 18rpx;
font-size: 20rpx;
letter-spacing: 3rpx;
color: $brand-primary;
}
.hero-title {
display: block;
font-size: 62rpx;
line-height: 1.15;
font-weight: 700;
color: $brand-ink;
white-space: nowrap;
}
.hero-desc {
display: block;
margin-top: 20rpx;
color: $text-secondary;
font-size: 28rpx;
line-height: 1.7;
max-width: 100%;
}
.hero-art-wrap {
position: absolute;
right: -118rpx;
top: -8rpx;
z-index: 1;
width: 460rpx;
height: 460rpx;
border-radius: 50%;
overflow: hidden;
opacity: 0.085;
pointer-events: none;
filter: saturate(0.72) brightness(1.04);
|
d8035736
“wangming”
Refactor project ...
|
379
|
animation: lfFloatSoft 12.8s ease-in-out infinite 0.6s;
|
5c34676a
“wangming”
对会员端进行了设计
|
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
|
&::after {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(circle at 34% 40%, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.10) 44%, rgba(255, 255, 255, 0));
}
}
.hero-art {
width: 520rpx;
height: 520rpx;
margin-left: -66rpx;
margin-top: -34rpx;
transform: rotate(-12deg) scale(1.06);
}
.quick-grid {
position: relative;
z-index: 3;
display: flex;
justify-content: space-between;
margin-top: 36rpx;
}
.quick-item {
@include outlined-card(0.8);
width: calc((100% - 24rpx) / 3);
padding: 28rpx 20rpx;
border-radius: 28rpx;
|
d8035736
“wangming”
Refactor project ...
|
410
411
412
413
414
415
416
417
418
419
420
|
transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease, background 320ms ease;
animation: lfRevealUp 780ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.quick-item:nth-child(1) { animation-delay: 0.28s; }
.quick-item:nth-child(2) { animation-delay: 0.36s; }
.quick-item:nth-child(3) { animation-delay: 0.44s; }
.quick-item:active {
transform: translateY(-4rpx) scale(1.01);
box-shadow: 0 20rpx 38rpx rgba(54, 77, 64, 0.08);
|
5c34676a
“wangming”
对会员端进行了设计
|
421
422
423
424
425
426
427
428
429
|
}
.quick-icon {
position: relative;
width: 72rpx;
height: 72rpx;
border-radius: 50%;
background: rgba(210, 191, 156, 0.18);
border: 1rpx solid rgba(210, 191, 156, 0.18);
|
d8035736
“wangming”
Refactor project ...
|
430
|
transition: transform 280ms ease;
|
5c34676a
“wangming”
对会员端进行了设计
|
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
|
}
.quick-icon.leaf {
background: rgba(182, 142, 154, 0.14);
border-color: rgba(182, 142, 154, 0.16);
}
.quick-icon.wave {
background: rgba(175, 194, 181, 0.18);
border-color: rgba(100, 140, 118, 0.12);
}
.icon-core {
position: absolute;
left: 50%;
top: 50%;
width: 22rpx;
height: 22rpx;
margin-left: -11rpx;
margin-top: -11rpx;
border-radius: 50%;
background: $brand-primary-deep;
|
d8035736
“wangming”
Refactor project ...
|
453
454
455
456
457
|
animation: lfPulseSoft 4.6s ease-in-out infinite;
}
.quick-item:active .quick-icon {
transform: scale(1.08) rotate(-6deg);
|
5c34676a
“wangming”
对会员端进行了设计
|
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
|
}
.quick-icon.leaf::before,
.quick-icon.wave::before,
.quick-icon.wave::after,
.quick-icon.orb::before {
content: '';
position: absolute;
}
.quick-icon.orb::before {
width: 42rpx;
height: 42rpx;
left: 15rpx;
top: 15rpx;
border-radius: 50%;
border: 3rpx solid rgba(36, 74, 61, 0.30);
}
.quick-icon.leaf::before {
width: 26rpx;
height: 40rpx;
left: 24rpx;
top: 16rpx;
border-radius: 50% 0 50% 0;
background: rgba(36, 74, 61, 0.22);
transform: rotate(-24deg);
}
.quick-icon.wave::before,
.quick-icon.wave::after {
width: 18rpx;
height: 18rpx;
border: 3rpx solid rgba(36, 74, 61, 0.28);
border-left: 0;
border-bottom: 0;
border-radius: 0 18rpx 0 0;
transform: rotate(45deg);
|
5f2c4d97
“wangming”
Add billing amoun...
|
496
497
|
}
|
5c34676a
“wangming”
对会员端进行了设计
|
498
499
500
|
.quick-icon.wave::before {
left: 19rpx;
top: 28rpx;
|
5f2c4d97
“wangming”
Add billing amoun...
|
501
502
|
}
|
5c34676a
“wangming”
对会员端进行了设计
|
503
504
505
|
.quick-icon.wave::after {
left: 35rpx;
top: 20rpx;
|
5f2c4d97
“wangming”
Add billing amoun...
|
506
507
|
}
|
5c34676a
“wangming”
对会员端进行了设计
|
508
509
510
511
512
|
.quick-title {
display: block;
margin-top: 20rpx;
font-size: 28rpx;
font-weight: 600;
|
5f2c4d97
“wangming”
Add billing amoun...
|
513
514
|
}
|
5c34676a
“wangming”
对会员端进行了设计
|
515
516
517
518
519
520
|
.quick-subtitle {
display: block;
margin-top: 8rpx;
font-size: 22rpx;
line-height: 1.5;
color: $text-secondary;
|
5f2c4d97
“wangming”
Add billing amoun...
|
521
522
523
|
}
.section-block {
|
5c34676a
“wangming”
对会员端进行了设计
|
524
|
margin-bottom: 28rpx;
|
5f2c4d97
“wangming”
Add billing amoun...
|
525
526
|
}
|
5c34676a
“wangming”
对会员端进行了设计
|
527
528
|
.record-card {
padding: 34rpx;
|
d8035736
“wangming”
Refactor project ...
|
529
530
531
532
533
|
transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease;
}
.record-card:active {
transform: translateY(-4rpx);
|
5f2c4d97
“wangming”
Add billing amoun...
|
534
535
|
}
|
5c34676a
“wangming”
对会员端进行了设计
|
536
537
538
539
540
541
542
|
.record-status-row,
.store-headline,
.store-meta-row,
.store-actions {
display: flex;
align-items: center;
justify-content: space-between;
|
5f2c4d97
“wangming”
Add billing amoun...
|
543
544
|
}
|
5c34676a
“wangming”
对会员端进行了设计
|
545
546
547
|
.record-status {
@include chip-status;
font-weight: 600;
|
5f2c4d97
“wangming”
Add billing amoun...
|
548
549
|
}
|
5c34676a
“wangming”
对会员端进行了设计
|
550
551
552
553
554
555
556
|
.record-time,
.record-store,
.store-address,
.store-meta,
.meta-label {
font-size: 24rpx;
color: $text-secondary;
|
5f2c4d97
“wangming”
Add billing amoun...
|
557
558
|
}
|
5c34676a
“wangming”
对会员端进行了设计
|
559
560
561
562
563
564
565
|
.record-store {
display: block;
margin: 20rpx 0 22rpx;
font-size: 34rpx;
line-height: 1.4;
font-weight: 700;
color: $text-primary;
|
5f2c4d97
“wangming”
Add billing amoun...
|
566
567
|
}
|
5c34676a
“wangming”
对会员端进行了设计
|
568
569
570
571
572
573
574
|
.record-meta-panel {
display: flex;
justify-content: space-between;
padding: 22rpx 24rpx;
border-radius: 28rpx;
background: rgba(210, 191, 156, 0.10);
box-shadow: $shadow-soft;
|
d8035736
“wangming”
Refactor project ...
|
575
576
577
578
579
580
|
transition: transform 280ms ease, background 280ms ease;
}
.record-card:active .record-meta-panel {
transform: translateY(-2rpx);
background: rgba(210, 191, 156, 0.14);
|
5f2c4d97
“wangming”
Add billing amoun...
|
581
582
|
}
|
5c34676a
“wangming”
对会员端进行了设计
|
583
584
|
.record-meta-item {
width: 48%;
|
5f2c4d97
“wangming”
Add billing amoun...
|
585
586
|
}
|
5c34676a
“wangming”
对会员端进行了设计
|
587
588
589
|
.meta-label,
.meta-value {
display: block;
|
5f2c4d97
“wangming”
Add billing amoun...
|
590
591
|
}
|
5c34676a
“wangming”
对会员端进行了设计
|
592
593
594
595
596
|
.meta-value {
margin-top: 8rpx;
font-size: 28rpx;
font-weight: 600;
color: $brand-primary-deep;
|
5f2c4d97
“wangming”
Add billing amoun...
|
597
598
|
}
|
5c34676a
“wangming”
对会员端进行了设计
|
599
600
601
602
|
.store-card {
overflow: hidden;
margin-bottom: 24rpx;
padding: 0;
|
d8035736
“wangming”
Refactor project ...
|
603
604
605
606
607
608
|
transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 340ms ease;
}
.store-card:active {
transform: translateY(-6rpx);
box-shadow: 0 22rpx 42rpx rgba(54, 77, 64, 0.1);
|
5f2c4d97
“wangming”
Add billing amoun...
|
609
610
|
}
|
5c34676a
“wangming”
对会员端进行了设计
|
611
612
613
614
615
|
.store-cover {
position: relative;
height: 240rpx;
padding: 28rpx;
color: #fff;
|
5f2c4d97
“wangming”
Add billing amoun...
|
616
617
|
}
|
5c34676a
“wangming”
对会员端进行了设计
|
618
619
620
621
622
623
624
|
.store-cover-image,
.store-cover-overlay {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
|
5f2c4d97
“wangming”
Add billing amoun...
|
625
626
|
}
|
5c34676a
“wangming”
对会员端进行了设计
|
627
628
|
.store-cover-overlay {
background: linear-gradient(120deg, rgba(36, 74, 61, 0.18), rgba(36, 74, 61, 0.50));
|
5f2c4d97
“wangming”
Add billing amoun...
|
629
630
|
}
|
d8035736
“wangming”
Refactor project ...
|
631
632
633
634
635
636
637
638
|
.store-cover-image {
transition: transform 1.2s ease;
}
.store-card:active .store-cover-image {
transform: scale(1.05);
}
|
5c34676a
“wangming”
对会员端进行了设计
|
639
640
641
642
|
.store-cover-badge,
.store-cover-title {
position: relative;
z-index: 2;
|
5f2c4d97
“wangming”
Add billing amoun...
|
643
644
|
}
|
5c34676a
“wangming”
对会员端进行了设计
|
645
646
|
.store-cover-badge {
@include chip-inverse;
|
5f2c4d97
“wangming”
Add billing amoun...
|
647
648
|
}
|
5c34676a
“wangming”
对会员端进行了设计
|
649
650
651
652
653
654
655
656
|
.store-cover-title {
position: absolute;
left: 28rpx;
right: 28rpx;
bottom: 28rpx;
font-size: 38rpx;
line-height: 1.35;
font-weight: 700;
|
5f2c4d97
“wangming”
Add billing amoun...
|
657
658
|
}
|
5c34676a
“wangming”
对会员端进行了设计
|
659
660
|
.store-body {
padding: 30rpx;
|
5f2c4d97
“wangming”
Add billing amoun...
|
661
662
|
}
|
5c34676a
“wangming”
对会员端进行了设计
|
663
664
665
|
.store-name {
font-size: 32rpx;
font-weight: 700;
|
5f2c4d97
“wangming”
Add billing amoun...
|
666
667
|
}
|
5c34676a
“wangming”
对会员端进行了设计
|
668
669
670
671
|
.store-distance {
font-size: 24rpx;
color: $brand-accent;
font-weight: 600;
|
5f2c4d97
“wangming”
Add billing amoun...
|
672
673
|
}
|
5c34676a
“wangming”
对会员端进行了设计
|
674
675
676
677
|
.store-address {
display: block;
margin: 14rpx 0;
line-height: 1.6;
|
5f2c4d97
“wangming”
Add billing amoun...
|
678
679
|
}
|
5c34676a
“wangming”
对会员端进行了设计
|
680
681
|
.store-actions {
margin-top: 26rpx;
|
5f2c4d97
“wangming”
Add billing amoun...
|
682
683
|
}
|
5c34676a
“wangming”
对会员端进行了设计
|
684
685
686
687
688
689
690
691
692
693
694
|
.mini-button {
width: calc((100% - 24rpx) / 3);
height: 72rpx;
border-radius: 24rpx;
display: flex;
align-items: center;
justify-content: center;
font-size: 24rpx;
font-weight: 500;
background: rgba(100, 140, 118, 0.08);
color: $brand-primary-deep;
|
d8035736
“wangming”
Refactor project ...
|
695
696
697
698
699
700
|
transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}
.mini-button:active {
transform: scale(0.96);
box-shadow: 0 10rpx 20rpx rgba(54, 77, 64, 0.08);
|
5f2c4d97
“wangming”
Add billing amoun...
|
701
702
|
}
|
5c34676a
“wangming”
对会员端进行了设计
|
703
704
705
706
707
|
.primary-mini {
color: #fff;
background: $brand-primary-deep;
border: 1rpx solid rgba(210, 191, 156, 0.22);
box-shadow: $shadow-chip;
|
5f2c4d97
“wangming”
Add billing amoun...
|
708
|
}
|
5f2c4d97
“wangming”
Add billing amoun...
|
709
|
</style>
|