@uxda/appkit 4.1.16 → 4.1.19

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