@uxda/appkit 4.3.2 → 4.3.4
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 +83 -4
- package/dist/index.js +767 -266
- package/package.json +2 -5
- package/src/notice/components/NoticeList2.vue +232 -73
- package/src/notice/components/useCommonList.ts +1 -0
- package/src/register/components/SelfRegistration.vue +1 -1
- package/src/shared/components/AppVerify.vue +15 -6
- package/src/shared/components/OcrBank.vue +65 -92
- package/src/shared/components/OcrBusinessLicense.vue +19 -37
- package/src/shared/components/OcrIcon.vue +105 -67
- package/src/shared/components/OcrInvoice.vue +218 -0
- package/src/shared/components/index.ts +3 -1
- package/src/shared/composables/index.ts +1 -0
- package/src/shared/composables/useCompress.ts +64 -0
- package/src/shared/composables/useUpload.ts +96 -51
- package/src/shared/tracking/tracking-sdk.ts +0 -1
- package/src/user/components/UserAuth.vue +1 -1
- package/src/user/components/UserFeedback.vue +1 -0
- package/src/user/components/UserInfo.vue +1 -0
- package/types/global.d.ts +2 -0
package/dist/appkit.css
CHANGED
|
@@ -85,9 +85,9 @@
|
|
|
85
85
|
font-weight: bold;
|
|
86
86
|
}
|
|
87
87
|
.app-verify .caption {
|
|
88
|
-
font-size:
|
|
89
|
-
color: #
|
|
90
|
-
|
|
88
|
+
font-size: 14px !important;
|
|
89
|
+
color: #666;
|
|
90
|
+
margin-bottom: 5px;
|
|
91
91
|
}
|
|
92
92
|
.app-verify .number {
|
|
93
93
|
line-height: 21px;
|
|
@@ -106,9 +106,17 @@
|
|
|
106
106
|
flex: 1;
|
|
107
107
|
padding-left: 12px;
|
|
108
108
|
}
|
|
109
|
+
.app-verify .form .nut-cell-group__wrap .form-input .input-text {
|
|
110
|
+
text-align: left !important;
|
|
111
|
+
}
|
|
109
112
|
.app-verify .form .nut-cell-group__wrap .form-btn {
|
|
110
113
|
margin-left: 12px;
|
|
111
|
-
width:
|
|
114
|
+
width: 90px;
|
|
115
|
+
}
|
|
116
|
+
.app-verify .form .nut-cell-group__wrap .form-btn .caption {
|
|
117
|
+
font-size: 10px !important;
|
|
118
|
+
color: #ccc;
|
|
119
|
+
margin-bottom: 0;
|
|
112
120
|
}
|
|
113
121
|
.app-verify .buttons {
|
|
114
122
|
width: 100%;
|
|
@@ -184,6 +192,19 @@
|
|
|
184
192
|
.ocr-icon.disabled .ns-icon {
|
|
185
193
|
filter: brightness(1.5) grayscale(1);
|
|
186
194
|
}
|
|
195
|
+
.ocr-bank {
|
|
196
|
+
width: 24px;
|
|
197
|
+
height: 24px;
|
|
198
|
+
display: inline-flex;
|
|
199
|
+
align-items: center;
|
|
200
|
+
}
|
|
201
|
+
.ocr-bank .ns-icon {
|
|
202
|
+
width: 24px;
|
|
203
|
+
height: 24px;
|
|
204
|
+
}
|
|
205
|
+
.ocr-bank.disabled .ns-icon {
|
|
206
|
+
filter: brightness(1.5) grayscale(1);
|
|
207
|
+
}
|
|
187
208
|
.ocr-business-license {
|
|
188
209
|
width: 24px;
|
|
189
210
|
height: 24px;
|
|
@@ -195,6 +216,19 @@
|
|
|
195
216
|
.ocr-business-license.disabled .ns-icon {
|
|
196
217
|
filter: brightness(1.5) grayscale(1);
|
|
197
218
|
}
|
|
219
|
+
.ocr-invoice {
|
|
220
|
+
width: 24px;
|
|
221
|
+
height: 24px;
|
|
222
|
+
display: inline-flex;
|
|
223
|
+
align-items: center;
|
|
224
|
+
}
|
|
225
|
+
.ocr-invoice .ns-icon {
|
|
226
|
+
width: 24px;
|
|
227
|
+
height: 24px;
|
|
228
|
+
}
|
|
229
|
+
.ocr-invoice.disabled .ns-icon {
|
|
230
|
+
filter: brightness(1.5) grayscale(1);
|
|
231
|
+
}
|
|
198
232
|
.recharge-view {
|
|
199
233
|
height: 100%;
|
|
200
234
|
display: flex;
|
|
@@ -1858,6 +1892,51 @@ page {
|
|
|
1858
1892
|
color: rgba(53, 53, 53, 0.4);
|
|
1859
1893
|
text-align: end;
|
|
1860
1894
|
}
|
|
1895
|
+
.news-tab .nut-tabs__list {
|
|
1896
|
+
display: flex;
|
|
1897
|
+
}
|
|
1898
|
+
.news-tab .custom-tab-item {
|
|
1899
|
+
flex: 1;
|
|
1900
|
+
display: flex;
|
|
1901
|
+
flex-direction: column;
|
|
1902
|
+
justify-content: center;
|
|
1903
|
+
align-items: center;
|
|
1904
|
+
padding: 10px;
|
|
1905
|
+
}
|
|
1906
|
+
.news-tab .customLine {
|
|
1907
|
+
position: relative;
|
|
1908
|
+
}
|
|
1909
|
+
.news-tab .customLine::after {
|
|
1910
|
+
content: "";
|
|
1911
|
+
position: absolute;
|
|
1912
|
+
width: 50px;
|
|
1913
|
+
height: 2px;
|
|
1914
|
+
background: #017fff;
|
|
1915
|
+
bottom: 0;
|
|
1916
|
+
left: 50%;
|
|
1917
|
+
transform: translateX(-50%);
|
|
1918
|
+
}
|
|
1919
|
+
.news-tab .custom-title {
|
|
1920
|
+
color: #8a8a8a;
|
|
1921
|
+
font-size: 15px;
|
|
1922
|
+
display: flex;
|
|
1923
|
+
align-items: center;
|
|
1924
|
+
}
|
|
1925
|
+
.news-tab .custom-title-dot {
|
|
1926
|
+
height: 12px;
|
|
1927
|
+
line-height: 12px;
|
|
1928
|
+
padding: 0 6px;
|
|
1929
|
+
color: #fff;
|
|
1930
|
+
border-radius: 8px;
|
|
1931
|
+
background: #e04747;
|
|
1932
|
+
margin-left: 2px;
|
|
1933
|
+
font-size: 9px;
|
|
1934
|
+
}
|
|
1935
|
+
.news-tab .custom-title.active {
|
|
1936
|
+
color: #017fff;
|
|
1937
|
+
font-weight: 600;
|
|
1938
|
+
font-size: 17px;
|
|
1939
|
+
}
|
|
1861
1940
|
.user-entry {
|
|
1862
1941
|
position: absolute;
|
|
1863
1942
|
left: 0;
|