Skip to content

Commit

Permalink
fix: 修复getSearchFormData无法获取默认值的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
greper committed Mar 22, 2022
1 parent 002031b commit cd05002
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/fast-admin/fs-admin-antdv
Submodule fs-admin-antdv updated 1 files
+4 −4 package.json
3 changes: 3 additions & 0 deletions packages/fast-crud/src/components/fs-crud.vue
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,9 @@ function useSearch(props, ctx) {
};
const getSearchFormData = () => {
if(searchRef.value){
searchFormData.value = searchRef.value.getForm()
}
return searchFormData.value;
};
Expand Down

0 comments on commit cd05002

Please sign in to comment.