@yoooloo42/joker 1.0.34 → 1.0.36
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 +8 -8
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +8 -8
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -21963,7 +21963,7 @@ const upload_carplate = '/ly0/upload-req/carplate';
|
|
|
21963
21963
|
// 后端请求
|
|
21964
21964
|
async function request$1(_ref) {
|
|
21965
21965
|
let {
|
|
21966
|
-
domain =
|
|
21966
|
+
domain = 'http://127.0.0.1:443',
|
|
21967
21967
|
url,
|
|
21968
21968
|
// 路由
|
|
21969
21969
|
data // 请求数据
|
|
@@ -21985,7 +21985,7 @@ async function request$1(_ref) {
|
|
|
21985
21985
|
// ly0后端请求
|
|
21986
21986
|
async function ly0request$1(_ref2) {
|
|
21987
21987
|
let {
|
|
21988
|
-
domain =
|
|
21988
|
+
domain = 'http://127.0.0.1:443',
|
|
21989
21989
|
url,
|
|
21990
21990
|
// 路由
|
|
21991
21991
|
data,
|
|
@@ -22028,7 +22028,7 @@ async function ly0request$1(_ref2) {
|
|
|
22028
22028
|
// 存储过程
|
|
22029
22029
|
async function storpro(_ref3) {
|
|
22030
22030
|
let {
|
|
22031
|
-
domain =
|
|
22031
|
+
domain = 'http://127.0.0.1:443',
|
|
22032
22032
|
storproName,
|
|
22033
22033
|
// 存储过程名称
|
|
22034
22034
|
data,
|
|
@@ -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
|
}
|