yee 7 years ago
parent
commit
7b37300695

+ 2 - 2
js/component/manageCenter/demand/techDemandDesc.jsx

@@ -1097,7 +1097,7 @@ const DemandDetailForm = Form.create()(React.createClass({
                             {...formItemLayout}
                             label="固定人数" >
                             {getFieldDecorator('peopleNumber', {
-                                initialValue: theData.peopleNumber
+                                initialValue: theData.peopleNumber || 0
                             })(
                                 <InputNumber />
                                 )}
@@ -1119,7 +1119,7 @@ const DemandDetailForm = Form.create()(React.createClass({
                             {...formItemLayout}
                             label="预算费用" >
                             {getFieldDecorator('budgetCost', {
-                                initialValue: theData.budgetCost
+                                initialValue: theData.budgetCost || 0
                             })(
                                 <InputNumber min={0} max={999999} step={0.01} />
                                 )}

+ 1 - 1
js/component/manageCenter/servicesManage/highTech/highTechApply.jsx

@@ -1214,7 +1214,7 @@ const Cognizance = React.createClass({
                 </div>
                 <div className="foster-query">
                     <Cascader placeholder="选择省份"
-                        style={{ width: 100, marginTop: "-4px" }}
+                        style={{ width: 100, marginTop: "-4px", marginRight: '20px' }}
                         value={this.state.province}
                         options={provinceSelect()}
                         showSearch

+ 1 - 1
js/component/manageCenter/servicesManage/highTech/highTechFoster.jsx

@@ -215,7 +215,7 @@ const Patent = React.createClass({
                         </div>
                         <div className="foster-query">
                             <Cascader placeholder="选择省份"
-                                style={{ width: 100, marginTop: "-4px" }}
+                                style={{ width: 100, marginTop: "-4px", marginRight: '20px' }}
                                 value={this.state.province}
                                 options={provinceSelect()}
                                 showSearch

+ 1 - 1
js/component/tools.js

@@ -321,7 +321,7 @@ module.exports = {
                 });
                 if ( thebool ) {
                     i++
-                } else {continue};
+                };
             };
             return now;
         };