|
@@ -339,15 +339,9 @@ export default defineComponent({
|
|
|
}
|
|
|
return state.errorMessage
|
|
|
}
|
|
|
+ const handleEnterFunc = inject('handle-enter', () => {})
|
|
|
const handleEnter = () => {
|
|
|
- const find = (itemVue: any) => {
|
|
|
- if (itemVue?.type.name === "CusForm") {
|
|
|
- itemVue.setupState.handleEnter()
|
|
|
- } else {
|
|
|
- find(itemVue.parent)
|
|
|
- }
|
|
|
- }
|
|
|
- find(ref_cusFormColumn?.value?.$el?.__vueParentComponent)
|
|
|
+ handleEnterFunc?.()
|
|
|
}
|
|
|
const reset = () => {
|
|
|
state.errorMessage = null
|