@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.esm.js CHANGED
@@ -39425,8 +39425,8 @@ const image = reactive({
39425
39425
  ) {
39426
39426
  return ''
39427
39427
  }
39428
- if (props.dataBox.fieldsValue[this.item.fieldName]) {
39429
- return props.dataBox.fieldsValue[this.item.fieldName]
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 !this.dataBox.fieldsValue[this.item.imageDelete].includes(i)
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
- this.dataBox.fieldsValue[this.item.fieldName] = result.src ? result.src : '';
39583
+ props.dataBox.fieldsValue[props.item.fieldName] = result.src ? result.src : '';
39584
39584
  // eslint-disable-next-line
39585
- this.dataBox.fieldsValue[this.item.carplate] =
39585
+ props.dataBox.fieldsValue[props.item.carplate] =
39586
39586
  result.result && result.result.txt ? result.result.txt : '';
39587
39587
  }
39588
39588
  }