@uxda/appkit 4.1.40 → 4.1.44

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.
Files changed (117) hide show
  1. package/.eslintrc.mjs +7 -7
  2. package/README.md +187 -187
  3. package/babel.config.js +12 -12
  4. package/dist/appkit.css +121 -43
  5. package/dist/assets/asset-3B_CoPto +1 -0
  6. package/dist/index.js +406 -246
  7. package/package.json +77 -77
  8. package/project.config.json +15 -15
  9. package/project.tt.json +13 -13
  10. package/rollup.config.mjs +56 -56
  11. package/src/Appkit.ts +66 -66
  12. package/src/balance/api/endpoints.ts +133 -126
  13. package/src/balance/api/index.ts +106 -106
  14. package/src/balance/components/AccountView.vue +747 -749
  15. package/src/balance/components/BalanceCard.vue +213 -205
  16. package/src/balance/components/BalanceReminder.vue +85 -85
  17. package/src/balance/components/ConsumptionFilter.vue +218 -218
  18. package/src/balance/components/ConsumptionRules.vue +68 -68
  19. package/src/balance/components/DateFilter.vue +250 -251
  20. package/src/balance/components/DateRange.vue +80 -80
  21. package/src/balance/components/ListFilter.vue +63 -63
  22. package/src/balance/components/ListFilterPicker.vue +188 -186
  23. package/src/balance/components/PromoterCard.vue +186 -0
  24. package/src/balance/components/SecondBalance.vue +71 -71
  25. package/src/balance/components/Tip.vue +45 -45
  26. package/src/balance/components/index.ts +8 -13
  27. package/src/balance/types.ts +97 -91
  28. package/src/components/bt-cropper/index.vue +774 -774
  29. package/src/components/bt-cropper/utils/calcCropper.js +42 -42
  30. package/src/components/bt-cropper/utils/calcImagePosition.js +23 -23
  31. package/src/components/bt-cropper/utils/calcImageSize.js +37 -37
  32. package/src/components/bt-cropper/utils/calcPointDistance.js +12 -12
  33. package/src/components/bt-cropper/utils/calcRightAndBottom.js +7 -7
  34. package/src/components/bt-cropper/utils/ratio.js +3 -3
  35. package/src/components/bt-cropper/utils/tools.js +25 -25
  36. package/src/components/dd-area/index.vue +225 -225
  37. package/src/components/dd-icon/doc.md +21 -21
  38. package/src/components/dd-icon/index.vue +23 -23
  39. package/src/components/dd-notice-bar/index.vue +78 -78
  40. package/src/components/dd-search/doc.md +34 -34
  41. package/src/components/dd-search/index.vue +168 -168
  42. package/src/components/dd-selector/index.vue +124 -124
  43. package/src/components/dd-skeleton/doc.md +19 -19
  44. package/src/components/dd-skeleton/index.vue +36 -36
  45. package/src/components/ocr-id/index.vue +114 -114
  46. package/src/components/ocr-id/types.d.ts +12 -12
  47. package/src/global.ts +6 -6
  48. package/src/index.ts +89 -89
  49. package/src/main.scss +1 -1
  50. package/src/notice/api/endpoints.ts +17 -17
  51. package/src/notice/api/index.ts +106 -106
  52. package/src/notice/components/NoticeBanner.vue +243 -243
  53. package/src/notice/components/NoticeEntry.vue +99 -99
  54. package/src/notice/components/NoticeList.vue +315 -315
  55. package/src/notice/components/NoticePopup.vue +162 -162
  56. package/src/notice/components/index.ts +5 -5
  57. package/src/notice/components/useCommonList.ts +86 -86
  58. package/src/notice/components/useNotice.ts +35 -35
  59. package/src/notice/index.ts +1 -1
  60. package/src/notice/types.ts +25 -25
  61. package/src/payment/api/config.ts +7 -7
  62. package/src/payment/api/endpoints.ts +103 -103
  63. package/src/payment/api/index.ts +100 -100
  64. package/src/payment/components/AmountPicker.vue +90 -93
  65. package/src/payment/components/RechargeResult.vue +69 -69
  66. package/src/payment/components/RechargeView.vue +154 -154
  67. package/src/payment/components/RightsPicker.vue +105 -105
  68. package/src/payment/components/TradeView.vue +294 -294
  69. package/src/payment/components/UserAgreement.vue +234 -234
  70. package/src/payment/components/index.ts +22 -22
  71. package/src/payment/index.ts +5 -5
  72. package/src/payment/services/index.ts +16 -16
  73. package/src/payment/services/invoke-recharge.ts +25 -25
  74. package/src/payment/services/request-payment.ts +58 -58
  75. package/src/payment/types.ts +28 -28
  76. package/src/register/components/SelfRegistration.vue +254 -254
  77. package/src/register/components/index.ts +2 -2
  78. package/src/shared/components/AppDrawer.vue +58 -54
  79. package/src/shared/components/AppVerify.vue +129 -126
  80. package/src/shared/components/DeviceVersion.vue +68 -68
  81. package/src/shared/components/EmptyView.vue +33 -33
  82. package/src/shared/components/OcrBusinessLicense.vue +133 -133
  83. package/src/shared/components/OcrIcon.vue +133 -133
  84. package/src/shared/components/PageHeader.vue +79 -79
  85. package/src/shared/components/index.ts +8 -8
  86. package/src/shared/composables/index.ts +8 -8
  87. package/src/shared/composables/useCountdown.ts +46 -46
  88. package/src/shared/composables/useCrypto.ts +76 -76
  89. package/src/shared/composables/useDragBox.ts +97 -97
  90. package/src/shared/composables/useEncode.ts +43 -43
  91. package/src/shared/composables/useLogger.ts +123 -123
  92. package/src/shared/composables/useSafeArea.ts +46 -46
  93. package/src/shared/composables/useTabbar.ts +24 -24
  94. package/src/shared/composables/useUpload.ts +54 -54
  95. package/src/shared/composables/useValidator.ts +31 -31
  96. package/src/shared/http/Http.ts +136 -136
  97. package/src/shared/http/index.ts +1 -1
  98. package/src/shared/http/types.ts +157 -157
  99. package/src/shared/index.ts +3 -3
  100. package/src/shared/weixin/payment.ts +38 -38
  101. package/src/styles/vars.scss +3 -3
  102. package/src/user/api/endpoints.ts +17 -17
  103. package/src/user/api/index.ts +111 -111
  104. package/src/user/components/LoginSetting.vue +114 -114
  105. package/src/user/components/UserBinding.vue +307 -307
  106. package/src/user/components/UserBindingSuccess.vue +80 -80
  107. package/src/user/components/UserEntry.vue +137 -137
  108. package/src/user/components/UserFeedback.vue +431 -431
  109. package/src/user/components/UserFeedbackEntry.vue +192 -192
  110. package/src/user/components/UserHeadCrop.vue +65 -65
  111. package/src/user/components/UserInfo.vue +637 -637
  112. package/src/user/components/UserResourceEmpty.vue +75 -75
  113. package/src/user/components/index.ts +21 -21
  114. package/src/user/index.ts +1 -1
  115. package/tsconfig.json +30 -30
  116. package/types/global.d.ts +21 -21
  117. package/types/vue.d.ts +10 -10
