Skip to content

Commit

Permalink
fix: select remote change pagesize to 15
Browse files Browse the repository at this point in the history
  • Loading branch information
kanyxmo committed May 22, 2024
1 parent 190ceaa commit 1a91af3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ if ( props.component.multiple === true ) {
if (isObject(props.component.dict)) {
props.component.dict.pageOption = {
page: 1,
pageSize: props.component?.dict?.pageSize ?? 10
pageSize: props.component?.dict?.pageSize ?? 15
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/components/ma-form/formItem/form-select.vue
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const props = defineProps({
if (isObject(props.component.dict)) {
props.component.dict.pageOption = {
page: 1,
pageSize: props.component?.dict?.pageSize ?? 10
pageSize: props.component?.dict?.pageSize ?? 15
}
}

Expand Down

0 comments on commit 1a91af3

Please sign in to comment.