|
@@ -241,7 +241,7 @@ const Expert = React.createClass({
|
|
|
sex: values.sex,
|
|
|
expert:'0',
|
|
|
authentication:this.state.authentication,
|
|
|
- mobile: values.mobile,
|
|
|
+ // mobile: values.mobile,
|
|
|
fixedTel: values.fixedTel,
|
|
|
qq: values.qq,
|
|
|
idNumber: values.idNumber,
|
|
@@ -380,6 +380,9 @@ const Expert = React.createClass({
|
|
|
initialValue: theData.identifyName
|
|
|
})(<Input placeholder="输入姓名" maxLength={128}/>)}
|
|
|
</FormItem>
|
|
|
+ <FormItem className="half-item" {...formItemLayout} label="手机号码">
|
|
|
+ <span>{theData.mobile}</span>
|
|
|
+ </FormItem>
|
|
|
<FormItem className="half-item" {...formItemLayout} label="行业">
|
|
|
{getFieldDecorator('industry', {
|
|
|
rules: [ { required: true, message: '此项为必填项!' } ],
|
|
@@ -441,12 +444,12 @@ const Expert = React.createClass({
|
|
|
initialValue: theData.postalAddress
|
|
|
})(<Input placeholder="输入通信地址" maxLength={255}/>)}
|
|
|
</FormItem>
|
|
|
- <FormItem className="half-item" {...formItemLayout} label="手机号码">
|
|
|
+ {/* <FormItem className="half-item" {...formItemLayout} label="手机号码">
|
|
|
{getFieldDecorator('mobile', {
|
|
|
rules: [ { required: true, message: '此项为必填项!' } ],
|
|
|
initialValue: theData.mobile
|
|
|
})(<Input placeholder="输入手机号码" maxLength={16}/>)}
|
|
|
- </FormItem>
|
|
|
+ </FormItem> */}
|
|
|
<FormItem className="half-item" {...formItemLayout} label="固定电话">
|
|
|
{getFieldDecorator('fixedTel', {
|
|
|
initialValue: theData.fixedTel
|