|
@@ -99,23 +99,10 @@ export default (props) => {
|
99
|
99
|
render: (t) => formatterTime(t),
|
100
|
100
|
renderFormItem: (_, record) => <RangePicker placeholder={['开始日期', '结束日期']} format='YYYY-MM-DD'onChange={handelApplyDateChange} />
|
101
|
101
|
},
|
102
|
|
- {
|
103
|
|
- title: '制证状态',
|
104
|
|
- dataIndex: 'makeStatus',
|
105
|
|
- key: 'makeStatus',
|
106
|
|
- search: false,
|
107
|
|
- render: (_, record) => {
|
108
|
|
- return record.makeStatus === 0
|
109
|
|
- ? '待发放'
|
110
|
|
- : record.makeStatus === 1
|
111
|
|
- ? '已发放' : ''
|
112
|
|
- },
|
113
|
|
- },
|
114
|
102
|
{
|
115
|
103
|
title: '制证状态',
|
116
|
104
|
dataIndex: 'status',
|
117
|
105
|
key: 'status',
|
118
|
|
- hideInTable:true,
|
119
|
106
|
render: (_, record) => {
|
120
|
107
|
return record.status === 2
|
121
|
108
|
? '待发放'
|