This commit is contained in:
zds
2022-08-25 11:26:42 +08:00
parent bad5e07f04
commit 08e820ffce
16 changed files with 68 additions and 21 deletions

View File

@@ -188,7 +188,7 @@
v-loading="crud.loading"
size="mini"
:data="crud.data"
:max-height="420"
:max-height="550"
style="width: 100%;"
:highlight-current-row="true"
@selection-change="crud.selectionChangeHandler"
@@ -243,7 +243,11 @@ export default {
name: 'IoStorQuery',
components: { crudOperation, rrOperation, pagination, TaskDialog, DivDialog },
cruds() {
return CRUD({ title: '出入库单报表', idField: 'iostorinv_id', url: 'api/checkoutbill', crudMethod: { ...checkoutbill },
return CRUD({ title: '出入库单报表',
props: {
// 每页数据条数
size: 20
},idField: 'iostorinv_id', url: 'api/checkoutbill', crudMethod: { ...checkoutbill },
optShow: {
add: false,
edit: false,