|
@@ -115,11 +115,12 @@ class ModalRecommendRecord extends React.Component {
|
115
|
115
|
title: '状态',
|
116
|
116
|
// eslint-disable-next-line consistent-return
|
117
|
117
|
render: (text, records) => {
|
118
|
|
- if (records.status === 1) { return '报备' }
|
119
|
|
- if (records.status === 2) { return '到访' }
|
120
|
|
- if (records.status === 3) { return '认筹' }
|
121
|
|
- if (records.status === 4) { return '签约' }
|
122
|
|
- // reportRecommendStatus
|
|
118
|
+ if (records.verifyStatus === 0) { return '未审核' }
|
|
119
|
+ if (records.verifyStatus === 1) {
|
|
120
|
+ if (records.reportRecommendStatus === 1) { return '报备' }
|
|
121
|
+ if (records.reportRecommendStatus === 2) { return '推荐' }
|
|
122
|
+ }
|
|
123
|
+ if (records.verifyStatus === 2) { return '审核不通过' }
|
123
|
124
|
},
|
124
|
125
|
},
|
125
|
126
|
]
|