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

@@ -136,6 +136,7 @@
<!--表格渲染-->
<el-table
ref="table"
:max-height="590"
v-loading="crud.loading"
:data="crud.data"
size="mini"
@@ -242,6 +243,10 @@ export default {
optShow: { add: true, reset: true },
idField: 'iostorinv_id',
url: '/api/sb/inbill',
props: {
// 每页数据条数
size: 20
},
crudMethod: { ...sparePart }
})
},

View File

@@ -126,6 +126,7 @@
<!--表格渲染-->
<el-table
ref="table"
:max-height="590"
v-loading="crud.loading"
:data="crud.data"
size="mini"
@@ -226,6 +227,10 @@ export default {
optShow: { add: true, reset: true },
idField: 'iostorinv_id',
url: '/api/sb/inbill',
props: {
// 每页数据条数
size: 20
},
crudMethod: { ...sparePart }
})
},

View File

@@ -92,6 +92,7 @@
<!--表格渲染-->
<el-table
ref="table"
:max-height="590"
v-loading="crud.loading"
:data="crud.data"
size="mini"
@@ -160,6 +161,10 @@ export default {
optShow: { add: true, reset: true },
idField: 'iostorinv_id',
url: '/api/sb/return',
props: {
// 每页数据条数
size: 20
},
crudMethod: { ...sparePart }
})
},

View File

@@ -126,6 +126,7 @@
<!--表格渲染-->
<el-table
ref="table"
:max-height="590"
v-loading="crud.loading"
:data="crud.data"
size="mini"
@@ -226,6 +227,10 @@ export default {
optShow: { add: true, reset: true },
idField: 'iostorinv_id',
url: '/api/sb/inbill',
props: {
// 每页数据条数
size: 20
},
crudMethod: { ...sparePart }
})
},

View File

@@ -71,7 +71,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 prop="sect_code" label="库区编码" />
<el-table-column prop="sect_name" label="库区名称" />
@@ -119,6 +119,10 @@ export default {
url: 'api/devicesparepartivt',
idField: 'stockrecord_id',
sort: 'stockrecord_id,desc',
props: {
// 每页数据条数
size: 20
},
crudMethod: { ...crudDevicesparepartivt },
optShow: {
add: false,