|
@@ -529,6 +529,7 @@ const BusinessProject = Form.create()(React.createClass({
|
|
type: this.state.typeStatus,//项目分类
|
|
type: this.state.typeStatus,//项目分类
|
|
restrictStatus: this.state.restrictStatus, // 是否限定项目
|
|
restrictStatus: this.state.restrictStatus, // 是否限定项目
|
|
country: isCountry,//是否全国
|
|
country: isCountry,//是否全国
|
|
|
|
+ lvlType: this.state.lvlType,//国家级
|
|
province: pro ? pro : '',//省
|
|
province: pro ? pro : '',//省
|
|
city: city ? city : '',//市
|
|
city: city ? city : '',//市
|
|
district: dis ? dis : '',//区
|
|
district: dis ? dis : '',//区
|
|
@@ -632,6 +633,7 @@ const BusinessProject = Form.create()(React.createClass({
|
|
editCid: thisdata.cid,//项目分类
|
|
editCid: thisdata.cid,//项目分类
|
|
restrictStatus: thisdata.restrictStatus,//是否限定项目
|
|
restrictStatus: thisdata.restrictStatus,//是否限定项目
|
|
editCountry: thisdata.country,//是否全国
|
|
editCountry: thisdata.country,//是否全国
|
|
|
|
+ lvlType: thisdata.lvlType,//国家级
|
|
editProvince: thisdata.province,//省
|
|
editProvince: thisdata.province,//省
|
|
editCity: thisdata.city,//市
|
|
editCity: thisdata.city,//市
|
|
editDistrict: thisdata.district,//区
|
|
editDistrict: thisdata.district,//区
|
|
@@ -684,6 +686,7 @@ const BusinessProject = Form.create()(React.createClass({
|
|
restrictStatus: thisdata.restrictStatus,//是否限定项目
|
|
restrictStatus: thisdata.restrictStatus,//是否限定项目
|
|
editCid: thisdata.cid,
|
|
editCid: thisdata.cid,
|
|
editCountry: thisdata.country, //是否全国
|
|
editCountry: thisdata.country, //是否全国
|
|
|
|
+ lvlType: thisdata.lvlType,//国家级
|
|
editProvince: thisdata.province, //省
|
|
editProvince: thisdata.province, //省
|
|
editCity: thisdata.city, //市
|
|
editCity: thisdata.city, //市
|
|
editDistrict: thisdata.district, //区
|
|
editDistrict: thisdata.district, //区
|
|
@@ -1997,6 +2000,34 @@ const BusinessProject = Form.create()(React.createClass({
|
|
className="half-item"
|
|
className="half-item"
|
|
labelCol={{ span: 4 }}
|
|
labelCol={{ span: 4 }}
|
|
wrapperCol={{ span: 12 }}
|
|
wrapperCol={{ span: 12 }}
|
|
|
|
+ label="国家级"
|
|
|
|
+ >
|
|
|
|
+ <Select
|
|
|
|
+ placeholder="请选择"
|
|
|
|
+ value={this.state.lvlType}
|
|
|
|
+ onChange={(e) => {
|
|
|
|
+ this.setState({ lvlType: e });
|
|
|
|
+ }}
|
|
|
|
+ notFoundContent="请选择国家级"
|
|
|
|
+ style={{ width: "94%" }}
|
|
|
|
+ required="required"
|
|
|
|
+ >
|
|
|
|
+ <Select.Option value={0}>否</Select.Option>
|
|
|
|
+ <Select.Option value={1}>国家级</Select.Option>
|
|
|
|
+ <Select.Option value={2}>省级</Select.Option>
|
|
|
|
+ <Select.Option value={3}>市级</Select.Option>
|
|
|
|
+ </Select>
|
|
|
|
+ <span
|
|
|
|
+ className="mandatory"
|
|
|
|
+ style={{ color: "red", marginLeft: "5px" }}
|
|
|
|
+ >
|
|
|
|
+ *
|
|
|
|
+ </span>
|
|
|
|
+ </FormItem>
|
|
|
|
+ <FormItem
|
|
|
|
+ className="half-item"
|
|
|
|
+ labelCol={{ span: 4 }}
|
|
|
|
+ wrapperCol={{ span: 12 }}
|
|
label="省"
|
|
label="省"
|
|
>
|
|
>
|
|
<Cascader
|
|
<Cascader
|