|
@@ -94,7 +94,7 @@ const BusinessCategory=Form.create()(React.createClass({
|
|
|
layer:thisdata.layer,
|
|
|
superId:thisdata.superId,
|
|
|
layerName: thisdata.layerName,//品类层级
|
|
|
- superName: thisdata.superName,//上级品类
|
|
|
+ superNameId: thisdata.superId,//上级品类
|
|
|
});
|
|
|
};
|
|
|
this.state.pagination.current = data.data.pageNo;
|
|
@@ -111,6 +111,44 @@ const BusinessCategory=Form.create()(React.createClass({
|
|
|
});
|
|
|
}.bind(this));
|
|
|
},
|
|
|
+ loadMenu() {
|
|
|
+ this.state.data = [];
|
|
|
+ $.ajax({
|
|
|
+ method: "get",
|
|
|
+ dataType: "json",
|
|
|
+ crossDomain: false,
|
|
|
+ url: globalConfig.context + '/api/admin/jtBusiness/category/list',
|
|
|
+ data: {
|
|
|
+ pageNo: 1,
|
|
|
+ pageSize:9999,
|
|
|
+ layer:1,//组织层级
|
|
|
+ },
|
|
|
+ success: function (data) {
|
|
|
+ let theArr = [];
|
|
|
+ if (!data.data || !data.data.list) {
|
|
|
+ if (data.error && data.error.length) {
|
|
|
+ message.warning(data.error[0].message);
|
|
|
+ };
|
|
|
+ } else {
|
|
|
+ for (let i = 0; i < data.data.list.length; i++) {
|
|
|
+ let thisdata = data.data.list[i];
|
|
|
+ theArr.push({
|
|
|
+ key: i,
|
|
|
+ id: thisdata.id,//品类ID
|
|
|
+ name: thisdata.name,//品类名称
|
|
|
+ });
|
|
|
+ };
|
|
|
+ };
|
|
|
+ this.setState({
|
|
|
+ dataMenu: theArr,
|
|
|
+ });
|
|
|
+ }.bind(this),
|
|
|
+ }).always(function () {
|
|
|
+ this.setState({
|
|
|
+ loading: false
|
|
|
+ });
|
|
|
+ }.bind(this));
|
|
|
+ },
|
|
|
getInitialState() {
|
|
|
return {
|
|
|
searchMore: true,
|
|
@@ -172,6 +210,7 @@ const BusinessCategory=Form.create()(React.createClass({
|
|
|
},
|
|
|
componentWillMount() {
|
|
|
this.loadData();
|
|
|
+ this.loadMenu();
|
|
|
},
|
|
|
//新建下级
|
|
|
nextAdd(recard){
|
|
@@ -206,7 +245,9 @@ const BusinessCategory=Form.create()(React.createClass({
|
|
|
id: this.state.id,
|
|
|
name:this.state.name,
|
|
|
summary:this.state.summary,
|
|
|
- imgUrl:thePictureUrl
|
|
|
+ imgUrl:thePictureUrl,
|
|
|
+ module:this.state.modules,
|
|
|
+ superId:this.state.superNameId
|
|
|
}
|
|
|
}).done(function (data) {
|
|
|
if (!data.error.length) {
|
|
@@ -313,7 +354,6 @@ const BusinessCategory=Form.create()(React.createClass({
|
|
|
id:recard.id
|
|
|
},
|
|
|
success: function (data) {
|
|
|
-
|
|
|
if (!data.data) {
|
|
|
if (data.error && data.error.length) {
|
|
|
message.warning(data.error[0].message);
|
|
@@ -325,7 +365,9 @@ const BusinessCategory=Form.create()(React.createClass({
|
|
|
name:thisdata.name,//品类名称
|
|
|
createTime:thisdata.createTime?(new Date(thisdata.createTime)).toLocaleString():'',
|
|
|
superId:thisdata.superId,//父类id
|
|
|
+ modules:thisdata.module?thisdata.module.toString():undefined,
|
|
|
pictureUrl: thisdata.imgUrl ? splitUrl(thisdata.imgUrl, ',', globalConfig.avatarHost + '/upload') : [],
|
|
|
+ superNameId:thisdata.superId
|
|
|
})
|
|
|
};
|
|
|
}.bind(this),
|
|
@@ -379,6 +421,7 @@ const BusinessCategory=Form.create()(React.createClass({
|
|
|
const hasSelected = this.state.selectedRowKeys.length > 0;
|
|
|
const theData =this.state.theData ||{};
|
|
|
const recrdAdd = this.state.recrdAdd ||{};
|
|
|
+ const dataMenu =this.state.dataMenu || {};
|
|
|
return (
|
|
|
<div className="user-content" >
|
|
|
<div className="content-title">
|
|
@@ -421,7 +464,7 @@ const BusinessCategory=Form.create()(React.createClass({
|
|
|
</Spin>
|
|
|
</div>
|
|
|
|
|
|
- <div className="patent-desc">
|
|
|
+ <div className="patent-desc">
|
|
|
<Modal maskClosable={false} visible={this.state.visible}
|
|
|
onOk={this.checkPatentProcess} onCancel={this.handleCancel}
|
|
|
width='420px'
|
|
@@ -488,15 +531,21 @@ const BusinessCategory=Form.create()(React.createClass({
|
|
|
onChange={(e)=>{this.setState({name:e.target.value})}}/>
|
|
|
</FormItem>
|
|
|
</div>
|
|
|
- <div className="clearfix">
|
|
|
+ {theData.layer=='2'?<div className="clearfix">
|
|
|
<FormItem
|
|
|
labelCol={{ span: 7 }}
|
|
|
wrapperCol={{ span: 12 }}
|
|
|
label="上级品类"
|
|
|
>
|
|
|
- <span>{theData.superName?theData.superName:'超级品类'}</span>
|
|
|
+ <Select onChange={(e)=>{this.setState({superNameId:e})}} value={this.state.superNameId}>
|
|
|
+ {
|
|
|
+ dataMenu.map(item=>{
|
|
|
+ return <Select.Option key={item.key} value={item.id}>{item.name}</Select.Option>
|
|
|
+ })
|
|
|
+ }
|
|
|
+ </Select>
|
|
|
</FormItem>
|
|
|
- </div>
|
|
|
+ </div>:''}
|
|
|
<div className="clearfix">
|
|
|
<FormItem
|
|
|
labelCol={{ span: 7 }}
|
|
@@ -531,7 +580,11 @@ const BusinessCategory=Form.create()(React.createClass({
|
|
|
labelCol={{ span: 7 }}
|
|
|
wrapperCol={{ span: 12 }}
|
|
|
label="所属模块" >
|
|
|
- <span>{getTypeModule(theData.module)}</span>
|
|
|
+ {theData.layer=='1'?<Select value ={this.state.modules} onChange={(e)=>{this.setState({modules:e})}} style={{width:160}}>
|
|
|
+ {typeModule.map(item=>{
|
|
|
+ return <Select.Option key={item.value} value={item.value}>{item.key}</Select.Option>
|
|
|
+ })}
|
|
|
+ </Select>:<span>{getTypeModule(this.state.modules)}</span>}
|
|
|
</FormItem>
|
|
|
<div className="clearfix">
|
|
|
<FormItem
|
|
@@ -568,7 +621,6 @@ const BusinessCategory=Form.create()(React.createClass({
|
|
|
</Form >
|
|
|
</Modal>
|
|
|
</div>
|
|
|
-
|
|
|
</div>
|
|
|
</div>
|
|
|
);
|