@yoooloo42/joker 1.0.32 → 1.0.34

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;
@@ -39375,7 +39375,7 @@ const datePicker = reactive({
39375
39375
  if (props.item.type === 'datetime') {
39376
39376
  return props.myProps.placeholder.datetime
39377
39377
  }
39378
- if (this.item.type === 'date') {
39378
+ if (props.item.type === 'date') {
39379
39379
  return props.myProps.placeholder.date
39380
39380
  }
39381
39381
  return props.myProps.placeholder.datetime