@@ -1,133 +1,133 @@
1
- <template>
2
- <div
3
- :class="['ocr-business-license', disabled ? 'disabled' : '']"
4
- class="ocr-icon"
5
- @click="onIconClick"
6
- >
7
- <ns-icon name="https://cdn.ddjf.com/static/images/beidouxing/ocr-icon.png" />
8
- </div>
9
- </template>
10
-
11
- <script lang="ts" setup>
12
- import Taro from '@tarojs/taro';
13
- import { NsIcon } from '@uxda/nutshell/taro';
14
- import { useAppKitOptions } from '../../Appkit';
15
-
16
- const appKitOptions = useAppKitOptions();
17
-
18
- const emits = defineEmits(['complete']);
19
-
20
- type OcrBusinessLicenseProps = {
21
- disabled: boolean;
22
- };
23
-
24
- const props = defineProps<OcrBusinessLicenseProps>();
25
-
26
- export type OcrResult = {
27
- companyName: string;
28
- idCardNo: string;
29
- legalPersonName: string;
30
- };
31
-
32
- async function taroImgCompress(src: string, quality = 80) {
33
- return new Promise((resolve, reject) => {
34
- Taro.compressImage({
35
- src: src,
36
- quality: quality,
37
- success: (res) => {
38
- resolve(res);
39
- },
40
- fail: (res) => {
41
- reject(res);
42
- },
43
- });
44
- });
45
- }
46
-
47
- function getCompressQuality(size: number) {
48
- let quality = 100;
49
- const curSize = size / (1024 * 1024);
50
- if (curSize > 6) {
51
- quality = quality - ((curSize - 6) / curSize) * 100;
52
- }
53
- return quality;
54
- }
55
-
56
- function allTrim(str: string) {
57
- return str.replace(/\s+/g, '');
58
- }
59
-
60
- async function onIconClick() {
61
- if (props.disabled) {
62
- return;
63
- }
64
- console.log('===onIconClick');
65
- let result: OcrResult | null = null;
66
- try {
67
- const csRes = await Taro.chooseImage({
68
- count: 1,
69
- });
70
- let { path, size } = csRes.tempFiles[0];
71
- const compressImg: any =
72
- (await taroImgCompress(path, getCompressQuality(size))) || {};
73
- const filePath = compressImg.tempFilePath || path;
74
- Taro.showLoading({ title: '营业执照识别中..' });
75
- const session = appKitOptions.token();
76
- const baseUrl = appKitOptions.baseUrl();
77
- const upRes: any = await Taro.uploadFile({
78
- url: baseUrl + '/promoact/common/parseBusinessLicense',
79
- filePath,
80
- name: 'file',
81
- formData: {
82
- objectNo: `min${Date.now()}`,
83
- },
84
- header: {
85
- sessionKey: session || '',
86
- token: session || '',
87
- },
88
- });
89
- Taro.hideLoading();
90
- const res = JSON.parse(upRes.data);
91
- if (res.code === '200') {
92
- const faceInfo = res.result || {};
93
- result = {
94
- companyName: allTrim(faceInfo.companyName || ''),
95
- idCardNo: allTrim(faceInfo.idCardNo || ''),
96
- legalPersonName: allTrim(faceInfo.legalPersonName || ''),
97
- fileId: faceInfo.fileId,
98
- originalUrl: faceInfo.originalUrl,
99
- downloadUrl: faceInfo.downloadUrl,
100
- };
101
- console.log('===识别', result);
102
- if (!result.companyName && !result.idCardNo) {
103
- Taro.showToast({ title: '识别失败,请重试', icon: 'none' });
104
- }
105
- } else {
106
- Taro.showToast({
107
- title: res.msg,
108
- icon: 'error',
109
- });
110
- }
111
- } catch (err) {
112
- Taro.hideLoading();
113
- console.log(err);
114
- }
115
- emits('complete', result);
116
- }
117
- </script>
118
-
119
- <style lang="scss">
120
- .ocr-business-license {
121
- width: 24px;
122
- height: 24px;
123
- .ns-icon {
124
- width: 24px;
125
- height: 24px;
126
- }
127
- &.disabled {
128
- .ns-icon {
129
- filter: brightness(1.5) grayscale(1);
130
- }
131
- }
132
- }
133
- </style>
1
+ <template>
2
+ <div
3
+ :class="['ocr-business-license', disabled ? 'disabled' : '']"
4
+ class="ocr-icon"
5
+ @click="onIconClick"
6
+ >
7
+ <ns-icon name="https://cdn.ddjf.com/static/images/beidouxing/ocr-icon.png" />
8
+ </div>
9
+ </template>
10
+
11
+ <script lang="ts" setup>
12
+ import Taro from '@tarojs/taro';
13
+ import { NsIcon } from '@uxda/nutshell/taro';
14
+ import { useAppKitOptions } from '../../Appkit';
15
+
16
+ const appKitOptions = useAppKitOptions();
17
+
18
+ const emits = defineEmits(['complete']);
19
+
20
+ type OcrBusinessLicenseProps = {
21
+ disabled: boolean;
22
+ };
23
+
24
+ const props = defineProps<OcrBusinessLicenseProps>();
25
+
26
+ export type OcrResult = {
27
+ companyName: string;
28
+ idCardNo: string;
29
+ legalPersonName: string;
30
+ };
31
+
32
+ async function taroImgCompress(src: string, quality = 80) {
33
+ return new Promise((resolve, reject) => {
34
+ Taro.compressImage({
35
+ src: src,
36
+ quality: quality,
37
+ success: (res) => {
38
+ resolve(res);
39
+ },
40
+ fail: (res) => {
41
+ reject(res);
42
+ },
43
+ });
44
+ });
45
+ }
46
+
47
+ function getCompressQuality(size: number) {
48
+ let quality = 100;
49
+ const curSize = size / (1024 * 1024);
50
+ if (curSize > 6) {
51
+ quality = quality - ((curSize - 6) / curSize) * 100;
52
+ }
53
+ return quality;
54
+ }
55
+
56
+ function allTrim(str: string) {
57
+ return str.replace(/\s+/g, '');
58
+ }
59
+
60
+ async function onIconClick() {
61
+ if (props.disabled) {
62
+ return;
63
+ }
64
+ console.log('===onIconClick');
65
+ let result: OcrResult | null = null;
66
+ try {
67
+ const csRes = await Taro.chooseImage({
68
+ count: 1,
69
+ });
70
+ let { path, size } = csRes.tempFiles[0];
71
+ const compressImg: any =
72
+ (await taroImgCompress(path, getCompressQuality(size))) || {};
73
+ const filePath = compressImg.tempFilePath || path;
74
+ Taro.showLoading({ title: '营业执照识别中..' });
75
+ const session = appKitOptions.token();
76
+ const baseUrl = appKitOptions.baseUrl();
77
+ const upRes: any = await Taro.uploadFile({
78
+ url: baseUrl + '/promoact/common/parseBusinessLicense',
79
+ filePath,
80
+ name: 'file',
81
+ formData: {
82
+ objectNo: `min${Date.now()}`,
83
+ },
84
+ header: {
85
+ sessionKey: session || '',
86
+ token: session || '',
87
+ },
88
+ });
89
+ Taro.hideLoading();
90
+ const res = JSON.parse(upRes.data);
91
+ if (res.code === '200') {
92
+ const faceInfo = res.result || {};
93
+ result = {
94
+ companyName: allTrim(faceInfo.companyName || ''),
95
+ idCardNo: allTrim(faceInfo.idCardNo || ''),
96
+ legalPersonName: allTrim(faceInfo.legalPersonName || ''),
97
+ fileId: faceInfo.fileId,
98
+ originalUrl: faceInfo.originalUrl,
99
+ downloadUrl: faceInfo.downloadUrl,
100
+ };
101
+ console.log('===识别', result);
102
+ if (!result.companyName && !result.idCardNo) {
103
+ Taro.showToast({ title: '识别失败,请重试', icon: 'none' });
104
+ }
105
+ } else {
106
+ Taro.showToast({
107
+ title: res.msg,
108
+ icon: 'error',
109
+ });
110
+ }
111
+ } catch (err) {
112
+ Taro.hideLoading();
113
+ console.log(err);
114
+ }
115
+ emits('complete', result);
116
+ }
117
+ </script>
118
+
119
+ <style lang="scss">
120
+ .ocr-business-license {
121
+ width: 24px;
122
+ height: 24px;
123
+ .ns-icon {
124
+ width: 24px;
125
+ height: 24px;
126
+ }
127
+ &.disabled {
128
+ .ns-icon {
129
+ filter: brightness(1.5) grayscale(1);
130
+ }
131
+ }
132
+ }
133
+ </style>
@@ -1,133 +1,133 @@
1
- <template>
2
- <div :class="['ocr-icon', disabled ? 'disabled' : '']" @click="onIconClick">
3
- <ns-icon name="https://cdn.ddjf.com/static/images/beidouxing/ocr-icon.png" />
4
- </div>
5
- </template>
6
-
7
- <script lang="ts" setup>
8
- import Taro from '@tarojs/taro';
9
- import { NsIcon } from '@uxda/nutshell/taro';
10
- import { useAppKitOptions } from '../../Appkit';
11
-
12
- const appKitOptions = useAppKitOptions();
13
-
14
- const emits = defineEmits(['complete']);
15
-
16
- type OcrIconProps = {
17
- disabled: boolean;
18
- };
19
-
20
- const props = defineProps<OcrIconProps>();
21
-
22
- export type OcrResult = {
23
- name: string;
24
- number: string;
25
- address: string;
26
- };
27
-
28
- async function taroImgCompress(src: string, quality = 80) {
29
- return new Promise((resolve, reject) => {
30
- Taro.compressImage({
31
- src: src,
32
- quality: quality,
33
- success: (res) => {
34
- resolve(res);
35
- },
36
- fail: (res) => {
37
- reject(res);
38
- },
39
- });
40
- });
41
- }
42
-
43
- function getCompressQuality(size: number) {
44
- let quality = 100;
45
- const curSize = size / (1024 * 1024);
46
- if (curSize > 6) {
47
- quality = quality - ((curSize - 6) / curSize) * 100;
48
- }
49
- return quality;
50
- }
51
-
52
- function allTrim(str: string) {
53
- return str.replace(/\s+/g, '');
54
- }
55
-
56
- async function onIconClick() {
57
- if (props.disabled) {
58
- return;
59
- }
60
- let result: OcrResult | null = null;
61
- try {
62
- const csRes = await Taro.chooseImage({
63
- count: 1,
64
- });
65
- let { path, size } = csRes.tempFiles[0];
66
- const compressImg: any =
67
- (await taroImgCompress(path, getCompressQuality(size))) || {};
68
- const filePath = compressImg.tempFilePath || path;
69
- Taro.showLoading({ title: '身份证识别中..' });
70
- const session = appKitOptions.token();
71
- const baseUrl = appKitOptions.baseUrl();
72
- const upRes: any = await Taro.uploadFile({
73
- url: baseUrl + '/hkapprove/ocr/idcard',
74
- filePath,
75
- name: 'file',
76
- formData: {
77
- objectNo: `min${Date.now()}`,
78
- side: 'face',
79
- },
80
- header: {
81
- sessionKey: session || '',
82
- token: session || '',
83
- },
84
- });
85
- Taro.hideLoading();
86
- const res = JSON.parse(upRes.data);
87
- if (res.code === '200') {
88
- const faceInfo = res.result.faceInfo || {},
89
- file = res.result.fileUploadVO;
90
- result = {
91
- name: allTrim(faceInfo.name || ''),
92
- number: allTrim(faceInfo.num || ''),
93
- address: allTrim(faceInfo.address || ''),
94
- // file: {
95
- // key: file.fileKey,
96
- // url: file.fileUrl,
97
- // object: file.objectNo,
98
- // thumb: file.thumbnailUrl
99
- // }
100
- };
101
- console.log('===识别', result);
102
- if (!result.name && !result.number) {
103
- Taro.showToast({ title: '识别失败,请重试', icon: 'none' });
104
- }
105
- } else {
106
- Taro.showToast({
107
- title: res.msg,
108
- icon: 'error',
109
- });
110
- }
111
- } catch (err) {
112
- Taro.hideLoading();
113
- console.log(err);
114
- }
115
- emits('complete', result);
116
- }
117
- </script>
118
-
119
- <style lang="scss">
120
- .ocr-icon {
121
- width: 24px;
122
- height: 24px;
123
- .ns-icon {
124
- width: 24px;
125
- height: 24px;
126
- }
127
- &.disabled {
128
- .ns-icon {
129
- filter: brightness(1.5) grayscale(1);
130
- }
131
- }
132
- }
133
- </style>
1
+ <template>
2
+ <div :class="['ocr-icon', disabled ? 'disabled' : '']" @click="onIconClick">
3
+ <ns-icon name="https://cdn.ddjf.com/static/images/beidouxing/ocr-icon.png" />
4
+ </div>
5
+ </template>
6
+
7
+ <script lang="ts" setup>
8
+ import Taro from '@tarojs/taro';
9
+ import { NsIcon } from '@uxda/nutshell/taro';
10
+ import { useAppKitOptions } from '../../Appkit';
11
+
12
+ const appKitOptions = useAppKitOptions();
13
+
14
+ const emits = defineEmits(['complete']);
15
+
16
+ type OcrIconProps = {
17
+ disabled: boolean;
18
+ };
19
+
20
+ const props = defineProps<OcrIconProps>();
21
+
22
+ export type OcrResult = {
23
+ name: string;
24
+ number: string;
25
+ address: string;
26
+ };
27
+
28
+ async function taroImgCompress(src: string, quality = 80) {
29
+ return new Promise((resolve, reject) => {
30
+ Taro.compressImage({
31
+ src: src,
32
+ quality: quality,
33
+ success: (res) => {
34
+ resolve(res);
35
+ },
36
+ fail: (res) => {
37
+ reject(res);
38
+ },
39
+ });
40
+ });
41
+ }
42
+
43
+ function getCompressQuality(size: number) {
44
+ let quality = 100;
45
+ const curSize = size / (1024 * 1024);
46
+ if (curSize > 6) {
47
+ quality = quality - ((curSize - 6) / curSize) * 100;
48
+ }
49
+ return quality;
50
+ }
51
+
52
+ function allTrim(str: string) {
53
+ return str.replace(/\s+/g, '');
54
+ }
55
+
56
+ async function onIconClick() {
57
+ if (props.disabled) {
58
+ return;
59
+ }
60
+ let result: OcrResult | null = null;
61
+ try {
62
+ const csRes = await Taro.chooseImage({
63
+ count: 1,
64
+ });
65
+ let { path, size } = csRes.tempFiles[0];
66
+ const compressImg: any =
67
+ (await taroImgCompress(path, getCompressQuality(size))) || {};
68
+ const filePath = compressImg.tempFilePath || path;
69
+ Taro.showLoading({ title: '身份证识别中..' });
70
+ const session = appKitOptions.token();
71
+ const baseUrl = appKitOptions.baseUrl();
72
+ const upRes: any = await Taro.uploadFile({
73
+ url: baseUrl + '/hkapprove/ocr/idcard',
74
+ filePath,
75
+ name: 'file',
76
+ formData: {
77
+ objectNo: `min${Date.now()}`,
78
+ side: 'face',
79
+ },
80
+ header: {
81
+ sessionKey: session || '',
82
+ token: session || '',
83
+ },
84
+ });
85
+ Taro.hideLoading();
86
+ const res = JSON.parse(upRes.data);
87
+ if (res.code === '200') {
88
+ const faceInfo = res.result.faceInfo || {},
89
+ file = res.result.fileUploadVO;
90
+ result = {
91
+ name: allTrim(faceInfo.name || ''),
92
+ number: allTrim(faceInfo.num || ''),
93
+ address: allTrim(faceInfo.address || ''),
94
+ // file: {
95
+ // key: file.fileKey,
96
+ // url: file.fileUrl,
97
+ // object: file.objectNo,
98
+ // thumb: file.thumbnailUrl
99
+ // }
100
+ };
101
+ console.log('===识别', result);
102
+ if (!result.name && !result.number) {
103
+ Taro.showToast({ title: '识别失败,请重试', icon: 'none' });
104
+ }
105
+ } else {
106
+ Taro.showToast({
107
+ title: res.msg,
108
+ icon: 'error',
109
+ });
110
+ }
111
+ } catch (err) {
112
+ Taro.hideLoading();
113
+ console.log(err);
114
+ }
115
+ emits('complete', result);
116
+ }
117
+ </script>
118
+
119
+ <style lang="scss">
120
+ .ocr-icon {
121
+ width: 24px;
122
+ height: 24px;
123
+ .ns-icon {
124
+ width: 24px;
125
+ height: 24px;
126
+ }
127
+ &.disabled {
128
+ .ns-icon {
129
+ filter: brightness(1.5) grayscale(1);
130
+ }
131
+ }
132
+ }
133
+ </style>