@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.cjs.js
CHANGED
|
@@ -21967,7 +21967,7 @@ const upload_carplate = '/ly0/upload-req/carplate';
|
|
|
21967
21967
|
// 后端请求
|
|
21968
21968
|
async function request$1(_ref) {
|
|
21969
21969
|
let {
|
|
21970
|
-
domain =
|
|
21970
|
+
domain = 'http://127.0.0.1:443',
|
|
21971
21971
|
url,
|
|
21972
21972
|
// 路由
|
|
21973
21973
|
data // 请求数据
|
|
@@ -21989,7 +21989,7 @@ async function request$1(_ref) {
|
|
|
21989
21989
|
// ly0后端请求
|
|
21990
21990
|
async function ly0request(_ref2) {
|
|
21991
21991
|
let {
|
|
21992
|
-
domain =
|
|
21992
|
+
domain = 'http://127.0.0.1:443',
|
|
21993
21993
|
url,
|
|
21994
21994
|
// 路由
|
|
21995
21995
|
data,
|
|
@@ -22032,7 +22032,7 @@ async function ly0request(_ref2) {
|
|
|
22032
22032
|
// 存储过程
|
|
22033
22033
|
async function storpro(_ref3) {
|
|
22034
22034
|
let {
|
|
22035
|
-
domain =
|
|
22035
|
+
domain = 'http://127.0.0.1:443',
|
|
22036
22036
|
storproName,
|
|
22037
22037
|
// 存储过程名称
|
|
22038
22038
|
data,
|
|
@@ -39429,8 +39429,8 @@ const image = vue.reactive({
|
|
|
39429
39429
|
) {
|
|
39430
39430
|
return ''
|
|
39431
39431
|
}
|
|
39432
|
-
if (props.dataBox.fieldsValue[
|
|
39433
|
-
return props.dataBox.fieldsValue[
|
|
39432
|
+
if (props.dataBox.fieldsValue[props.item.fieldName]) {
|
|
39433
|
+
return props.dataBox.fieldsValue[props.item.fieldName]
|
|
39434
39434
|
}
|
|
39435
39435
|
return ''
|
|
39436
39436
|
}),
|
|
@@ -39471,7 +39471,7 @@ const images = vue.reactive({
|
|
|
39471
39471
|
} else {
|
|
39472
39472
|
props.dataBox.fieldsValue[props.item.fieldName]
|
|
39473
39473
|
.filter(i => {
|
|
39474
|
-
return !
|
|
39474
|
+
return !props.dataBox.fieldsValue[props.item.imageDelete].includes(i)
|
|
39475
39475
|
})
|
|
39476
39476
|
.forEach(i => {
|
|
39477
39477
|
result.push(i);
|
|
@@ -39584,9 +39584,9 @@ const upload = vue.reactive({
|
|
|
39584
39584
|
hdl_carplate: result => {
|
|
39585
39585
|
// 获取车牌识别结果
|
|
39586
39586
|
// eslint-disable-next-line
|
|
39587
|
-
|
|
39587
|
+
props.dataBox.fieldsValue[props.item.fieldName] = result.src ? result.src : '';
|
|
39588
39588
|
// eslint-disable-next-line
|
|
39589
|
-
|
|
39589
|
+
props.dataBox.fieldsValue[props.item.carplate] =
|
|
39590
39590
|
result.result && result.result.txt ? result.result.txt : '';
|
|
39591
39591
|
}
|
|
39592
39592
|
}
|