@uxda/appkit 4.1.29 → 4.1.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/appkit.css +113 -37
- package/dist/assets/asset-3B_CoPto +1 -0
- package/dist/index.js +1259 -1192
- package/package.json +1 -1
- package/src/balance/api/endpoints.ts +7 -0
- package/src/balance/components/AccountView.vue +85 -86
- package/src/balance/components/BalanceCard.vue +32 -24
- package/src/balance/components/DateFilter.vue +28 -29
- package/src/balance/components/ListFilterPicker.vue +21 -19
- package/src/balance/components/PromoterCard.vue +183 -0
- package/src/balance/components/index.ts +2 -7
- package/src/balance/types.ts +6 -0
- package/src/index.ts +0 -1
- package/src/payment/api/index.ts +0 -1
- package/src/payment/components/AmountPicker.vue +9 -12
- package/src/shared/components/AppVerify.vue +24 -21
package/package.json
CHANGED
|
@@ -109,6 +109,13 @@ const endpointsList: HttpEndpoints = {
|
|
|
109
109
|
code: d.rightsCode,
|
|
110
110
|
})),
|
|
111
111
|
},
|
|
112
|
+
获取推广方账户信息: {
|
|
113
|
+
path: '/promoact/app/promoter/getPromoterAccountInfo', // /app
|
|
114
|
+
translate: (data: OnlyApp) => data,
|
|
115
|
+
transform(result: any) {
|
|
116
|
+
return result
|
|
117
|
+
},
|
|
118
|
+
},
|
|
112
119
|
}
|
|
113
120
|
|
|
114
121
|
const endpoints = Object.fromEntries(
|
|
@@ -1,12 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="account-view">
|
|
3
3
|
<div class="scroll-content">
|
|
4
|
-
<page-header
|
|
5
|
-
color-mode="dark"
|
|
6
|
-
title="我的账户"
|
|
7
|
-
:class="{ 'with-background': scrolled > 0 }"
|
|
8
|
-
@close="onPageHeaderClose"
|
|
9
|
-
/>
|
|
4
|
+
<page-header title="我的账户" :class="{ 'with-background': scrolled > 0 }" @close="onPageHeaderClose" />
|
|
10
5
|
<div class="row jusify-right">
|
|
11
6
|
<div class="small-bean-button" @click="onSecondBalanceButtonClick">
|
|
12
7
|
<label>收支明细</label>
|
|
@@ -15,10 +10,7 @@
|
|
|
15
10
|
<div class="balance">
|
|
16
11
|
<div class="bean-box spa-between">
|
|
17
12
|
<div class="bean-img">
|
|
18
|
-
<img
|
|
19
|
-
class="bean-icon"
|
|
20
|
-
src="https://cdn.ddjf.com/static/images/bpms-workBench/gold-bean.png"
|
|
21
|
-
/>
|
|
13
|
+
<img class="bean-icon" src="https://cdn.ddjf.com/static/images/bpms-workBench/gold-bean.png" />
|
|
22
14
|
<div class="bean-tag tag">云豆</div>
|
|
23
15
|
</div>
|
|
24
16
|
<div class="rule" @click="rulesPopupOpen = true">规则说明</div>
|
|
@@ -32,23 +24,15 @@
|
|
|
32
24
|
<div class="rights-card" v-if="balance.privileges.corporateStar">
|
|
33
25
|
<div class="title">企明星权益</div>
|
|
34
26
|
<div class="list">
|
|
35
|
-
<div
|
|
36
|
-
class="item star-item"
|
|
37
|
-
v-for="(item, index) in balance.privileges.corporateStar"
|
|
38
|
-
:key="index"
|
|
39
|
-
>
|
|
27
|
+
<div class="item star-item" v-for="(item, index) in balance.privileges.corporateStar" :key="index">
|
|
40
28
|
<div class="item-count">
|
|
41
|
-
<span>{{ item.count }}</span
|
|
42
|
-
><span>{{ item.unit }}</span>
|
|
29
|
+
<span>{{ item.count }}</span><span>{{ item.unit }}</span>
|
|
43
30
|
</div>
|
|
44
31
|
<div class="item-title">
|
|
45
32
|
<div>{{ item.title }}</div>
|
|
46
33
|
<div class="item-title-button" v-if="item.id">
|
|
47
|
-
<div @click="gotoTrade(item)"
|
|
48
|
-
<img
|
|
49
|
-
class="button-icon"
|
|
50
|
-
src="https://cdn.ddjf.com/static/images/bpms-workBench/button-hg.svg"
|
|
51
|
-
/>
|
|
34
|
+
<div @click="gotoTrade(item)">企明星优惠充值</div>
|
|
35
|
+
<img class="button-icon" src="https://cdn.ddjf.com/static/images/bpms-workBench/button-hg.svg" />
|
|
52
36
|
</div>
|
|
53
37
|
</div>
|
|
54
38
|
</div>
|
|
@@ -65,44 +49,22 @@
|
|
|
65
49
|
</div>
|
|
66
50
|
</div>
|
|
67
51
|
</div>
|
|
68
|
-
<nut-popup
|
|
69
|
-
pop-class="consumption-rules-popup"
|
|
70
|
-
v-model:visible="rulesPopupOpen"
|
|
71
|
-
:close-on-click-overlay="false"
|
|
72
|
-
>
|
|
52
|
+
<nut-popup pop-class="consumption-rules-popup" v-model:visible="rulesPopupOpen" :close-on-click-overlay="false">
|
|
73
53
|
<consumption-rules @complete="rulesPopupOpen = false" />
|
|
74
54
|
</nut-popup>
|
|
75
|
-
<nut-popup
|
|
76
|
-
|
|
77
|
-
:
|
|
78
|
-
|
|
79
|
-
:close-on-click-overlay="true"
|
|
80
|
-
v-model:visible="datePickerOpen"
|
|
81
|
-
>
|
|
82
|
-
<date-filter
|
|
83
|
-
v-if="datePickerOpen"
|
|
84
|
-
:from="filtering.dateFrom"
|
|
85
|
-
:to="filtering.dateTo"
|
|
86
|
-
@reset="onDateReset"
|
|
87
|
-
@complete="onDateFilterComplete"
|
|
88
|
-
/>
|
|
55
|
+
<nut-popup position="bottom" :style="{ height: '40%' }" round :close-on-click-overlay="true"
|
|
56
|
+
v-model:visible="datePickerOpen">
|
|
57
|
+
<date-filter v-if="datePickerOpen" :from="filtering.dateFrom" :to="filtering.dateTo" @reset="onDateReset"
|
|
58
|
+
@complete="onDateFilterComplete" />
|
|
89
59
|
</nut-popup>
|
|
90
|
-
<nut-popup
|
|
91
|
-
|
|
92
|
-
:
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
:modelValue="[
|
|
99
|
-
filtering.账户类型,
|
|
100
|
-
filtering.收入还是支出,
|
|
101
|
-
filtering.交易类型,
|
|
102
|
-
filtering.权益类目,
|
|
103
|
-
]"
|
|
104
|
-
@complete="onFilterComplete"
|
|
105
|
-
/>
|
|
60
|
+
<nut-popup position="bottom" :style="{ height: '75%' }" round :close-on-click-overlay="true"
|
|
61
|
+
v-model:visible="filterOpen">
|
|
62
|
+
<consumption-filter :modelValue="[
|
|
63
|
+
filtering.账户类型,
|
|
64
|
+
filtering.收入还是支出,
|
|
65
|
+
filtering.交易类型,
|
|
66
|
+
filtering.权益类目,
|
|
67
|
+
]" @complete="onFilterComplete" />
|
|
106
68
|
</nut-popup>
|
|
107
69
|
<app-drawer v-model="secondBalanceOpen" title="收支明细">
|
|
108
70
|
<div class="operation-box">
|
|
@@ -111,29 +73,18 @@
|
|
|
111
73
|
<div class="title">收支明细</div>
|
|
112
74
|
<div class="time" @click="openDateFilter" v-show="filtering.dateFrom">
|
|
113
75
|
<div class="text number">{{ dateRangeDisplay }}</div>
|
|
114
|
-
<img
|
|
115
|
-
|
|
116
|
-
class="time-icon"
|
|
117
|
-
src="https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-down.png"
|
|
118
|
-
/>
|
|
76
|
+
<img style="margin-top: -2px" class="time-icon"
|
|
77
|
+
src="https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-down.png" />
|
|
119
78
|
</div>
|
|
120
79
|
</div>
|
|
121
80
|
<div class="search" @click="filterOpen = true">
|
|
122
81
|
<span class="text">筛选</span>
|
|
123
|
-
<img
|
|
124
|
-
class="time-icon"
|
|
125
|
-
src="https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-select-icon.png"
|
|
126
|
-
/>
|
|
82
|
+
<img class="time-icon" src="https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-select-icon.png" />
|
|
127
83
|
</div>
|
|
128
84
|
</div>
|
|
129
85
|
<div class="operation-list">
|
|
130
|
-
<scroll-view
|
|
131
|
-
|
|
132
|
-
:scroll-y="true"
|
|
133
|
-
@scroll="onScroll"
|
|
134
|
-
:lower-threshold="50"
|
|
135
|
-
@scrolltolower="onReachBottom"
|
|
136
|
-
>
|
|
86
|
+
<scroll-view class="operation-scroll" :scroll-y="true" @scroll="onScroll" :lower-threshold="50"
|
|
87
|
+
@scrolltolower="onReachBottom">
|
|
137
88
|
<div class="box" v-if="consumptionGroups.length > 0">
|
|
138
89
|
<div class="box-detail" v-for="(item, index) in consumptionGroups" :key="index">
|
|
139
90
|
<div class="title number">{{ item.date }}</div>
|
|
@@ -440,65 +391,76 @@ onMounted(() => {
|
|
|
440
391
|
<style lang="scss">
|
|
441
392
|
.account-view {
|
|
442
393
|
height: 100vh;
|
|
394
|
+
|
|
443
395
|
.scroll-content {
|
|
444
|
-
background-image: url('
|
|
445
|
-
background-position: center
|
|
396
|
+
background-image: url('https://cdn.ddjf.com/static/images/customer-center/blue-bg.png');
|
|
397
|
+
background-position: center 0;
|
|
446
398
|
background-repeat: no-repeat;
|
|
399
|
+
background-size: 100% 200px;
|
|
447
400
|
}
|
|
401
|
+
|
|
448
402
|
.page-header {
|
|
449
|
-
background-color:
|
|
403
|
+
background-color: transparent;
|
|
450
404
|
position: sticky;
|
|
451
405
|
top: 0;
|
|
452
406
|
z-index: 1;
|
|
453
407
|
transition: background-color 0.3s;
|
|
408
|
+
|
|
454
409
|
&.with-background {
|
|
455
410
|
background-color: #3b393c;
|
|
411
|
+
color: #fff;
|
|
456
412
|
}
|
|
457
413
|
}
|
|
414
|
+
|
|
458
415
|
.spa-between {
|
|
459
416
|
display: flex;
|
|
460
417
|
justify-content: space-between;
|
|
461
418
|
align-items: center;
|
|
462
419
|
}
|
|
420
|
+
|
|
463
421
|
.row {
|
|
464
422
|
display: flex;
|
|
465
423
|
flex-direction: row;
|
|
466
424
|
margin: 10px 15px;
|
|
467
425
|
}
|
|
426
|
+
|
|
468
427
|
.jusify-right {
|
|
469
428
|
justify-content: flex-end;
|
|
470
429
|
}
|
|
430
|
+
|
|
471
431
|
.small-bean-button {
|
|
472
432
|
height: 22px;
|
|
473
433
|
border-radius: 11px;
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
434
|
+
background-color: #fff;
|
|
435
|
+
display: inline-flex;
|
|
436
|
+
align-items: center;
|
|
477
437
|
padding: 0 10px;
|
|
478
|
-
|
|
479
|
-
color: #e7caad;
|
|
438
|
+
color: #353535;
|
|
480
439
|
font-size: 12px;
|
|
440
|
+
|
|
481
441
|
label {
|
|
482
|
-
background-image: url('data:image/svg+xml;base64,
|
|
442
|
+
background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwIDZMMTYgMTJMMTAgMThWNloiIGZpbGw9IiMzNTM1MzUiIHN0cm9rZT0iIzM1MzUzNSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=');
|
|
483
443
|
padding-right: 18px;
|
|
484
444
|
background-repeat: no-repeat;
|
|
485
445
|
background-position: right center;
|
|
486
446
|
background-size: 16px;
|
|
487
447
|
}
|
|
488
448
|
}
|
|
449
|
+
|
|
489
450
|
.balance {
|
|
490
451
|
border-radius: 15px;
|
|
491
|
-
background: linear-gradient(
|
|
492
|
-
box-shadow: 0px -10px 9px -3px rgba(0, 0, 0, 0.33);
|
|
452
|
+
background: linear-gradient(90deg, #FFEBC1 0%, #FFB875 100%);
|
|
493
453
|
height: 112px;
|
|
494
454
|
padding: 20px;
|
|
495
455
|
margin: 0 15px;
|
|
496
456
|
box-sizing: border-box;
|
|
497
457
|
font-size: 10px;
|
|
458
|
+
|
|
498
459
|
.bean-img {
|
|
499
460
|
display: flex;
|
|
500
461
|
justify-content: flex-start;
|
|
501
462
|
align-items: center;
|
|
463
|
+
|
|
502
464
|
.bean-icon {
|
|
503
465
|
display: block;
|
|
504
466
|
font-size: 0;
|
|
@@ -506,6 +468,7 @@ onMounted(() => {
|
|
|
506
468
|
height: 20px;
|
|
507
469
|
margin-right: 4px;
|
|
508
470
|
}
|
|
471
|
+
|
|
509
472
|
.bean-tag {
|
|
510
473
|
color: #353535;
|
|
511
474
|
height: 15px;
|
|
@@ -515,23 +478,28 @@ onMounted(() => {
|
|
|
515
478
|
padding-left: 5px;
|
|
516
479
|
padding-right: 10px;
|
|
517
480
|
}
|
|
481
|
+
|
|
518
482
|
.tag {
|
|
519
483
|
background: #ff8320;
|
|
520
484
|
color: #fff;
|
|
521
485
|
}
|
|
522
486
|
}
|
|
487
|
+
|
|
523
488
|
.rule {
|
|
524
489
|
color: #353535;
|
|
525
490
|
opacity: 0.5;
|
|
526
491
|
}
|
|
527
492
|
}
|
|
493
|
+
|
|
528
494
|
.bean-counts {
|
|
529
495
|
margin-top: 12px;
|
|
496
|
+
|
|
530
497
|
.counts {
|
|
531
498
|
color: #3d3835;
|
|
532
499
|
font-size: 32px;
|
|
533
500
|
font-weight: 700;
|
|
534
501
|
}
|
|
502
|
+
|
|
535
503
|
.pay {
|
|
536
504
|
padding: 0 20px;
|
|
537
505
|
height: 32px;
|
|
@@ -544,6 +512,7 @@ onMounted(() => {
|
|
|
544
512
|
}
|
|
545
513
|
}
|
|
546
514
|
}
|
|
515
|
+
|
|
547
516
|
.consumption-rules-popup {
|
|
548
517
|
border-radius: 16px;
|
|
549
518
|
width: 70%;
|
|
@@ -557,6 +526,7 @@ onMounted(() => {
|
|
|
557
526
|
display: flex;
|
|
558
527
|
flex-direction: column;
|
|
559
528
|
height: calc(100vh - 87px);
|
|
529
|
+
|
|
560
530
|
.operation-title {
|
|
561
531
|
padding: 10px 15px;
|
|
562
532
|
background: #fff;
|
|
@@ -565,11 +535,13 @@ onMounted(() => {
|
|
|
565
535
|
&.with-shadow {
|
|
566
536
|
box-shadow: 0px 1px 10px 0px #99999933;
|
|
567
537
|
}
|
|
538
|
+
|
|
568
539
|
.text {
|
|
569
540
|
color: #353535;
|
|
570
541
|
font-size: 12px;
|
|
571
542
|
opacity: 0.5;
|
|
572
543
|
}
|
|
544
|
+
|
|
573
545
|
.time-icon {
|
|
574
546
|
display: block;
|
|
575
547
|
font-size: 0;
|
|
@@ -577,15 +549,18 @@ onMounted(() => {
|
|
|
577
549
|
height: 12px;
|
|
578
550
|
margin-left: 4px;
|
|
579
551
|
}
|
|
552
|
+
|
|
580
553
|
.search-time {
|
|
581
554
|
display: flex;
|
|
582
555
|
align-items: center;
|
|
556
|
+
|
|
583
557
|
.title {
|
|
584
558
|
color: #000;
|
|
585
559
|
font-weight: 500;
|
|
586
560
|
font-size: 17px;
|
|
587
561
|
margin-right: 10px;
|
|
588
562
|
}
|
|
563
|
+
|
|
589
564
|
.time {
|
|
590
565
|
height: 22px;
|
|
591
566
|
padding-right: 5px;
|
|
@@ -594,6 +569,7 @@ onMounted(() => {
|
|
|
594
569
|
align-items: center;
|
|
595
570
|
}
|
|
596
571
|
}
|
|
572
|
+
|
|
597
573
|
.search {
|
|
598
574
|
display: flex;
|
|
599
575
|
align-items: center;
|
|
@@ -601,19 +577,23 @@ onMounted(() => {
|
|
|
601
577
|
padding-left: 5px;
|
|
602
578
|
}
|
|
603
579
|
}
|
|
580
|
+
|
|
604
581
|
.spa-between {
|
|
605
582
|
display: flex;
|
|
606
583
|
justify-content: space-between;
|
|
607
584
|
align-items: center;
|
|
608
585
|
}
|
|
586
|
+
|
|
609
587
|
.operation-list {
|
|
610
588
|
flex: 1;
|
|
611
589
|
width: 100%;
|
|
590
|
+
|
|
612
591
|
.operation-scroll {
|
|
613
592
|
height: calc(100vh - 130px);
|
|
614
593
|
padding: 0 15px;
|
|
615
594
|
box-sizing: border-box;
|
|
616
595
|
}
|
|
596
|
+
|
|
617
597
|
.box {
|
|
618
598
|
&-detail {
|
|
619
599
|
.title {
|
|
@@ -624,6 +604,7 @@ onMounted(() => {
|
|
|
624
604
|
opacity: 0.5;
|
|
625
605
|
margin-bottom: 10px;
|
|
626
606
|
}
|
|
607
|
+
|
|
627
608
|
.item {
|
|
628
609
|
border-radius: 5px;
|
|
629
610
|
background: rgba(255, 255, 255, 0.5);
|
|
@@ -632,6 +613,7 @@ onMounted(() => {
|
|
|
632
613
|
padding: 12px 10px;
|
|
633
614
|
display: flex;
|
|
634
615
|
margin-bottom: 10px;
|
|
616
|
+
|
|
635
617
|
&-type {
|
|
636
618
|
background: linear-gradient(113.95deg, #f4e2ce 1.2%, #debb9b 77.63%);
|
|
637
619
|
width: 30px;
|
|
@@ -644,25 +626,31 @@ onMounted(() => {
|
|
|
644
626
|
color: #000;
|
|
645
627
|
text-align: center;
|
|
646
628
|
}
|
|
629
|
+
|
|
647
630
|
&-detail {
|
|
648
631
|
flex: 1;
|
|
632
|
+
|
|
649
633
|
.item-info {
|
|
650
634
|
padding: 0;
|
|
651
635
|
font-size: 14px;
|
|
652
636
|
font-weight: 700;
|
|
653
637
|
color: #000;
|
|
638
|
+
|
|
654
639
|
&-type {
|
|
655
640
|
line-height: 15px;
|
|
656
641
|
}
|
|
642
|
+
|
|
657
643
|
&-title {
|
|
658
644
|
font-weight: 400;
|
|
659
645
|
opacity: 0.8;
|
|
660
646
|
font-size: 11px;
|
|
661
647
|
}
|
|
648
|
+
|
|
662
649
|
&-amount {
|
|
663
650
|
color: #9e7b5a;
|
|
664
651
|
}
|
|
665
652
|
}
|
|
653
|
+
|
|
666
654
|
&-remark {
|
|
667
655
|
opacity: 0.3;
|
|
668
656
|
line-height: 15px;
|
|
@@ -671,6 +659,7 @@ onMounted(() => {
|
|
|
671
659
|
}
|
|
672
660
|
}
|
|
673
661
|
}
|
|
662
|
+
|
|
674
663
|
&-not-text {
|
|
675
664
|
opacity: 0.4;
|
|
676
665
|
color: #353535;
|
|
@@ -682,12 +671,15 @@ onMounted(() => {
|
|
|
682
671
|
}
|
|
683
672
|
}
|
|
684
673
|
}
|
|
674
|
+
|
|
685
675
|
.rights-card {
|
|
686
676
|
margin: 10px 15px 0px;
|
|
687
|
-
background:
|
|
677
|
+
background: rgb(255, 248, 243, 0.8);
|
|
688
678
|
border-radius: 5px;
|
|
689
|
-
box-shadow: 0px 5px 18.9px 2px #0000000d;
|
|
690
679
|
padding: 15px 20px;
|
|
680
|
+
box-shadow: 0px 5px 18.9px 2px #0000000D;
|
|
681
|
+
|
|
682
|
+
|
|
691
683
|
.title {
|
|
692
684
|
height: 25px;
|
|
693
685
|
line-height: 25px;
|
|
@@ -699,24 +691,29 @@ onMounted(() => {
|
|
|
699
691
|
padding-left: 5px;
|
|
700
692
|
padding-right: 12px;
|
|
701
693
|
}
|
|
694
|
+
|
|
702
695
|
.list {
|
|
703
696
|
display: flex;
|
|
704
697
|
flex-wrap: wrap;
|
|
698
|
+
|
|
705
699
|
.item {
|
|
706
700
|
width: 50%;
|
|
707
701
|
margin-top: 15px;
|
|
702
|
+
|
|
708
703
|
.item-count {
|
|
709
704
|
font-size: 20px;
|
|
710
705
|
color: #353535;
|
|
711
706
|
font-weight: 700;
|
|
712
707
|
line-height: 23px;
|
|
713
708
|
}
|
|
709
|
+
|
|
714
710
|
.item-title {
|
|
715
711
|
line-height: 23px;
|
|
716
712
|
color: #987356;
|
|
717
713
|
font-size: 11px;
|
|
718
714
|
display: flex;
|
|
719
715
|
align-items: center;
|
|
716
|
+
|
|
720
717
|
.item-title-button {
|
|
721
718
|
padding: 0 27rpx;
|
|
722
719
|
height: 54rpx;
|
|
@@ -730,6 +727,7 @@ onMounted(() => {
|
|
|
730
727
|
margin-left: 40rpx;
|
|
731
728
|
display: flex;
|
|
732
729
|
align-items: center;
|
|
730
|
+
|
|
733
731
|
.button-icon {
|
|
734
732
|
display: block;
|
|
735
733
|
width: 24rpx;
|
|
@@ -740,6 +738,7 @@ onMounted(() => {
|
|
|
740
738
|
}
|
|
741
739
|
}
|
|
742
740
|
}
|
|
741
|
+
|
|
743
742
|
.star-item {
|
|
744
743
|
width: 100%;
|
|
745
744
|
}
|
|
@@ -5,10 +5,7 @@
|
|
|
5
5
|
<div class="card-row-left">
|
|
6
6
|
<div class="bean-box">
|
|
7
7
|
<div class="bean-icon-box">
|
|
8
|
-
<img
|
|
9
|
-
class="bean-icon"
|
|
10
|
-
src="https://cdn.ddjf.com/static/images/bpms-workBench/gold-bean.png"
|
|
11
|
-
/>
|
|
8
|
+
<img class="bean-icon" src="https://cdn.ddjf.com/static/images/bpms-workBench/gold-bean.png" />
|
|
12
9
|
</div>
|
|
13
10
|
<span class="baan-name">云豆</span>
|
|
14
11
|
</div>
|
|
@@ -18,15 +15,13 @@
|
|
|
18
15
|
<div class="account-info-entry" @click="gotoDetail">
|
|
19
16
|
<div class="account-info-name">账户明细</div>
|
|
20
17
|
<div class="account-info-icon">
|
|
21
|
-
<img
|
|
22
|
-
|
|
23
|
-
src="https://cdn.ddjf.com/static/images/bpms-workBench/gold-to.png"
|
|
24
|
-
/>
|
|
18
|
+
<img class="icon"
|
|
19
|
+
src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAzMCAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE1IDI3LjVDMjEuOTAzNiAyNy41IDI3LjUgMjEuOTAzNiAyNy41IDE1QzI3LjUgOC4wOTY0NCAyMS45MDM2IDIuNSAxNSAyLjVDOC4wOTY0NCAyLjUgMi41IDguMDk2NDQgMi41IDE1QzIuNSAyMS45MDM2IDguMDk2NDQgMjcuNSAxNSAyNy41WiIgZmlsbD0iIzM1MzUzNSIgc3Ryb2tlPSIjMzUzNTM1IiBzdHJva2Utd2lkdGg9IjIuNSIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNMTEgMTUuMTU2MkgxOS4zMTI1IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjEuODQ3MjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNMTUuMTU2NyAxMUwxOS4zMTMgMTUuMTU2MkwxNS4xNTY3IDE5LjMxMjUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMS44NDcyMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=" />
|
|
25
20
|
</div>
|
|
26
21
|
</div>
|
|
27
22
|
</div>
|
|
28
23
|
</div>
|
|
29
|
-
<div class="line"></div>
|
|
24
|
+
<!-- <div class="line"></div>
|
|
30
25
|
<div class="card-row">
|
|
31
26
|
<div class="card-row-left desc">权益使用时自动扣减云豆</div>
|
|
32
27
|
<div class="card-row-right">
|
|
@@ -38,7 +33,7 @@
|
|
|
38
33
|
/>
|
|
39
34
|
</div>
|
|
40
35
|
</div>
|
|
41
|
-
</div>
|
|
36
|
+
</div> -->
|
|
42
37
|
</div>
|
|
43
38
|
</div>
|
|
44
39
|
</template>
|
|
@@ -104,24 +99,29 @@ defineExpose({
|
|
|
104
99
|
<style lang="scss">
|
|
105
100
|
.account-card {
|
|
106
101
|
.card {
|
|
107
|
-
background: #
|
|
102
|
+
background: linear-gradient(90deg, #FFEBC1 0%, #FFB875 100%);
|
|
108
103
|
border-radius: 10px;
|
|
109
|
-
padding:
|
|
104
|
+
padding: 14px 20px;
|
|
110
105
|
margin: 0;
|
|
106
|
+
|
|
111
107
|
.card-row {
|
|
112
108
|
display: flex;
|
|
113
109
|
justify-content: space-between;
|
|
114
110
|
align-items: center;
|
|
111
|
+
|
|
115
112
|
.card-row-left {
|
|
116
113
|
display: flex;
|
|
117
114
|
flex-direction: column;
|
|
115
|
+
|
|
118
116
|
.bean-box {
|
|
119
117
|
display: flex;
|
|
120
118
|
align-items: center;
|
|
119
|
+
|
|
121
120
|
.bean-icon-box {
|
|
122
121
|
width: 20px;
|
|
123
122
|
height: 20px;
|
|
124
123
|
margin-right: 8px;
|
|
124
|
+
|
|
125
125
|
.bean-icon {
|
|
126
126
|
display: block;
|
|
127
127
|
font-size: 0;
|
|
@@ -129,32 +129,36 @@ defineExpose({
|
|
|
129
129
|
height: 100%;
|
|
130
130
|
}
|
|
131
131
|
}
|
|
132
|
+
|
|
132
133
|
.baan-name {
|
|
133
|
-
color: #
|
|
134
|
-
font-
|
|
135
|
-
font-size: 11px;
|
|
134
|
+
color: #375264;
|
|
135
|
+
font-size: 16px;
|
|
136
136
|
}
|
|
137
137
|
}
|
|
138
|
+
|
|
138
139
|
.bean-nums {
|
|
139
|
-
color: #
|
|
140
|
-
line-height:
|
|
141
|
-
font-weight:
|
|
142
|
-
font-size:
|
|
140
|
+
color: #353535;
|
|
141
|
+
line-height: 25px;
|
|
142
|
+
font-weight: bold;
|
|
143
|
+
font-size: 20px;
|
|
143
144
|
margin-top: 3px;
|
|
144
145
|
}
|
|
145
146
|
}
|
|
147
|
+
|
|
146
148
|
.desc {
|
|
147
149
|
font-size: 10px;
|
|
148
150
|
color: #ccc;
|
|
149
151
|
line-height: 14px;
|
|
150
152
|
}
|
|
151
153
|
}
|
|
154
|
+
|
|
152
155
|
.line {
|
|
153
156
|
margin: 6px 0px 8px 0px;
|
|
154
157
|
height: 0.5px;
|
|
155
158
|
background: rgb(195, 195, 195);
|
|
156
159
|
opacity: 0.2;
|
|
157
160
|
}
|
|
161
|
+
|
|
158
162
|
.card-row-right {
|
|
159
163
|
.pay {
|
|
160
164
|
padding: 0 8px;
|
|
@@ -165,6 +169,7 @@ defineExpose({
|
|
|
165
169
|
font-size: 12px;
|
|
166
170
|
display: flex;
|
|
167
171
|
align-items: center;
|
|
172
|
+
|
|
168
173
|
.pay-icon {
|
|
169
174
|
display: block;
|
|
170
175
|
font-size: 0;
|
|
@@ -173,6 +178,7 @@ defineExpose({
|
|
|
173
178
|
margin-left: 6px;
|
|
174
179
|
}
|
|
175
180
|
}
|
|
181
|
+
|
|
176
182
|
.account-info-entry {
|
|
177
183
|
display: flex;
|
|
178
184
|
align-items: center;
|
|
@@ -180,17 +186,19 @@ defineExpose({
|
|
|
180
186
|
height: 28px;
|
|
181
187
|
line-height: 28px;
|
|
182
188
|
border-radius: 14px;
|
|
183
|
-
background:
|
|
189
|
+
background: rgba(255, 255, 255, 0.8);
|
|
190
|
+
|
|
184
191
|
.account-info-name {
|
|
185
|
-
color: #
|
|
192
|
+
color: #353535;
|
|
186
193
|
font-size: 13px;
|
|
187
194
|
font-weight: 500;
|
|
188
195
|
margin-right: 8px;
|
|
189
196
|
}
|
|
197
|
+
|
|
190
198
|
.account-info-icon {
|
|
191
|
-
width:
|
|
192
|
-
height:
|
|
193
|
-
|
|
199
|
+
width: 15px;
|
|
200
|
+
height: 15px;
|
|
201
|
+
|
|
194
202
|
.icon {
|
|
195
203
|
display: block;
|
|
196
204
|
font-size: 0;
|