【issues/5288】popup弹框,无法将选择的数据填充到自身

pull/755/head
zhangdaiscott 2023-08-31 11:49:35 +08:00
parent ce2cd78190
commit 9df6d6c945
1 changed files with 4 additions and 4 deletions

View File

@ -57,7 +57,7 @@
default: () => [],
},
},
emits: ['update:value', 'register', 'change','focus' ],
emits: ['update:value', 'register', 'popUpChange', 'focus'],
setup(props, { emit, refs }) {
const { createMessage } = useMessage();
const attrs = useAttrs();
@ -124,9 +124,9 @@
props.formElRef && props.formElRef.setFieldsValue(values);
//
props.setFieldsValue && props.setFieldsValue(values);
// update-begin--author:liaozhiyang---date:20230811---forissues/5213JPopupchange
emit('change', values);
// update-end--author:liaozhiyang---date:20230811---forissues/5213JPopupchange
// update-begin--author:liaozhiyang---date:20230831---forissues/5288popup
emit('popUpChange', values);
// update-begin--author:liaozhiyang---date:20230831---forissues/5288popup
}
return {