@uxda/appkit 4.1.44 → 4.1.48
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 +4 -5
- package/dist/index.js +223 -233
- package/package.json +1 -1
- package/src/balance/components/AccountView.vue +5 -3
- package/src/balance/components/BalanceCard.vue +3 -1
- package/src/balance/components/PromoterCard.vue +6 -4
- package/src/payment/components/TradeView.vue +76 -54
- package/src/register/components/SelfRegistration.vue +16 -37
- package/src/shared/components/OcrBusinessLicense.vue +3 -6
- package/src/shared/components/OcrIcon.vue +133 -64
- package/src/shared/composables/useAmount.ts +46 -0
- package/src/shared/composables/useValidator.ts +2 -2
- package/src/components/ocr-id/index.vue +0 -114
- package/src/components/ocr-id/types.d.ts +0 -13
package/dist/appkit.css
CHANGED
|
@@ -178,6 +178,8 @@
|
|
|
178
178
|
.ocr-icon {
|
|
179
179
|
width: 24px;
|
|
180
180
|
height: 24px;
|
|
181
|
+
display: inline-flex;
|
|
182
|
+
align-items: center;
|
|
181
183
|
}
|
|
182
184
|
.ocr-icon .ns-icon {
|
|
183
185
|
width: 24px;
|
|
@@ -391,7 +393,8 @@
|
|
|
391
393
|
align-items: center;
|
|
392
394
|
padding: 0 10px;
|
|
393
395
|
border-radius: 0px;
|
|
394
|
-
box-shadow: 0px -5px 14px -5px rgba(0, 0, 0, 0.1);
|
|
396
|
+
box-shadow: 0px -5px 14px -5px rgba(0, 0, 0, 0.1);
|
|
397
|
+
/* 上边框阴影 */
|
|
395
398
|
}
|
|
396
399
|
.recharge-view2 .amount-footer .buy-amount .left {
|
|
397
400
|
width: 70%;
|
|
@@ -1325,10 +1328,6 @@ page {
|
|
|
1325
1328
|
height: 12px;
|
|
1326
1329
|
margin-left: 5px;
|
|
1327
1330
|
}
|
|
1328
|
-
.ocr-id__img {
|
|
1329
|
-
width: 20px;
|
|
1330
|
-
height: 20px;
|
|
1331
|
-
}
|
|
1332
1331
|
.dd-area {
|
|
1333
1332
|
display: flex;
|
|
1334
1333
|
justify-content: flex-end;
|