|
@@ -9,10 +9,13 @@ import {
|
|
|
Modal,
|
|
Modal,
|
|
|
Input,
|
|
Input,
|
|
|
InputNumber,
|
|
InputNumber,
|
|
|
|
|
+ Radio,
|
|
|
} from "antd";
|
|
} from "antd";
|
|
|
import $ from "jquery/src/ajax";
|
|
import $ from "jquery/src/ajax";
|
|
|
import EnterpriseNameChange from '../../../../../../../component/common/enterpriseNameChange';
|
|
import EnterpriseNameChange from '../../../../../../../component/common/enterpriseNameChange';
|
|
|
import AddContact from "../../../signCustomer/followDetail/addContact";
|
|
import AddContact from "../../../signCustomer/followDetail/addContact";
|
|
|
|
|
+const RadioGroup = Radio.Group;
|
|
|
|
|
+
|
|
|
|
|
|
|
|
const { TextArea } = Input;
|
|
const { TextArea } = Input;
|
|
|
const ContactPerson = React.createClass({
|
|
const ContactPerson = React.createClass({
|
|
@@ -452,6 +455,7 @@ const ContactPerson = React.createClass({
|
|
|
utilityModelCount: detail.utilityModelCount,
|
|
utilityModelCount: detail.utilityModelCount,
|
|
|
appearancePatentCount: detail.appearancePatentCount,
|
|
appearancePatentCount: detail.appearancePatentCount,
|
|
|
softwareWorksCount: detail.softwareWorksCount,
|
|
softwareWorksCount: detail.softwareWorksCount,
|
|
|
|
|
+ standard: detail.standard,
|
|
|
otherCount: detail.otherCount,
|
|
otherCount: detail.otherCount,
|
|
|
}
|
|
}
|
|
|
})
|
|
})
|
|
@@ -467,6 +471,7 @@ const ContactPerson = React.createClass({
|
|
|
实用新型 {detail.utilityModelCount || 0}
|
|
实用新型 {detail.utilityModelCount || 0}
|
|
|
外观专利 {detail.appearancePatentCount || 0}
|
|
外观专利 {detail.appearancePatentCount || 0}
|
|
|
软著 {detail.softwareWorksCount || 0}
|
|
软著 {detail.softwareWorksCount || 0}
|
|
|
|
|
+ 标准 {detail.standard == 1 ? '有' : '无'}
|
|
|
其他 {detail.otherCount || 0}
|
|
其他 {detail.otherCount || 0}
|
|
|
</div>
|
|
</div>
|
|
|
<div style={{ fontWeight: "bold", marginTop: 10 }}>
|
|
<div style={{ fontWeight: "bold", marginTop: 10 }}>
|
|
@@ -626,6 +631,22 @@ const ContactPerson = React.createClass({
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
<div className='enterpriseNameItem'>
|
|
<div className='enterpriseNameItem'>
|
|
|
|
|
+ <div className='enterpriseNameTitle'>标准:</div>
|
|
|
|
|
+ <div className='enterpriseNameValue'>
|
|
|
|
|
+ <RadioGroup onChange={e => {
|
|
|
|
|
+ console.log(e)
|
|
|
|
|
+ this.setState({
|
|
|
|
|
+ upData: Object.assign(upData, {
|
|
|
|
|
+ standard: e.target.value,
|
|
|
|
|
+ }),
|
|
|
|
|
+ })
|
|
|
|
|
+ }} value={upData.standard}>
|
|
|
|
|
+ <Radio value={1}>有</Radio>
|
|
|
|
|
+ <Radio value={0}>无</Radio>
|
|
|
|
|
+ </RadioGroup>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div className='enterpriseNameItem'>
|
|
|
<div className='enterpriseNameTitle'>其他:</div>
|
|
<div className='enterpriseNameTitle'>其他:</div>
|
|
|
<div className='enterpriseNameValue'>
|
|
<div className='enterpriseNameValue'>
|
|
|
<InputNumber
|
|
<InputNumber
|