|
@@ -59,6 +59,7 @@
|
|
|
:columns="fabricListColumns"
|
|
|
:data-source="fabricListData"
|
|
|
:loading="loading"
|
|
|
+ :scroll="{ y: 500 }"
|
|
|
:pagination="pagination"
|
|
|
:row-key="record => record.id"
|
|
|
:rowSelection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }"
|
|
@@ -151,7 +152,7 @@ export default {
|
|
|
{
|
|
|
title: '集装箱号',
|
|
|
dataIndex: 'containerNumber',
|
|
|
- width: 140,
|
|
|
+ width: 120,
|
|
|
// scopedSlots: { customRender: 'containerNo' },
|
|
|
className: 'replacecolor'
|
|
|
},
|
|
@@ -165,7 +166,7 @@ export default {
|
|
|
{
|
|
|
title: '外销发票号',
|
|
|
dataIndex: 'exportInvoiceNo',
|
|
|
- width: 160,
|
|
|
+ width: 150,
|
|
|
className: 'replacecolor'
|
|
|
},
|
|
|
|
|
@@ -178,7 +179,7 @@ export default {
|
|
|
{
|
|
|
title: '成衣工厂',
|
|
|
dataIndex: 'garmentFactory',
|
|
|
- width: 160,
|
|
|
+ width: 140,
|
|
|
className: 'replacecolor'
|
|
|
},
|
|
|
|
|
@@ -192,7 +193,7 @@ export default {
|
|
|
{
|
|
|
title: '制单日期',
|
|
|
dataIndex: 'preparedDate',
|
|
|
- width: 160,
|
|
|
+ width: 140,
|
|
|
// 有问题,自动显示当日日期
|
|
|
// customRender: text => {
|
|
|
// return moment(text).format('YYYY-MM-DD')
|
|
@@ -209,14 +210,14 @@ export default {
|
|
|
title: '状态',
|
|
|
dataIndex: 'status',
|
|
|
scopedSlots: { customRender: 'state' },
|
|
|
- width: 160,
|
|
|
+ width: 140,
|
|
|
className: 'replacecolor'
|
|
|
},
|
|
|
{
|
|
|
title: '操作',
|
|
|
dataIndex: 'operation',
|
|
|
scopedSlots: { customRender: 'operationSlot' },
|
|
|
- width: 160,
|
|
|
+ width: 150,
|
|
|
// fixed: 'right',
|
|
|
className: 'replacecolor'
|
|
|
}
|