@yoooloo42/joker 1.0.34 → 1.0.35
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/index.cjs.js +5 -5
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +5 -5
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -39425,8 +39425,8 @@ const image = reactive({
|
|
|
39425
39425
|
) {
|
|
39426
39426
|
return ''
|
|
39427
39427
|
}
|
|
39428
|
-
if (props.dataBox.fieldsValue[
|
|
39429
|
-
return props.dataBox.fieldsValue[
|
|
39428
|
+
if (props.dataBox.fieldsValue[props.item.fieldName]) {
|
|
39429
|
+
return props.dataBox.fieldsValue[props.item.fieldName]
|
|
39430
39430
|
}
|
|
39431
39431
|
return ''
|
|
39432
39432
|
}),
|
|
@@ -39467,7 +39467,7 @@ const images = reactive({
|
|
|
39467
39467
|
} else {
|
|
39468
39468
|
props.dataBox.fieldsValue[props.item.fieldName]
|
|
39469
39469
|
.filter(i => {
|
|
39470
|
-
return !
|
|
39470
|
+
return !props.dataBox.fieldsValue[props.item.imageDelete].includes(i)
|
|
39471
39471
|
})
|
|
39472
39472
|
.forEach(i => {
|
|
39473
39473
|
result.push(i);
|
|
@@ -39580,9 +39580,9 @@ const upload = reactive({
|
|
|
39580
39580
|
hdl_carplate: result => {
|
|
39581
39581
|
// 获取车牌识别结果
|
|
39582
39582
|
// eslint-disable-next-line
|
|
39583
|
-
|
|
39583
|
+
props.dataBox.fieldsValue[props.item.fieldName] = result.src ? result.src : '';
|
|
39584
39584
|
// eslint-disable-next-line
|
|
39585
|
-
|
|
39585
|
+
props.dataBox.fieldsValue[props.item.carplate] =
|
|
39586
39586
|
result.result && result.result.txt ? result.result.txt : '';
|
|
39587
39587
|
}
|
|
39588
39588
|
}
|