liting2017 6 éve%!(EXTRA string=óta)
szülő
commit
36f7be51dd

+ 4 - 4
js/component/account/setAccount/expert.jsx

@@ -136,7 +136,7 @@ const Expert = React.createClass({
 					authenticationState:authenticationState,
 					type:thisData.type,          //0-个人认证  1-企业认证 
 					expert:thisData.expert,   //认证类型   0-未认证专家顾问  1-专家认证 2-顾问认证
- 					authMessage:thisData.authMessage||'消息不真实',
+ 					authMessage:thisData.auditInfo,
 					auditStatus:thisData.auditStatus||'0', //认证状态  0-未认证  1-认证审核中   2-已认证 3-认证失败
 					headPortraitUrl: thisData.headPortraitUrl //专家照片
 						? splitUrl(thisData.headPortraitUrl, ',', globalConfig.avatarHost + '/upload')
@@ -481,7 +481,7 @@ const Expert = React.createClass({
 								})(<Input type="textarea" rows={4} maxLength={512} placeholder="输入个人简介"/>)}
 							</FormItem>
 						</div>
-						{(this.state.expert=='0'||this.state.expert=='3'||this.state.expert==null)&&this.state.type!=null?
+						{(this.state.expert=='0'||this.state.auditStatus=='3'||this.state.expert==null)&&this.state.type!=null?
 						<div>
 							<div className="clearfix btnGrounp">
 								<Radio.Group 
@@ -493,7 +493,7 @@ const Expert = React.createClass({
 									<Radio.Button value="1">顾问认证</Radio.Button>
 								</Radio.Group>	
 								<Button type="dashed" style={{marginLeft:20}} onClick={(e)=>{this.setState({authenticationState:undefined})}}>暂不认证</Button>
-								<span style={{marginLeft:10,color:'#f00'}}>{this.state.authState=='2'?"(认证失败:"+this.state.authMessage+')':''}</span>
+								<span style={{marginLeft:10,color:'#f00'}}>{this.state.auditStatus=='3'?"(认证失败:"+this.state.authMessage+')':''}</span>
 							</div>
 							{this.state.authenticationState=='0'?<div className="patentBody">
 								<FormItem className="half-item" {...formItemLayout} label="毕业院校">
@@ -531,7 +531,7 @@ const Expert = React.createClass({
 								<FormItem className="half-item" {...formItemLayout} label="顾问类型">
 								{getFieldDecorator('adviserType', {
 									rules: [ { required: true, message: '此项为必填项!' } ],
-									initialValue: theData.adviserType
+									initialValue: theData.consultantType=='0'?theData.consultantType.toString():undefined
 								})(
 									<Select placeholder="选择类型">
 										{adviserType.map(function(item) {

+ 1 - 2
js/component/administration/authentication/authDesc.jsx

@@ -25,7 +25,6 @@ class DemandDesc extends React.Component {
 	}
 	componentWillReceiveProps(nextProps) {
 		this.state.visible = nextProps.showDesc;
-
 	}
 	render() {
 		return (
@@ -36,7 +35,7 @@ class DemandDesc extends React.Component {
 					onOk={this.handOk.bind(this)}
 					onCancel={this.handleCancel.bind(this)}
 					width="1000px"
-					title='专家顾问详情'
+					title={this.props.data&&this.props.data.expert=='1'?'专家详情':'顾问详情'}
 					footer=""
 					className="admin-desc-content"
 				>

+ 13 - 13
js/component/administration/authentication/authDetaiel.jsx

@@ -10,7 +10,7 @@ import {
 	Form
 } from 'antd';
 
-import { getAdviserType,getIndustry,getSocialAttribute } from '@/tools.js';
+import { getAdviserType,getIndustry,getSocialAttribute,splitUrl } from '@/tools.js';
 import { getProvince } from '@/NewDicProvinceList';
 const AuthDetail = Form.create()(React.createClass({
     getInitialState() {
@@ -32,9 +32,9 @@ const AuthDetail = Form.create()(React.createClass({
             method: "get",
             dataType: "json",
             crossDomain: false,
-            url: globalConfig.context +  '/api/user/demand/demandDetail' ,
+            url: globalConfig.context +  '/api/admin/getUserIdentityByUid' ,
             data: {
-                id: id
+                uid: id
             },
             success: function (data) {
                 let thisData = data.data;
@@ -77,15 +77,15 @@ const AuthDetail = Form.create()(React.createClass({
     updateFun(index){
         this.setState({
             loading:true
-        })
+        });
         $.ajax({
-            method: "get",
+            method: "post",
             dataType: "JSON",
             crossDomain: false,
-            url: globalConfig.context +  '/api/admin/demand/auditDemand',
+            url: globalConfig.context +  '/api/admin/auditing',
             data: {
                 id: this.state.id,
-                auditResult:index,
+                auditStatus:index,
                 auditInfo:this.state.refuseValue
             }
         }).done(function (data) {
@@ -115,7 +115,7 @@ const AuthDetail = Form.create()(React.createClass({
         this.setState({
             refuseVisible:false
         })
-        this.updateFun(0)
+        this.updateFun(3)
     },
     refuseCancel(){
         this.setState({
@@ -133,7 +133,7 @@ const AuthDetail = Form.create()(React.createClass({
     componentWillReceiveProps(nextProps) {
         if (!this.props.visible && nextProps.visible) {
             if (nextProps.data.id) {
-                this.loadData(nextProps.data.id);
+                this.loadData(nextProps.data.uid);
             } else {
 				this.state.data = {};
             };
@@ -177,7 +177,7 @@ const AuthDetail = Form.create()(React.createClass({
                             <span>{theData.postalAddress}</span>
                         </FormItem>
                         <FormItem className="half-item" {...formItemLayout} label="手机号码">
-                            <span>{theData.mobile}</span>
+                            <span>{theData.contactMobile}</span>
                         </FormItem>
                         <FormItem className="half-item" {...formItemLayout} label="固定电话">
                             <span>{theData.fixedTel}</span>
@@ -197,8 +197,8 @@ const AuthDetail = Form.create()(React.createClass({
                             <span>{theData.introduction}</span>
                         </FormItem>     
                     </div>
-                    <p style={{fontSize:16}}>{theData.expert=='0'?'专家认证':'顾问认证'}</p>
-                    {theData.expert=='0'?<div>
+                    <p style={{fontSize:16}}>{theData.expert=='1'?'专家认证':'顾问认证'}</p>
+                    {theData.expert=='1'?<div>
                         <FormItem className="half-item" {...formItemLayout} label="毕业院校">
                             <span>{theData.graduateSchool}</span>
                         </FormItem>
@@ -299,7 +299,7 @@ const AuthDetail = Form.create()(React.createClass({
                     </div>
 					<div className="clearfix">
 						{this.props.examineState&&<FormItem wrapperCol={{ span: 12, offset: 3 }}>
-							<Button className="set-submit" type="primary"  onClick={(e)=>{this.updateFun(1)}} >
+							<Button className="set-submit" type="primary"  onClick={(e)=>{this.updateFun(2)}} >
 								审核通过
 							</Button>
 							<Button type="danger" style={{marginRight:20}} onClick={(e)=>{this.refuse()}}>

+ 3 - 7
js/component/administration/authentication/authExamine.jsx

@@ -18,7 +18,7 @@ const DemandList = React.createClass({
             method: "get",
             dataType: "json",
             crossDomain: false,
-            url: globalConfig.context + "/api/user/getExpertAuditList",
+            url: globalConfig.context + "/api/admin/getExpertAuditList",
             data: {
                 pageNo: pageNo || 1,
                 pageSize: this.state.pagination.pageSize,
@@ -87,10 +87,6 @@ const DemandList = React.createClass({
             },
             columns: [
                 {
-                    title: '编号',
-                    dataIndex: 'serialNumber',
-                    key: 'serialNumber',
-                }, {
                     title: '姓名',
                     dataIndex: 'identifyName',
                     key: 'identifyName',
@@ -201,8 +197,8 @@ const DemandList = React.createClass({
                     <Select placeholder="认证类型" style={{ width: 160 }}
                         value={this.state.statusSearch}
                         onChange={(e) => { this.setState({ statusSearch: e }) }}>
-                        <Select.Option value="0" >专家认证</Select.Option>
-                        <Select.Option value="1" >顾问认证</Select.Option>
+                        <Select.Option value="1" >专家认证</Select.Option>
+                        <Select.Option value="2" >顾问认证</Select.Option>
                     </Select>
                     <Button type="primary" onClick={this.search}>搜索</Button>
                     <Button onClick={this.reset}>重置</Button>

+ 4 - 13
js/component/administration/authentication/techAuth.jsx

@@ -18,7 +18,7 @@ const DemandList = React.createClass({
             method: "get",
             dataType: "json",
             crossDomain: false,
-            url: globalConfig.context + "/api/user/getExpertAuditList",
+            url: globalConfig.context + "/api/admin/getExpertAuditList",
             data: {
                 pageNo: pageNo || 1,
                 pageSize: this.state.pagination.pageSize,
@@ -88,11 +88,7 @@ const DemandList = React.createClass({
                 }
             },
             columns: [
-                {
-                    title: '编号',
-                    dataIndex: 'serialNumber',
-                    key: 'serialNumber',
-                }, {
+               {
                     title: '姓名',
                     dataIndex: 'identifyName',
                     key: 'identifyName',
@@ -117,11 +113,6 @@ const DemandList = React.createClass({
                     key: 'expert',
                     render: text => { return text=='1'?'专家认证':text=='2'?'顾问认证':'未认证' }
                 },
-                // {
-                //     title:'认证成功时间',
-                //     dataIndex:'releaseDate',
-                //     key:'releaseDate',
-                // },
                 {
                     title:'认证状态',
                     dataIndex:'auditStatus',
@@ -210,8 +201,8 @@ const DemandList = React.createClass({
                     <Select placeholder="认证类型" style={{ width: 160 }}
                         value={this.state.statusSearch}
                         onChange={(e) => { this.setState({ statusSearch: e }) }}>
-                        <Select.Option value="0" >专家认证</Select.Option>
-                        <Select.Option value="1" >顾问认证</Select.Option>
+                        <Select.Option value="1" >专家认证</Select.Option>
+                        <Select.Option value="2" >顾问认证</Select.Option>
                     </Select>
                     <Select placeholder="认证状态" style={{ width: 160 }}
                         value={this.state.authState}

+ 61 - 9
js/component/administration/business/businessCategory.jsx

@@ -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>
         );

+ 1 - 1
webpack-dll.config.js

@@ -10,7 +10,7 @@ let theme = {
   '@link-color': '#58a3ff'
 };
 module.exports = (function () {
-	let staticHost = 'http://192.168.1.124:80';    
+	let staticHost = 'http://192.168.0.188';    
     switch (argv.env.deploy) {
         case 'test':
             staticHost = 'http://statics.jishutao.com';

+ 3 - 5
webpack.config.js

@@ -115,7 +115,7 @@ module.exports = (function () {
         }));
     }
 
-    let staticHost = 'http://192.168.1.124:80';    
+    let staticHost = 'http://192.168.0.188';    
     switch (argv.env.deploy) {
         case 'test':
             staticHost = 'http://statics.jishutao.com';
@@ -145,16 +145,14 @@ module.exports = (function () {
                 '@css':__dirname+'css',
                 'js':__dirname+'js'
             },
-        		
             extensions: ['.js', '.jsx']
-           
         },
         plugins: plugins,
         devServer: {
             disableHostCheck: true,
-            host: '192.168.1.124',
+            host: '192.168.0.188',
             port: 80,
-            allowedHosts: ['127.0.0.1','192.168.1.123','192.168.1.128','192.168.1.127'],
+            allowedHosts: ['127.0.0.1','192.168.0.185'],
             headers: {
                 "Access-Control-Allow-Origin": "*"
             }

+ 6 - 6
webpack/entry.config.js

@@ -10,28 +10,28 @@ module.exports = {
     'admin/index': './js/admin/index.js',
   },
   watch: {
-    'user/index': ['webpack-dev-server/client?http://192.168.1.124:80', // WebpackDevServer host and port
+    'user/index': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
       'webpack/hot/only-dev-server',
       './js/user/index.js'
     ],
-    'user/login': ['webpack-dev-server/client?http://192.168.1.124:80', // WebpackDevServer host and port
+    'user/login': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
       'webpack/hot/only-dev-server',
       './js/user/login.js'
     ],
-    'user/signIn': ['webpack-dev-server/client?http://192.168.1.124:80', // WebpackDevServer host and port
+    'user/signIn': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
       'webpack/hot/only-dev-server',
       './js/user/signIn.js'
     ],
-    'user/account/index': ['webpack-dev-server/client?http://192.168.1.124:80', // WebpackDevServer host and port
+    'user/account/index': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
       'webpack/hot/only-dev-server',
       './js/user/account/index.js'
     ],
     //admin
-    'admin/login': ['webpack-dev-server/client?http://192.168.1.124:80', // WebpackDevServer host and port
+    'admin/login': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
     'webpack/hot/only-dev-server',
     './js/user/adminLogin.js'
     ],
-    'admin/index': ['webpack-dev-server/client?http://192.168.1.124:80', // WebpackDevServer host and port
+    'admin/index': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
       'webpack/hot/only-dev-server',
       './js/admin/index.js'
     ]