|
|
|
@ -137,7 +137,6 @@
|
|
|
|
|
<a-table |
|
|
|
|
ref="table" |
|
|
|
|
size="middle" |
|
|
|
|
:scroll="{y:460}" |
|
|
|
|
bordered |
|
|
|
|
rowKey="id" |
|
|
|
|
:columns="columns" |
|
|
|
@ -145,8 +144,38 @@
|
|
|
|
|
:pagination="ipagination" |
|
|
|
|
:loading="loading" |
|
|
|
|
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}" |
|
|
|
|
class="j-table-force-nowrap" |
|
|
|
|
@change="handleTableChange"> |
|
|
|
|
|
|
|
|
|
<span slot="processId" slot-scope="text, record"> |
|
|
|
|
<j-ellipsis :value="text" :length="10"/> |
|
|
|
|
</span> |
|
|
|
|
<span slot="supplierName" slot-scope="text, record"> |
|
|
|
|
<j-ellipsis :value="text" :length="5"/> |
|
|
|
|
</span> |
|
|
|
|
<span slot="descriptionName" slot-scope="text, record"> |
|
|
|
|
<j-ellipsis :value="text" :length="10"/> |
|
|
|
|
</span> |
|
|
|
|
<span slot="materialsNumber" slot-scope="text, record"> |
|
|
|
|
<j-ellipsis :value="text" :length="10"/> |
|
|
|
|
</span> |
|
|
|
|
<span slot="merchandiseName" slot-scope="text, record"> |
|
|
|
|
<j-ellipsis :value="text" :length="10"/> |
|
|
|
|
</span> |
|
|
|
|
<span slot="specification" slot-scope="text, record"> |
|
|
|
|
<j-ellipsis :value="text" :length="5"/> |
|
|
|
|
</span> |
|
|
|
|
<span slot="type" slot-scope="text, record"> |
|
|
|
|
<j-ellipsis :value="text" :length="5"/> |
|
|
|
|
</span> |
|
|
|
|
<span slot="unitWasteWarehouseCodeId" slot-scope="text, record"> |
|
|
|
|
<j-ellipsis :value="text" :length="7"/> |
|
|
|
|
</span> |
|
|
|
|
<span slot="productionTime" slot-scope="text, record"> |
|
|
|
|
<j-ellipsis :value="text" :length="10"/> |
|
|
|
|
</span> |
|
|
|
|
<span slot="createTime" slot-scope="text, record"> |
|
|
|
|
<j-ellipsis :value="text" :length="10"/> |
|
|
|
|
</span> |
|
|
|
|
<template slot="htmlSlot" slot-scope="text"> |
|
|
|
|
<div v-html="text"></div> |
|
|
|
|
</template> |
|
|
|
@ -228,11 +257,13 @@
|
|
|
|
|
{ |
|
|
|
|
title:'流程表单号', |
|
|
|
|
align:"center", |
|
|
|
|
dataIndex: 'processId' |
|
|
|
|
scopedSlots: { customRender: 'processId' }, |
|
|
|
|
dataIndex: 'processId', |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title:'供应商', |
|
|
|
|
align:"center", |
|
|
|
|
scopedSlots: { customRender: 'supplierName' }, |
|
|
|
|
dataIndex: 'supplierName' |
|
|
|
|
}, |
|
|
|
|
// { |
|
|
|
@ -243,26 +274,31 @@
|
|
|
|
|
{ |
|
|
|
|
title:'物料组', |
|
|
|
|
align:"center", |
|
|
|
|
scopedSlots: { customRender: 'descriptionName' }, |
|
|
|
|
dataIndex: 'descriptionName' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title:'物料编号', |
|
|
|
|
align:"center", |
|
|
|
|
scopedSlots: { customRender: 'materialsNumber' }, |
|
|
|
|
dataIndex: 'materialsNumber' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title:'物料名称', |
|
|
|
|
align:"center", |
|
|
|
|
scopedSlots: { customRender: 'merchandiseName' }, |
|
|
|
|
dataIndex: 'merchandiseName' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title:'规格', |
|
|
|
|
align:"center", |
|
|
|
|
scopedSlots: { customRender: 'specification' }, |
|
|
|
|
dataIndex: 'specification' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title:'型号', |
|
|
|
|
align:"center", |
|
|
|
|
scopedSlots: { customRender: 'type' }, |
|
|
|
|
dataIndex: 'type' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
@ -288,6 +324,7 @@
|
|
|
|
|
{ |
|
|
|
|
title:'仓储地点', |
|
|
|
|
align:"center", |
|
|
|
|
scopedSlots: { customRender: 'unitWasteWarehouseCodeId' }, |
|
|
|
|
dataIndex: 'unitWasteWarehouseCodeId' |
|
|
|
|
}, |
|
|
|
|
// { |
|
|
|
@ -298,6 +335,7 @@
|
|
|
|
|
{ |
|
|
|
|
title:'生产时间', |
|
|
|
|
align:"center", |
|
|
|
|
scopedSlots: { customRender: 'productionTime' }, |
|
|
|
|
dataIndex: 'productionTime', |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
@ -326,6 +364,7 @@
|
|
|
|
|
{ |
|
|
|
|
title:'入库时间', |
|
|
|
|
align:"center", |
|
|
|
|
scopedSlots: { customRender: 'createTime' }, |
|
|
|
|
dataIndex: 'createTime', |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|