优化文案,新增选择全部
This commit is contained in:
parent
c4388e172e
commit
055db65bf5
|
@ -73,7 +73,6 @@ export default Form.create()(({ current_user, form, showNotification, match, his
|
|||
|
||||
function onSearch() {
|
||||
let values = getFieldsValue(['firstDraftCheckStatus', 'taskName']);
|
||||
if (values.firstDraftCheckStatus === '0,1,2') values.firstDraftCheckStatus = '';
|
||||
setSearchObj(values);
|
||||
}
|
||||
|
||||
|
@ -229,8 +228,9 @@ export default Form.create()(({ current_user, form, showNotification, match, his
|
|||
placeholder="请选择审核状态"
|
||||
onChange={changeType}
|
||||
>
|
||||
<Option key={0} value={0}>不通过</Option>
|
||||
<Option key={1} value={1}>通过</Option>
|
||||
<Option key='all' value={''}>全部</Option>
|
||||
<Option key={0} value={0}>未通过</Option>
|
||||
<Option key={1} value={1}>已通过</Option>
|
||||
<Option key={2} value={2}>待审核</Option>
|
||||
</Select>,
|
||||
2
|
||||
|
|
Loading…
Reference in New Issue