|
@@ -60,7 +60,6 @@ export const columns: BasicColumn[] = [
|
|
title: '业务员(salesman)',
|
|
title: '业务员(salesman)',
|
|
align:"center",
|
|
align:"center",
|
|
dataIndex: 'salesman',
|
|
dataIndex: 'salesman',
|
|
- width:'250'
|
|
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: '提交(submit)',
|
|
title: '提交(submit)',
|
|
@@ -90,6 +89,7 @@ export const columns: BasicColumn[] = [
|
|
title: '客户确认(customer confirm)',
|
|
title: '客户确认(customer confirm)',
|
|
align:"center",
|
|
align:"center",
|
|
dataIndex: 'status',
|
|
dataIndex: 'status',
|
|
|
|
+ width:250,
|
|
customRender:function (t, r, index) {
|
|
customRender:function (t, r, index) {
|
|
if(t.text==1){
|
|
if(t.text==1){
|
|
return '已确认'
|
|
return '已确认'
|
|
@@ -102,39 +102,39 @@ export const columns: BasicColumn[] = [
|
|
title: '基础协议(base protocaol)',
|
|
title: '基础协议(base protocaol)',
|
|
align:"center",
|
|
align:"center",
|
|
dataIndex: 'baseProtocaol',
|
|
dataIndex: 'baseProtocaol',
|
|
- width:'250',
|
|
|
|
|
|
+ width:250,
|
|
slots: { customRender: 'viewFile' },
|
|
slots: { customRender: 'viewFile' },
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: '扫描合同(scan contract)',
|
|
title: '扫描合同(scan contract)',
|
|
align:"center",
|
|
align:"center",
|
|
dataIndex: 'scanProtocaol',
|
|
dataIndex: 'scanProtocaol',
|
|
- width:'250',
|
|
|
|
|
|
+ width:250,
|
|
slots: { customRender: 'viewFile' },
|
|
slots: { customRender: 'viewFile' },
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: '订单金额(order money)',
|
|
title: '订单金额(order money)',
|
|
align:"center",
|
|
align:"center",
|
|
dataIndex: 'orderMoney',
|
|
dataIndex: 'orderMoney',
|
|
- width:'250'
|
|
|
|
|
|
+ width:250
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: '发货金额(delivery money)',
|
|
title: '发货金额(delivery money)',
|
|
align:"center",
|
|
align:"center",
|
|
dataIndex: 'deliveryMoney',
|
|
dataIndex: 'deliveryMoney',
|
|
- width:'250'
|
|
|
|
|
|
+ width:250
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: '发票金额(invoice money)',
|
|
title: '发票金额(invoice money)',
|
|
align:"center",
|
|
align:"center",
|
|
dataIndex: 'invoiceMoney',
|
|
dataIndex: 'invoiceMoney',
|
|
- width:'250'
|
|
|
|
|
|
+ width:250
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: '收款金额(collected money)',
|
|
title: '收款金额(collected money)',
|
|
align:"center",
|
|
align:"center",
|
|
dataIndex: 'collectedMoney',
|
|
dataIndex: 'collectedMoney',
|
|
- width:'250'
|
|
|
|
|
|
+ width:250
|
|
},
|
|
},
|
|
];
|
|
];
|
|
|
|
|