yee 7 years ago
parent
commit
b85a5cb43f
1 changed files with 5 additions and 5 deletions
  1. 5 5
      js/component/manageCenter/userManage/userDesc.jsx

+ 5 - 5
js/component/manageCenter/userManage/userDesc.jsx

@@ -288,7 +288,7 @@ const UserShow = Form.create()(React.createClass({
                 </FormItem>
                 <FormItem
                     {...formItemLayout}
-                    label="是否专家" >
+                    label="是否明星" >
                     {getFieldDecorator('celebrity')(
                         <span>{this.state.celebrity ? "否" : "是"}</span>
                     )}
@@ -614,10 +614,10 @@ const UserForm = Form.create()(React.createClass({
                     {getFieldDecorator('expert', {
                         initialValue: this.state.expert
                     })(
-                        <RadioGroup>
+                        <Radio.Group>
                             <Radio value={0}>否</Radio>
                             <Radio value={1}>是</Radio>
-                        </RadioGroup>
+                        </Radio.Group>
                         )}
                 </FormItem>
                 <FormItem
@@ -626,10 +626,10 @@ const UserForm = Form.create()(React.createClass({
                     {getFieldDecorator('celebrity', {
                         initialValue: this.state.celebrity
                     })(
-                        <RadioGroup>
+                        <Radio.Group>
                             <Radio value={0}>否</Radio>
                             <Radio value={1}>是</Radio>
-                        </RadioGroup>
+                        </Radio.Group>
                         )}
                 </FormItem>
                 <FormItem