|
@@ -7,7 +7,6 @@ import { maturityList, innovationList, transferModeList } from '../../dataDic';
|
|
import { IndustryObject, getIndustryCategory } from '../../DicIndustryList.js';
|
|
import { IndustryObject, getIndustryCategory } from '../../DicIndustryList.js';
|
|
import { beforeUploadFile, splitUrl, companySearch, getTransferMode, getAchievementCategory, getTechAuditStatus, getDemandType, getMaturity, getInnovation } from '../../tools.js';
|
|
import { beforeUploadFile, splitUrl, companySearch, getTransferMode, getAchievementCategory, getTechAuditStatus, getDemandType, getMaturity, getInnovation } from '../../tools.js';
|
|
import throttle from '../../throttle.js';
|
|
import throttle from '../../throttle.js';
|
|
-
|
|
|
|
const KeyWordTagGroup = React.createClass({
|
|
const KeyWordTagGroup = React.createClass({
|
|
getInitialState() {
|
|
getInitialState() {
|
|
return {
|
|
return {
|
|
@@ -398,6 +397,18 @@ const AchievementDetailShow = Form.create()(React.createClass({
|
|
}
|
|
}
|
|
})()}
|
|
})()}
|
|
</FormItem>
|
|
</FormItem>
|
|
|
|
+ <FormItem className="half-item"
|
|
|
|
+ {...formItemLayout}
|
|
|
|
+ label="精品成果" >
|
|
|
|
+ {(() => {
|
|
|
|
+ switch (theData.boutique) {
|
|
|
|
+ case "0":
|
|
|
|
+ return <span>否</span>;
|
|
|
|
+ case "1":
|
|
|
|
+ return <span>是</span>;
|
|
|
|
+ }
|
|
|
|
+ })()}
|
|
|
|
+ </FormItem>
|
|
</div>
|
|
</div>
|
|
<div className="clearfix">
|
|
<div className="clearfix">
|
|
<FormItem className="half-item"
|
|
<FormItem className="half-item"
|
|
@@ -973,6 +984,7 @@ const AchievementDetailForm = Form.create()(React.createClass({
|
|
businessPlanUrl: this.state.businessPlanUrl,
|
|
businessPlanUrl: this.state.businessPlanUrl,
|
|
auditStatus: this.state.auditStatus,
|
|
auditStatus: this.state.auditStatus,
|
|
jmrhFlag: values.jmrhFlag,
|
|
jmrhFlag: values.jmrhFlag,
|
|
|
|
+ boutique: values.boutique,
|
|
}
|
|
}
|
|
}).done(function (data) {
|
|
}).done(function (data) {
|
|
this.state.auditStatus = 0;
|
|
this.state.auditStatus = 0;
|
|
@@ -1076,6 +1088,22 @@ const AchievementDetailForm = Form.create()(React.createClass({
|
|
</Radio.Group>
|
|
</Radio.Group>
|
|
)}
|
|
)}
|
|
</FormItem>
|
|
</FormItem>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <FormItem className="half-item"
|
|
|
|
+ {...formItemLayout}
|
|
|
|
+ label="精品成果" >
|
|
|
|
+ {getFieldDecorator('boutique', {
|
|
|
|
+ initialValue: theData.boutique
|
|
|
|
+ })(
|
|
|
|
+ <Radio.Group>
|
|
|
|
+ <Radio value="0">否</Radio>
|
|
|
|
+ <Radio value="1">是</Radio>
|
|
|
|
+ </Radio.Group>
|
|
|
|
+ )}
|
|
|
|
+ </FormItem>
|
|
|
|
+
|
|
|
|
+
|
|
<div className="clearfix">
|
|
<div className="clearfix">
|
|
<FormItem className="half-item"
|
|
<FormItem className="half-item"
|
|
{...formItemLayout}
|
|
{...formItemLayout}
|