|
@@ -157,7 +157,9 @@ export default class GroupDetail extends PureComponent {
|
|
|
{getFieldDecorator('code', {
|
|
|
rules: [{ required: true, type: 'string', message: "编号为必填项!" }],
|
|
|
initialValue: code,
|
|
|
- })(<Input placeholder="请输入" />)}
|
|
|
+ })(
|
|
|
+ <Input disabled={operType === 'update' ? true : false} placeholder="请输入" />
|
|
|
+ )}
|
|
|
</Form.Item>
|
|
|
<Form.Item label="标签组名称:" hasFeedback {...formItemLayout}>
|
|
|
{getFieldDecorator('name', {
|