This commit is contained in:
zds
2022-11-12 10:39:30 +08:00
parent 26831b9970
commit 6e1686c05e
52 changed files with 283 additions and 33 deletions

View File

@@ -109,7 +109,7 @@
</el-button>
</crudOperation>
<!--表格渲染-->
<el-table ref="table" v-loading="crud.loading" :data="crud.data" size="mini" style="width: 100%;" @selection-change="crud.selectionChangeHandler">
<el-table ref="table" :max-height="590" v-loading="crud.loading" :data="crud.data" size="mini" style="width: 100%;" @selection-change="crud.selectionChangeHandler">
<el-table-column type="selection" width="55" />
<el-table-column show-overflow-tooltip prop="pallet_code" label="托盘" width="120px">
<template slot-scope="scope">
@@ -153,6 +153,10 @@ export default {
url: 'api/libraryquery',
idField: '',
sort: 'desc',
props: {
// 每页数据条数
size: 20
},
crudMethod: { ...crudLibraryquery },
optShow: {
add: false,