角色 是否默认角色
This commit is contained in:
parent
ea8b90fdf2
commit
3e8d875a0e
@ -724,6 +724,21 @@ class RoleEditPage extends React.Component {
|
|||||||
}
|
}
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</Col>
|
</Col>
|
||||||
|
<Col span={12}>
|
||||||
|
<Form.Item label={'默认角色'}>
|
||||||
|
{
|
||||||
|
getFieldDecorator('ISDEFAULT', {
|
||||||
|
validateTrigger: 'onBlur',
|
||||||
|
initialValue: (this.state.data.ISDEFAULT ? this.state.data.ISDEFAULT.toString() : 'false'),
|
||||||
|
})(
|
||||||
|
<Select placeholder='数据类型'>
|
||||||
|
<Option value='false'>否</Option>
|
||||||
|
<Option value='true'>是</Option>
|
||||||
|
</Select>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
</Form.Item>
|
||||||
|
</Col>
|
||||||
<Col span={12}>
|
<Col span={12}>
|
||||||
<Form.Item label={'备注'}>
|
<Form.Item label={'备注'}>
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user