|
@@ -78,10 +78,16 @@ const CustomerChange = (props) => {
|
78
|
78
|
align: 'center',
|
79
|
79
|
},
|
80
|
80
|
{
|
81
|
|
- title: '状态',
|
82
|
|
- dataIndex: 'status',
|
83
|
|
- key: 'status',
|
|
81
|
+ title: '客户状态',
|
|
82
|
+ dataIndex: 'reportRecommendStatus',
|
|
83
|
+ key: 'reportRecommendStatus',
|
84
|
84
|
align: 'center',
|
|
85
|
+ render: (text, records) => {
|
|
86
|
+ if (records.status === 1) { return '报备' }
|
|
87
|
+ if (records.status === 2) { return '到访' }
|
|
88
|
+ if (records.status === 3) { return '认购' }
|
|
89
|
+ if (records.status === 4) { return '签约' }
|
|
90
|
+ },
|
85
|
91
|
},
|
86
|
92
|
{
|
87
|
93
|
title: '调整后归属',
|