@yoooloo42/joker 1.0.33 → 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
@@ -39342,7 +39342,7 @@ const input = reactive({
39342
39342
  return props.item.placeholder ? props.item.placeholder : props.myProps.placeholder.input
39343
39343
  }),
39344
39344
  showPassword: computed(()=>{
39345
- return !!this.item.showPassword
39345
+ return !!props.item.showPassword
39346
39346
  }),
39347
39347
  hdlCannotInput: event => { // 解决偶发不能输入的问题
39348
39348
  props.dataBox.fieldsValue[props.item.fieldName] = event.target.value;
@@ -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
  }