diff --git a/inventory-web/src/views/stock/inbound/semi.vue b/inventory-web/src/views/stock/inbound/semi.vue index c8bcbbc..14e02d0 100644 --- a/inventory-web/src/views/stock/inbound/semi.vue +++ b/inventory-web/src/views/stock/inbound/semi.vue @@ -181,7 +181,7 @@ v-model:current-page="queryParams.page" v-model:page-size="queryParams.pageSize" :total="total" - :page-sizes="[15, 30, 50, 100]" + :page-sizes="[100, 200, 500, 1000]" layout="total, sizes, prev, pager, next, jumper" background @size-change="fetchData" @@ -468,7 +468,7 @@ const dialogStatus = ref<'create' | 'update'>('create') const tableData = ref([]) const total = ref(0) const formRef = ref() -const queryParams = reactive({ page: 1, pageSize: 15, keyword: '', category: '', material_type: '', statuses: ['在库', '借库'] }) +const queryParams = reactive({ page: 1, pageSize: 100, keyword: '', category: '', material_type: '', statuses: ['在库', '借库'] }) const categoryOptions = ref([]) const typeOptions = ref([]) const materialOptions = ref([])