@uxda/appkit 4.2.46 → 4.2.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 +9 -9
- package/dist/index.js +208 -104
- package/package.json +3 -1
- package/src/Appkit.ts +1 -0
- package/src/balance/api/index.ts +2 -2
- package/src/balance/components/AccountView.vue +34 -29
- package/src/components/bt-cropper/index.vue +2 -2
- package/src/index.ts +3 -1
- package/src/notice/api/index.ts +2 -2
- package/src/notice/components/NoticeBanner.vue +14 -22
- package/src/notice/components/NoticeEntry.vue +2 -2
- package/src/notice/components/NoticeList.vue +6 -2
- package/src/notice/components/useCommonList.ts +5 -5
- package/src/payment/api/endpoints.ts +17 -22
- package/src/payment/api/index.ts +2 -2
- package/src/payment/components/RechargeView.vue +39 -19
- package/src/payment/components/TradeView.vue +3 -3
- package/src/payment/services/request-payment.ts +34 -4
- package/src/payment/types.ts +8 -7
- package/src/register/components/SelfRegistration.vue +2 -2
- package/src/shared/components/AppDrawer.vue +9 -10
- package/src/shared/components/OcrBusinessLicense.vue +6 -6
- package/src/shared/components/OcrIcon.vue +7 -7
- package/src/shared/index.ts +5 -1
- package/src/shared/weixin/index.ts +9 -1
- package/src/shared/weixin/jssdk.ts +91 -0
- package/src/user/api/index.ts +3 -3
- package/src/user/components/UserAuth.vue +26 -63
- package/src/user/components/UserBinding.vue +41 -70
- package/src/user/components/UserBindingSuccess.vue +2 -2
- package/src/user/components/UserFeedback.vue +40 -43
- package/src/user/components/UserInfo.vue +56 -181
package/dist/appkit.css
CHANGED
|
@@ -841,7 +841,7 @@ page {
|
|
|
841
841
|
color: #353535;
|
|
842
842
|
font-size: 12px;
|
|
843
843
|
}
|
|
844
|
-
.account-view .small-bean-button label {
|
|
844
|
+
.account-view .small-bean-button .label {
|
|
845
845
|
background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwIDZMMTYgMTJMMTAgMThWNloiIGZpbGw9IiMzNTM1MzUiIHN0cm9rZT0iIzM1MzUzNSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=");
|
|
846
846
|
padding-right: 18px;
|
|
847
847
|
background-repeat: no-repeat;
|
|
@@ -1078,23 +1078,23 @@ page {
|
|
|
1078
1078
|
align-items: center;
|
|
1079
1079
|
}
|
|
1080
1080
|
.rights-card .list .item .item-title .item-title-button {
|
|
1081
|
-
padding: 0
|
|
1082
|
-
height:
|
|
1083
|
-
line-height:
|
|
1081
|
+
padding: 0 14px;
|
|
1082
|
+
height: 27px;
|
|
1083
|
+
line-height: 27px;
|
|
1084
1084
|
background: -webkit-linear-gradient(262.82deg, #353535 10.04%, #433f46 90.21%);
|
|
1085
1085
|
background: linear-gradient(187.18deg, #353535 10.04%, #433f46 90.21%);
|
|
1086
|
-
border-radius:
|
|
1086
|
+
border-radius: 14px;
|
|
1087
1087
|
color: #e7caad;
|
|
1088
|
-
font-size:
|
|
1088
|
+
font-size: 12px;
|
|
1089
1089
|
font-weight: 400;
|
|
1090
|
-
margin-left:
|
|
1090
|
+
margin-left: 20px;
|
|
1091
1091
|
display: flex;
|
|
1092
1092
|
align-items: center;
|
|
1093
1093
|
}
|
|
1094
1094
|
.rights-card .list .item .item-title .item-title-button .button-icon {
|
|
1095
1095
|
display: block;
|
|
1096
|
-
width:
|
|
1097
|
-
height:
|
|
1096
|
+
width: 12px;
|
|
1097
|
+
height: 12px;
|
|
1098
1098
|
font-size: 0;
|
|
1099
1099
|
margin-left: 4px;
|
|
1100
1100
|
}
|