|
@@ -74,11 +74,21 @@ export const columns: BasicColumn[] = [
|
|
|
align:"center",
|
|
|
dataIndex: 'saleDepartment'
|
|
|
},
|
|
|
+ {
|
|
|
+ title: '客户联系人(customer contact)',
|
|
|
+ align:"center",
|
|
|
+ dataIndex: 'liaisonInfo'
|
|
|
+ },
|
|
|
{
|
|
|
title: '业务员(salesman)',
|
|
|
align:"center",
|
|
|
dataIndex: 'salesman',
|
|
|
},
|
|
|
+ {
|
|
|
+ title: '质量等级(qualityGrade)',
|
|
|
+ align:"center",
|
|
|
+ dataIndex: 'qualityGrade'
|
|
|
+ },
|
|
|
{
|
|
|
title: '合同来源(sourceCode)',
|
|
|
align:"center",
|
|
@@ -90,17 +100,30 @@ export const columns: BasicColumn[] = [
|
|
|
dataIndex: 'sourceCode',
|
|
|
},
|
|
|
{
|
|
|
- title: '提交(submit)',
|
|
|
+ title: '状态(status)',
|
|
|
align:"center",
|
|
|
- dataIndex: 'submit',
|
|
|
+ width:120,
|
|
|
+ dataIndex: 'status',
|
|
|
customRender:function (t, r, index) {
|
|
|
if(t.text==1){
|
|
|
- return '是(yes)'
|
|
|
+ return '已提交(yes)'
|
|
|
}else if(t.text==0){
|
|
|
- return '否(no)'
|
|
|
+ return '未提交(no)'
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
+ // {
|
|
|
+ // title: '提交(submit)',
|
|
|
+ // align:"center",
|
|
|
+ // dataIndex: 'submit',
|
|
|
+ // customRender:function (t, r, index) {
|
|
|
+ // if(t.text==1){
|
|
|
+ // return '是(yes)'
|
|
|
+ // }else if(t.text==0){
|
|
|
+ // return '否(no)'
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // },
|
|
|
{
|
|
|
title: '关闭(close)',
|
|
|
align:"center",
|