@uxda/appkit 4.3.0 → 4.3.2
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/COMPONENT_USAGE.md +1523 -0
- package/dist/appkit.css +22 -8
- package/dist/index.js +151 -47
- package/package.json +1 -1
- package/src/balance/api/index.ts +6 -0
- package/src/notice/api/index.ts +6 -0
- package/src/payment/api/endpoints.ts +2 -0
- package/src/payment/api/index.ts +7 -0
- package/src/payment/components/RechargeResult.vue +0 -1
- package/src/payment/components/TradeView.vue +284 -124
- package/src/payment/services/request-payment.ts +2 -0
- package/src/payment/types.ts +1 -0
- package/src/shared/components/OcrBank.vue +229 -0
- package/src/shared/components/OcrBusinessLicense.vue +1 -0
- package/src/shared/http/Http.ts +1 -0
- package/src/user/api/index.ts +6 -0
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="ocr-bank" :class="[disabled ? 'disabled' : '']" v-track-click="'身份证识别-点击'" @click="onPhotograph">
|
|
3
|
+
<slot name="icon">
|
|
4
|
+
<ns-icon name="https://cdn.ddjf.com/static/images/beidouxing/ocr-icon.png" />
|
|
5
|
+
</slot>
|
|
6
|
+
</div>
|
|
7
|
+
|
|
8
|
+
<nut-action-sheet v-model:visible="activeSheetVisible" :menu-items="actionSheetMenus" @choose="chooseImages"
|
|
9
|
+
cancel-txt="取消" />
|
|
10
|
+
</template>
|
|
11
|
+
|
|
12
|
+
<script lang="ts" setup>
|
|
13
|
+
import Taro, { showToast, showLoading, hideLoading, chooseMedia, chooseMessageFile, uploadFile } from '@tarojs/taro'
|
|
14
|
+
import { NsIcon } from '@uxda/nutshell/taro'
|
|
15
|
+
import { useAppKitOptions } from '../../Appkit'
|
|
16
|
+
import { ref } from 'vue';
|
|
17
|
+
|
|
18
|
+
const appKitOptions = useAppKitOptions()
|
|
19
|
+
|
|
20
|
+
const emits = defineEmits(['complete'])
|
|
21
|
+
|
|
22
|
+
type OcrIconProps = {
|
|
23
|
+
disabled?: boolean,
|
|
24
|
+
side?: 'face' | 'back',
|
|
25
|
+
class?: string
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
const props = withDefaults(defineProps<OcrIconProps>(), {
|
|
29
|
+
disabled: false,
|
|
30
|
+
side: 'face',
|
|
31
|
+
class: ''
|
|
32
|
+
})
|
|
33
|
+
|
|
34
|
+
type OcrResultType = {
|
|
35
|
+
faceInfo: {
|
|
36
|
+
name: string
|
|
37
|
+
certNo: string
|
|
38
|
+
address: string
|
|
39
|
+
}
|
|
40
|
+
backInfo: {
|
|
41
|
+
startDate: string
|
|
42
|
+
endDate: string
|
|
43
|
+
}
|
|
44
|
+
fileUploadVO: {
|
|
45
|
+
fileKey: string
|
|
46
|
+
fileUrl: string
|
|
47
|
+
objectNo: string
|
|
48
|
+
thumbnailUrl?: string
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
async function taroImgCompress(src: string, quality = 80) {
|
|
53
|
+
if (Taro.getEnv() === 'WEB') {
|
|
54
|
+
return src;
|
|
55
|
+
} else {
|
|
56
|
+
return new Promise((resolve, reject) => {
|
|
57
|
+
Taro.compressImage({
|
|
58
|
+
src: src,
|
|
59
|
+
quality: quality,
|
|
60
|
+
success: (res) => {
|
|
61
|
+
resolve(res)
|
|
62
|
+
},
|
|
63
|
+
fail: (res) => {
|
|
64
|
+
reject(res)
|
|
65
|
+
},
|
|
66
|
+
})
|
|
67
|
+
})
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
function getCompressQuality(size: number) {
|
|
72
|
+
let quality = 100
|
|
73
|
+
const curSize = size / (1024 * 1024)
|
|
74
|
+
if (curSize > 6) {
|
|
75
|
+
quality = quality - ((curSize - 6) / curSize) * 100
|
|
76
|
+
}
|
|
77
|
+
return quality
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
function allTrim(str: string) {
|
|
81
|
+
return str.replace(/\s+/g, '')
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
async function onUploadFile(csRes: any) {
|
|
85
|
+
let result: OcrResultType | null = null
|
|
86
|
+
try {
|
|
87
|
+
console.log('===上传', csRes)
|
|
88
|
+
let { path, size, tempFilePath } = csRes.tempFiles[0]
|
|
89
|
+
let filePath
|
|
90
|
+
if (Taro.getEnv() !== 'WEB') {
|
|
91
|
+
const compressImg: any = (await taroImgCompress(path || tempFilePath, getCompressQuality(size))) || {}
|
|
92
|
+
filePath = compressImg.tempFilePath || path
|
|
93
|
+
} else {
|
|
94
|
+
filePath = path || tempFilePath
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
console.log(filePath, 'filePath')
|
|
98
|
+
showLoading({ title: '身份证识别中..' })
|
|
99
|
+
|
|
100
|
+
const session = appKitOptions.token()
|
|
101
|
+
const baseUrl = appKitOptions.baseUrl()
|
|
102
|
+
const upRes: any = await uploadFile({
|
|
103
|
+
url: baseUrl + '/hkapprove/ocr/idcard',
|
|
104
|
+
filePath,
|
|
105
|
+
name: 'file',
|
|
106
|
+
formData: {
|
|
107
|
+
objectNo: `min${Date.now()}`,
|
|
108
|
+
side: props.side,
|
|
109
|
+
},
|
|
110
|
+
header: {
|
|
111
|
+
token: session || '',
|
|
112
|
+
},
|
|
113
|
+
})
|
|
114
|
+
hideLoading()
|
|
115
|
+
|
|
116
|
+
const res = JSON.parse(upRes.data)
|
|
117
|
+
if (res.code === '200') {
|
|
118
|
+
const faceInfo = res.result.faceInfo || {}
|
|
119
|
+
const backInfo = res.result.backInfo || {}
|
|
120
|
+
result = {
|
|
121
|
+
faceInfo: {
|
|
122
|
+
name: allTrim(faceInfo.name || ''),
|
|
123
|
+
certNo: allTrim(faceInfo.num || ''),
|
|
124
|
+
address: allTrim(faceInfo.address || ''),
|
|
125
|
+
},
|
|
126
|
+
backInfo: {
|
|
127
|
+
startDate: backInfo?.startDate || '',
|
|
128
|
+
endDate: backInfo?.endDate || ''
|
|
129
|
+
},
|
|
130
|
+
fileUploadVO: res.result.fileUploadVO || {},
|
|
131
|
+
}
|
|
132
|
+
console.log('===识别', result)
|
|
133
|
+
if (props.side === 'face' && !result.faceInfo.name && !result.faceInfo.certNo) {
|
|
134
|
+
showToast({ title: '识别失败,请重试', icon: 'none' })
|
|
135
|
+
}
|
|
136
|
+
if (props.side === 'back' && !result.backInfo?.startDate && !result.backInfo?.endDate) {
|
|
137
|
+
showToast({ title: '识别失败,请重试', icon: 'none' })
|
|
138
|
+
}
|
|
139
|
+
} else {
|
|
140
|
+
showToast({
|
|
141
|
+
title: res.msg,
|
|
142
|
+
icon: 'error',
|
|
143
|
+
})
|
|
144
|
+
}
|
|
145
|
+
} catch (err) {
|
|
146
|
+
hideLoading()
|
|
147
|
+
console.log(err)
|
|
148
|
+
}
|
|
149
|
+
emits('complete', result)
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
// 上传图片操作面板
|
|
154
|
+
const activeSheetVisible = ref(false)
|
|
155
|
+
const actionSheetMenus = [
|
|
156
|
+
{
|
|
157
|
+
name: '拍摄',
|
|
158
|
+
type: 'camera',
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
name: '从相册选择',
|
|
162
|
+
type: 'album',
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
name: '从聊天会话选择',
|
|
166
|
+
type: 'message',
|
|
167
|
+
},
|
|
168
|
+
]
|
|
169
|
+
if (Taro.getEnv() === 'WEB') {
|
|
170
|
+
actionSheetMenus.pop()
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
// 选择图像上传
|
|
174
|
+
async function chooseImages(item: any) {
|
|
175
|
+
if (['camera', 'album'].includes(item.type)) {
|
|
176
|
+
const csRes = await chooseMedia({
|
|
177
|
+
count: 1,
|
|
178
|
+
sourceType: [item.type], // "camera" | "album"
|
|
179
|
+
maxDuration: 60, // 使用duration属性判断是图片还是视频,图片没有该属性
|
|
180
|
+
})
|
|
181
|
+
|
|
182
|
+
onUploadFile(csRes)
|
|
183
|
+
} else {
|
|
184
|
+
const csRes = await chooseMessageFile({
|
|
185
|
+
count: 1,
|
|
186
|
+
type: 'image',
|
|
187
|
+
})
|
|
188
|
+
|
|
189
|
+
onUploadFile(csRes)
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
async function onPhotograph() {
|
|
194
|
+
if (props.disabled) return
|
|
195
|
+
|
|
196
|
+
if (Taro.getEnv() === 'WEB') {
|
|
197
|
+
const csRes = await chooseMedia({
|
|
198
|
+
count: 1,
|
|
199
|
+
sourceType: ['album'], // "camera" | "album"
|
|
200
|
+
maxDuration: 60, // 使用duration属性判断是图片还是视频,图片没有该属性
|
|
201
|
+
})
|
|
202
|
+
|
|
203
|
+
onUploadFile(csRes)
|
|
204
|
+
return
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
activeSheetVisible.value = true
|
|
208
|
+
}
|
|
209
|
+
</script>
|
|
210
|
+
|
|
211
|
+
<style lang="scss">
|
|
212
|
+
.ocr-bank {
|
|
213
|
+
width: 24px;
|
|
214
|
+
height: 24px;
|
|
215
|
+
display: inline-flex;
|
|
216
|
+
align-items: center;
|
|
217
|
+
|
|
218
|
+
.ns-icon {
|
|
219
|
+
width: 24px;
|
|
220
|
+
height: 24px;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
&.disabled {
|
|
224
|
+
.ns-icon {
|
|
225
|
+
filter: brightness(1.5) grayscale(1);
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
</style>
|
package/src/shared/http/Http.ts
CHANGED
package/src/user/api/index.ts
CHANGED
|
@@ -18,6 +18,12 @@ const vendor = {
|
|
|
18
18
|
}
|
|
19
19
|
const startTime = new Date().getTime()
|
|
20
20
|
|
|
21
|
+
logger.info({
|
|
22
|
+
send: JSON.stringify({ url: config.url, data: config.data }),
|
|
23
|
+
receive: null,
|
|
24
|
+
traceId: header.traceId,
|
|
25
|
+
duration: 0,
|
|
26
|
+
})
|
|
21
27
|
TaroRequest({
|
|
22
28
|
url: config.url,
|
|
23
29
|
method: config.method,
|