liting2017 6 years ago
parent
commit
ec640e5e7d

+ 4 - 2
js/admin/index/content.jsx

@@ -1,6 +1,7 @@
 //管理员登录区域代码
-import DemandLibrary from '@/adminDemand/techDemand';
-import DemandExamine from '@/adminDemand/demandExamine';
+import DemandLibrary from '@/administration/demand/techDemand';
+import DemandExamine from '@/administration/demand/demandExamine';
+import AdmianIndex from '@/administration/index/index';
 
 import {hashHistory,Route,Router,IndexRedirect} from 'react-router';
 import {Layout} from 'antd';
@@ -16,6 +17,7 @@ export default class ContentRouter extends React.Component {
         <Router history={hashHistory}>
             <Route path="/library" component={DemandLibrary} />
             <Route path="/examine" component={DemandExamine} />
+            <Route path="/index" component={AdmianIndex} />
         </Router>
       </Content>
     )

+ 6 - 6
js/admin/index/leftMenu.jsx

@@ -14,7 +14,7 @@ const LeftTab = React.createClass({
 	getInitialState() {
 		return {
 			openKeys: [ 'sub1' ],
-			current: 'library',
+			current: 'index',
 			switch: false,
 			rootSubmenuKeys :['sub1', 'sub2','sub3','sub4']
 		};
@@ -53,10 +53,10 @@ const LeftTab = React.createClass({
 			let current = window.location.hash.substr(2),
 				open=[];
 			if (!current.length) {
-				window.location.hash = 'library';
+				window.location.hash = 'index';
 				this.setState({
 					openKeys:['sub1'],
-					current:'library'
+					current:'index'
 				})
 			}else{
 				adminMenu.map(item=>{
@@ -75,10 +75,10 @@ const LeftTab = React.createClass({
 				});
 			}
 		}else{
-			window.location.hash = 'library';
+			window.location.hash = 'index';
 			this.setState({
 				openKeys:['sub1'],
-				current:'library'
+				current:'index'
 			})
 		}
 	},
@@ -89,7 +89,7 @@ const LeftTab = React.createClass({
 					{!this.state.switch && <img src={logo} alt="" />}
 					{!this.state.switch && (
 						<span>
-							<a href={globalConfig.context + '/user/account/index.html'}>个人中心管理</a>
+							<a href={globalConfig.context + "/admin/index.html"}>个人中心管理</a>
 						</span>
 					)}
 					<Icon type={this.state.switch ? 'forward' : 'backward'} className="icon" onClick={this.iconFun} />

+ 10 - 2
js/admin/menu.jsx

@@ -1,13 +1,21 @@
 module.exports = {
     adminMenu:[
       {
-        name: '技术需求管理',
+        name: '首页',
         url: 'sub1',
+        icon: 'usb',
+        children: [
+          { name: '消息中心', url: 'index' },
+        ]
+      },
+      {
+        name: '技术需求管理',
+        url: 'sub2',
         icon: 'bulb',
         children: [
           { name: '技术需求库', url: 'library' },
           { name: '需求发布审核', url: 'examine' },
         ]
-      },
+      }
     ]
 }

+ 21 - 17
js/admin/topTab.jsx

@@ -7,7 +7,7 @@ import $ from 'jquery/src/ajax';
 const TopTab = React.createClass({
     getInitialState() {
         return {
-            username: 'username',
+            username: '管理员',
         };
     },
     logOut() {
@@ -16,29 +16,33 @@ const TopTab = React.createClass({
             dataType: "json",
             url: globalConfig.context + "/login",
         }).done(function (data) {
-            window.location.href = globalConfig.context + "/portal/index.html"
+            window.location.href = globalConfig.context + "/admin/login.html"
         });
     },
     componentWillMount () {
-        this.getData();
+        this.loadData();
     },
-    getData () {
+    loadData() {
         this.setState({
-            loading: false
+            loading: true
         });
         $.ajax({
             method: "get",
             dataType: "json",
-            url: globalConfig.context + "/api/user/nickname"
-        }).done(function (data) {
-            if (data.error && data.error.length) {
-                message.warning(data.error[0].message);
-            } else {
+            crossDomain: false,
+            url: globalConfig.context + "/api/admin/notice/unreadCount",
+            success: function (data) {
+                if (!data.data) {
+                    if (data.error[0] && data.error[0]) {
+                        message.warning(data.error[0].message);
+                        return;
+                    };
+                };
                 this.setState({
-                    nickname: data.data,
-                })
-            }
-        }.bind(this)).always(function () {
+                    badge: data.data,
+                });
+            }.bind(this),
+        }).always(function (data) {
             this.setState({
                 loading: false
             });
@@ -48,9 +52,9 @@ const TopTab = React.createClass({
         return (
             <div className="account-top" >
                 <div className="acc-top-user">
-                    <span className="acc-top-user-name">欢迎您, {this.state.nickname || userData.nickname || userData.number } <a onClick={this.logOut}>[ 退出 ]</a></span>
-                    <span className="acc-top-user-toindex"><a href={globalConfig.context + "/portal/index.html"}>返回首页</a></span>
-                </div>
+                    <span className="acc-top-user-name">欢迎您, {this.state.username||adminData.name || adminData.mobile } <a onClick={this.logOut}>[ 退出 ]</a></span>
+                    <span className="acc-top-user-toindex"><a href={globalConfig.context + "/portal/index.html"}>返回首页</a></span>    
+                </div >
             </div >
         )
     }

+ 10 - 1
js/admin/topTab.less

@@ -15,14 +15,23 @@
             color:#ffffff;
             .acc-top-user-name {
                 margin-left: 10px;
+                a{
+                    color: #ffffff
+                }
                 a:hover{
-                    color:red;
+                    color:#58a3ff;
                 }
             }
            
             .acc-top-user-toindex {
                 float: right;
                 margin-right: 10px;
+                a{
+                    color:#ffffff;
+                }
+                a:hover{
+                    color:#58a3ff
+                }
             }
         }
         .acc-index {

+ 0 - 1
js/component/account/demand/demandDesc.jsx

@@ -26,7 +26,6 @@ class DemandDesc extends React.Component {
 	}
 	componentWillReceiveProps(nextProps) {
 		this.state.visible = nextProps.showDesc;
-
 	}
 	render() {
 		let data = this.props.data || {auditStatus:0};

+ 43 - 26
js/component/account/demand/demandDetaiel.jsx

@@ -63,16 +63,11 @@ const DemandDetail = Form.create()(React.createClass({
                 thisData.publishPages.map(item=>{
 					publishPagesArr.push(item.publishPage)
                 })
-				// let ProvinceCityArr = [];
-				// let ProvinceS = thisData.locationProvince; //getprovince
-				// let citys = thisData.locationCity;
-				// let Areas = thisData.locationArea;
-                // ProvinceCityArr.push(ProvinceS, citys, Areas);
                 this.setState({
-					//ProvinceCity:ProvinceCityArr,
                     id:thisData.id,
                     publishPagesArr:publishPagesArr,
-					data: thisData,
+                    data: thisData,
+                    auditStatus:thisData.auditStatus,
 					isHot:thisData.isHot,
 					isUrgent:thisData.isUrgent,
 					status:thisData.status,
@@ -95,30 +90,56 @@ const DemandDetail = Form.create()(React.createClass({
 	cancelFun(){
 		this.props.closeDesc();
     },
-    //刷新发布-撤销发布
-    updateFun(index){
+    //刷新发布
+    updateFun(inex){
         this.setState({
             loading:true
         })
-        let api = index?'/api/shuaxin':'/api/chexiao'
         $.ajax({
             method: "POST",
             dataType: "json",
             crossDomain: false,
-            url: globalConfig.context +  api,
+            url: globalConfig.context +'/api/user/demand/refreshPublish',
             data: {
-                ids: this.state.id
+                id: this.state.id,
+                auditStatus:this.state.auditStatus
             }
         }).done(function (data) {
             if (!data.error.length) {
-                message.success('删除成功!');
+                message.success('刷新成功!');
                 this.setState({
                     loading: false,
                 });
             } else {
                 message.warning(data.error[0].message);
             };
-            this.loadData();
+            this.props.handOk();
+        }.bind(this));
+    },
+    //撤销发布
+    revokeFun(){
+        this.setState({
+            loading:true
+        })
+        $.ajax({
+            method: "POST",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context +  '/api/user/demand/offShelf',
+            data: {
+                id: this.state.id,
+                auditStatus:this.state.auditStatus
+            }
+        }).done(function (data) {
+            if (!data.error.length) {
+                message.success('撤销成功!');
+                this.setState({
+                    loading: false,
+                });
+            } else {
+                message.warning(data.error[0].message);
+            };
+            this.props.handOk();
         }.bind(this));
     },
     componentWillMount() {
@@ -164,6 +185,11 @@ const DemandDetail = Form.create()(React.createClass({
                             <span>{theData.name}</span>
 						</FormItem>
 					</div>
+                    <div className="clearfix">
+                        <FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 18 }} label="关键字">
+                            <span>{theData.keyword}</span>
+                        </FormItem>
+                    </div>
 					<FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 18 }} label="行业领域">
                         <span>{getIndustryCategory(theData.industryCategoryA,theData.industryCategoryB)}</span>
                     </FormItem>
@@ -209,15 +235,6 @@ const DemandDetail = Form.create()(React.createClass({
                             </span>
 						</FormItem>
 					</div>
-					{/* <div className="clearfix">
-						<FormItem
-							className="half-item"
-							{...formItemLayout}
-							label="地区"
-						>
-							{this.state.ProvinceCity}
-						</FormItem>  
-					</div> */}
 					<FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 18 }} label="需求文件(图片)">
                         <div className="clearfix">
                                 <Upload className="demandDetailShow-upload"
@@ -254,11 +271,11 @@ const DemandDetail = Form.create()(React.createClass({
                             </FormItem>
 					</div>
 					<div className="clearfix">
-						{this.props.data.releaseStatus=='2'&&<FormItem wrapperCol={{ span: 12, offset: 3 }}>
-							<Button className="set-submit" type="primary"  onClick={(e)=>{this.updateFun(1)}} >
+						{this.props.data.auditStatus=='2'&&<FormItem wrapperCol={{ span: 12, offset: 3 }}>
+							<Button className="set-submit" type="primary"  onClick={(e)=>{this.updateFun()}} >
 								刷新发布
 							</Button>
-							<Button type="danger" style={{marginRight:20}} onClick={(e)=>{this.updateFun(0)}}>
+							<Button type="danger" style={{marginRight:20}} onClick={(e)=>{this.revokeFun()}}>
 								撤销发布
 							</Button>
 							<Button className="set-submit" type="ghost" onClick={this.cancelFun}>

+ 149 - 84
js/component/account/demand/demandForm.jsx

@@ -29,12 +29,85 @@ import { IndustryObject, getIndustryCategory } from '@/DicIndustryList.js';
 import {  splitUrl, companySearch, getDemandType, getAchievementCategory } from '@/tools.js';
 const FormItem =Form.Item
 
+const KeyWordTagGroup = React.createClass({
+    getInitialState() {
+        return {
+            tags: [],
+            inputVisible: false,
+            inputValue: ''
+        };
+    },
+    handleClose(removedTag) {
+        const tags = this.state.tags.filter(tag => tag !== removedTag);
+        this.props.tagsArr(tags);
+        this.setState({ tags });
+    },
+    showInput() {
+        this.setState({ inputVisible: true }, () => this.input.focus());
+    },
+    handleInputChange(e) {
+        this.setState({ inputValue: e.target.value });
+    },
+    handleInputConfirm() {
+        const state = this.state;
+        const inputValue = state.inputValue;
+        let tags = state.tags;
+        if (inputValue && tags.indexOf(inputValue) === -1 && inputValue.replace(/(^\s*)|(\s*$)/g, "").length != 0) {
+            tags = [...tags, inputValue.replace(/(^\s*)|(\s*$)/g, "")];
+        }
+        this.props.tagsArr(tags);
+        this.setState({
+            tags,
+            inputVisible: false,
+            inputValue: '',
+        });
+    },
+    componentWillMount() {
+        this.state.tags = this.props.keyWordArr;
+    },
+    componentWillReceiveProps(nextProps) {
+        if (this.props.keyWordArr != nextProps.keyWordArr) {
+            this.state.tags = nextProps.keyWordArr;
+        };
+    },
+    render() {
+        const { tags, inputVisible, inputValue } = this.state;
+        return (
+            <div className="keyWord-tips">
+                {tags.map((tag, index) => {
+                    const isLongTag = tag.length > 10;
+                    const tagElem = (
+                        <Tag key={tag} closable={index !== -1} afterClose={() => this.handleClose(tag)}>
+                            {isLongTag ? `${tag.slice(0, 10)}...` : tag}
+                        </Tag>
+                    );
+                    return isLongTag ? <Tooltip title={tag}>{tagElem}</Tooltip> : tagElem;
+                })}
+                {inputVisible && (
+                    <Input
+                        ref={input => this.input = input}
+                        type="text"
+                        style={{ width: 78 }}
+                        value={inputValue}
+                        onChange={this.handleInputChange}
+                        onBlur={this.handleInputConfirm}
+                        onPressEnter={this.handleInputConfirm}
+                    />
+                )}
+                {!inputVisible && <Button className="addtips" type="dashed" disabled={tags.length > 9 ? true : false} onClick={this.showInput}>+ 新关键词</Button>}
+            </div>
+        );
+    }
+});
+
+
 const PicturesWall = React.createClass({
 	getInitialState() {
 		return {
 			previewVisible: false,
 			previewImage: '',
-			fileList: []
+			fileList: [],
+			tags: []
 		};
 	},
 	handleCancel() {
@@ -66,7 +139,7 @@ const PicturesWall = React.createClass({
 			<div className="clearfix">
 				<Upload
 					action={globalConfig.context + '/api/user/demand/uploadPicture'}
-					data={{ sign: 'demand_picture', uid: this.props.uid }}
+					data={{ sign: 'demand_picture'}}
 					listType="picture-card"
 					fileList={fileList}
 					onPreview={this.handlePreview}
@@ -90,7 +163,8 @@ const DemandDetailForm = Form.create()(React.createClass({
             auditStatus: 0,
             textFileList: [],
             videoFileList: [],
-            pictureUrl: [],
+			pictureUrl: [],
+			tags:[]
         };
     },
     loadData(id) {
@@ -117,15 +191,11 @@ const DemandDetailForm = Form.create()(React.createClass({
 				thisData.publishPages.map(item=>{
 					publishPagesArr.push(item.publishPage)
 				})
-				// let ProvinceCityArr = [];
-				// let ProvinceS = thisData.locationProvince; //getprovince
-				// let citys = thisData.locationCity;
-				// let Areas = thisData.locationArea;
-				// ProvinceCityArr.push(ProvinceS, citys, Areas);
                 this.setState({
-					//ProvinceCity:ProvinceCityArr,
 					id:thisData.id,
+					tags: thisData.keyword ? thisData.keyword.split(",") : [],
 					data: thisData,
+					auditStatus:thisData.auditStatus,
 					publishPagesArr:publishPagesArr,
 					isHot:thisData.isHot,
 					isUrgent:thisData.isUrgent,
@@ -146,10 +216,9 @@ const DemandDetailForm = Form.create()(React.createClass({
     getPictureUrl(e) {
         this.setState({ pictureUrl: e });
     },
-    handleSubmit(e) {
-        e.preventDefault();
+    handleSubmit(e,index) {
+		e.preventDefault();
         this.props.form.validateFields((err, values) => {
-			console.log(values)
             //url转化
             let thePictureUrl = [];
             if (this.state.pictureUrl.length) {
@@ -160,29 +229,35 @@ const DemandDetailForm = Form.create()(React.createClass({
                     }
                 });
                 thePictureUrl = picArr.join(",");
-            };
+			};
+			if(!this.state.tags.length){
+				message.warning('请填写关键词.')
+				return false;
+			}
             if (!err) {
                 this.setState({
                     loading: true
                 });
                 $.ajax({
                     method: "post",
-                    dataType: "json",
-                    // crossDomain: false,
+					dataType: "json",
+					async:true,
                     url: this.props.data.id ? globalConfig.context + '/api/user/demand/updateDemand' : globalConfig.context + '/api/user/demand/apply',
                     data: {
                         id: this.props.data.id,
-                        name: values.name,
+						name: values.name,
                         industryCategoryA: values.industryCategory ? values.industryCategory[0] : undefined,
                         industryCategoryB: values.industryCategory ? values.industryCategory[1] : undefined,
                         demandType: values.demandType,
                         problemDes: values.problemDes,
-                      //  pictureUrl: thePictureUrl,
+                        pictureUrl: thePictureUrl,
 						crowdCost:values.crowdCost,
+						keyword: this.state.tags ? this.state.tags.join(",") : [],
+						keywords: this.state.tags,
 						budgetCost:values.budgetCost,
-						urgentDays:values.urgentDays?values.urgentDays.format('YYYY-MM-DD'):undefined,
+						urgentDays:values.urgentDays,
 						urgentMoney:values.urgentMoney,
-						auditStatus:values.auditStatus,
+						auditStatus:index,
                         status: this.state.status,
 						isUrgent: this.state.isUrgent,
 						isHot:this.state.isHot,
@@ -194,11 +269,11 @@ const DemandDetailForm = Form.create()(React.createClass({
                         loading: false
                     });
                     if (!data.error.length) {
-                        message.success('保存成功!');
+                        message.success('操作成功!');
                         this.setState({
                             visible: false
                         });
-                        this.props.handleOk();
+                        this.props.handOk();
                     } else {
                         message.warning(data.error[0].message);
                     }
@@ -206,26 +281,26 @@ const DemandDetailForm = Form.create()(React.createClass({
             }
         });
 	},
-	submission(record){
-		this.handleSubmit();
-        $.ajax({
+	submission(e,index){
+		this.handleSubmit(e,index);
+		$.ajax({
             method: "POST",
             dataType: "json",
-            crossDomain: false,
-            url: globalConfig.context + "/api/user/demand/deletet",
+			crossDomain: false,
+			async:true,
+            url: globalConfig.context + "/api/user/demand/publishDemand",
             data: {
-                ids: deletedIds
+				id: this.state.id,
+				auditStatus:this.state.auditStatus
             }
         }).done(function (data) {
             if (!data.error.length) {
-                message.success('成功提交审核.');
                 this.setState({
                     loading: false,
                 });
             } else {
                 message.warning(data.error[0].message);
             };
-            this.loadData();
         }.bind(this));
     },
 	cancelFun(){
@@ -235,7 +310,11 @@ const DemandDetailForm = Form.create()(React.createClass({
         if (this.props.data.id) {
             this.loadData(this.props.data.id);
         } else {
-            this.state.data = {};
+			this.state.data = {};
+			this.state.tags = [];
+			this.setState({
+				publishPagesArr:['app_demand_list','web_demand_list']
+			})
         };
     },
     componentWillReceiveProps(nextProps) {
@@ -249,9 +328,13 @@ const DemandDetailForm = Form.create()(React.createClass({
 				this.state.isUrgent=undefined;//加急需求
 				this.state.isHot=undefined;//是否悬赏
 				this.state.status=undefined;
-                this.state.pictureUrl = [];
+				this.state.pictureUrl = [];
+				this.state.tags = [];
+				this.setState({
+					publishPagesArr:['app_demand_list','web_demand_list']
+				})
             };
-            this.props.form.resetFields();
+			this.props.form.resetFields();
         };
     },
     render() {
@@ -265,7 +348,7 @@ const DemandDetailForm = Form.create()(React.createClass({
 		let demandType =(getFieldsValue(['demandType']).demandType);
         return (
 			<div className='login'>
-			<Form layout="horizontal" onSubmit={this.handleSubmit} id="demand-form">
+			<Form layout="horizontal" onSubmit={(e)=>{this.handleSubmit(e,0)}} id="demand-form">
 				<Spin spinning={this.state.loading}>
 					<div className="clearfix">
 						<FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 18 }} label="发个需求吧">
@@ -281,6 +364,17 @@ const DemandDetailForm = Form.create()(React.createClass({
 							})(<Input placeholder="给您的需求配个标题吧." />)}
 						</FormItem>
 					</div>
+					<div className="clearfix">
+						<FormItem
+							labelCol={{ span: 3 }}
+							wrapperCol={{ span: 18 }}
+							label="关键词" >
+							<KeyWordTagGroup
+								keyWordArr={this.state.tags}
+								tagsArr={(e)=>{this.setState({tags:e})}}
+								/>
+						</FormItem>
+					</div>
 					<FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 18 }} label="行业领域">
 						{getFieldDecorator('industryCategory', {
 							rules: [ { type: 'array', required: true, message: '此项为必填项!' } ],
@@ -291,7 +385,7 @@ const DemandDetailForm = Form.create()(React.createClass({
 						<FormItem className="half-item" {...formItemLayout} label="需求类型">
 							{getFieldDecorator('demandType', {
 									rules: [ { required: true, message: '此项为必填项!' } ],
-									initialValue:(theData.demandType?theData.demandType.toString():undefined)
+									initialValue:(theData.demandType||theData.demandType=='0'?theData.demandType.toString():undefined)
 							})(
 								<Select style={{ width: 160 }} placeholder="请选择需求类型"
 									>
@@ -317,7 +411,7 @@ const DemandDetailForm = Form.create()(React.createClass({
 						<FormItem className="half-item" {...formItemLayout} label="资金用途">
 							{getFieldDecorator('researchType', {
 								rules: [ { required: false } ],
-								initialValue: theData.researchType
+								initialValue: theData.researchType||theData.researchType=='0'?theData.researchType.toString():undefined
 							})(
 								<Select placeholder="选择资金用途" style={{ width: 160 }} >
 									<Select.Option value="0" >研发</Select.Option>
@@ -332,15 +426,20 @@ const DemandDetailForm = Form.create()(React.createClass({
 					<div className="clearfix">
 						<FormItem className="half-item" {...formItemLayout} label="加急">
 							<Radio.Group value={this.state.isUrgent} onChange={(e)=>{this.setState({isUrgent:e.target.value})}}>
-								<Radio value={1}>加急</Radio>
 								<Radio value={0}>非加急</Radio>
+								<Radio value={1}>加急</Radio>
 							</Radio.Group>
 						</FormItem>
 						{this.state.isUrgent?<div className="clearfix">
 						<FormItem className="half-item" {...formItemLayout} label="日期">
 							{getFieldDecorator('urgentDays', {
-								initialValue: theData.urgentDays ? moment(theData.urgentDays) : null
-							})(<DatePicker />)}
+								initialValue: theData.urgentDays 
+							})(
+								<div>
+									<Input style={{width:50}}/>
+									<span>天</span>
+								</div>)
+							}
 						</FormItem>
 						<FormItem className="half-item" {...formItemLayout} label="加急金额">
 							{getFieldDecorator('urgentMoney', {
@@ -364,22 +463,6 @@ const DemandDetailForm = Form.create()(React.createClass({
 							</Radio.Group>
 						</FormItem>
 					</div>
-					{/* <div className="clearfix">
-						<FormItem
-							className="half-item"
-							{...formItemLayout}
-							label="地区"
-						>
-							<Cascader
-								options={areaSelect()}
-								value={this.state.ProvinceCity}
-								placeholder="选择地区"
-								onChange={(e, pre) => {
-									this.setState({ ProvinceCity: e });
-								}}
-							/>
-						</FormItem>  
-					</div> */}
 					<FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 18 }} label="需求文件(图片)">
 						<PicturesWall
 							uid={theData.employerId}
@@ -388,27 +471,6 @@ const DemandDetailForm = Form.create()(React.createClass({
 							visible={this.props.visible}
 						/>
 					</FormItem>
-					<div>
-						<FormItem className="half-item" {...formItemLayout} label="发布状态">
-							{getFieldDecorator('auditStatus', {
-								rules: [ { required: false } ],
-								initialValue: (theData.auditStatus?theData.auditStatus.toString():undefined)
-							})(
-								<Select placeholder="选择发布状态" style={{ width: 160 }} >
-									<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.Option value="4" >已撤销</Select.Option>
-								</Select>
-							)}
-						</FormItem>
-						{/* <FormItem className="half-item" {...formItemLayout} label="发布时间">
-								{getFieldDecorator('releaseTime', {
-									initialValue: theData.releaseTime ? moment(theData.releaseTime) : null
-								})(<DatePicker />)}
-						</FormItem> */}
-					</div>
 					<div className="clearfix">
 						<FormItem className="full-item" 
 							labelCol={{ span: 3 }}
@@ -421,10 +483,10 @@ const DemandDetailForm = Form.create()(React.createClass({
 									<Row>
 										<Col span={6}><Checkbox value="web_index">网站首页</Checkbox></Col>
 										<Col span={6}><Checkbox value="web_demand_main">网站需求主页</Checkbox></Col>
-										<Col span={6}><Checkbox value="web_demand_list">网站需求搜索页</Checkbox></Col>
+										<Col span={6}><Checkbox value="web_demand_list" disabled>网站需求搜索页</Checkbox></Col>
 										<Col span={6}><Checkbox value="app_index">APP首页</Checkbox></Col>
 										<Col span={6}><Checkbox value="app_demand_main">APP需求首页</Checkbox></Col>
-										<Col span={6}><Checkbox value="app_demand_list">APP需求搜索页</Checkbox></Col>
+										<Col span={6}><Checkbox value="app_demand_list" disabled>APP需求搜索页</Checkbox></Col>
 									</Row>
 								</Checkbox.Group>
 							)}
@@ -437,19 +499,22 @@ const DemandDetailForm = Form.create()(React.createClass({
 					</div>}
 					<div className="clearfix">
 						<FormItem wrapperCol={{ span: 12, offset: 3 }}>
-							<Button className="set-submit" type="primary" htmlType="submit">
-								保存
-							</Button>
-							{this.props.data&&this.props.data.id&&<Button
+						{this.props.data&&!this.props.data.id&&<Button className="set-submit" type="primary" htmlType="submit">
+								保存草稿
+							</Button>}
+							<Button
 								className="set-submit"
 								type="ghost"
 								onClick={(e) => {
-									this.submission()
+									if(this.props.data.id){
+										this.submission(e,this.state.auditStatus)
+									}else{
+										this.handleSubmit(e,1)
+									}
 								}}
-								htmlType="submit"
 							>
 								提交审核
-							</Button>}
+							</Button>
 							<Button className="set-submit" type="ghost" onClick={this.cancelFun}>
 								取消
 							</Button>

+ 70 - 29
js/component/account/demand/techDemand.jsx

@@ -12,6 +12,7 @@ const DemandList = React.createClass({
     loadData(pageNo) {
         this.state.data = [];
         this.setState({
+            page:pageNo,
             loading: true
         });
         $.ajax({
@@ -42,8 +43,9 @@ const DemandList = React.createClass({
                             name: thisdata.name,
                             demandType: thisdata.demandType,
                             auditStatus: thisdata.auditStatus, //审核状态
-                            createDate:thisdata.createDate,
-                            status:thisdata.status  //需求状态
+                            createTime:thisdata.createTime?(new Date(thisdata.createTime)).toLocaleString():'',
+                            status:thisdata.status, //需求状态
+                            releaseDate:thisdata.releaseDate?(new Date(thisdata.releaseDate)).toLocaleString():''
                         });
                     };
                 };
@@ -100,31 +102,43 @@ const DemandList = React.createClass({
                     render: text => { return getDemandType(text); }
                 },
                 {
-                    title: '发布状态',
+                    title: '审核状态',
                     dataIndex: 'auditStatus',
                     key: 'auditStatus',
                     render: text => { return getReleaseStateList(text) }
                 }, {
+                    title: '创建时间',
+                    dataIndex: 'createTime',
+                    key: 'createTime'
+                },
+                {
                     title: '发布时间',
-                    dataIndex: 'createDate',
-                    key: 'createDate'
+                    dataIndex: 'releaseDate',
+                    key: 'releaseDate'
                 },
                 {
-                    title: '解决状态',
+                    title: '需求状态',
                     dataIndex: 'status',
-                    key: 'status'
+                    key: 'status',
+                    render: text => {
+                        return  <div>
+                                    {text=='0'&&<span>进行中</span>}
+                                    {text=='1'&&<span>未解决</span>}
+                                    {text=='1'&&<span>已解决</span>}
+                                </div>
+
+                     }
                 },
                 {
-                    title: '审核',
+                    title: '操作',
                     dataIndex: 'caozuo',
                     key: 'caozuo',
                     render:(text,recard) => {
                         return  <div className="btnRight">
-                                   <Button type="primary" onClick={(e)=>{e.stopPropagation;this.tableRowClick(recard)}}>{recard.auditStatus=='1'||recard.auditStatus=='2'?'查看':'编辑'}</Button>
-                                   {recard.auditStatus!='1'&&recard.auditStatus!='2'&&<Button type="primary" style={{ background: "#3fcf9e", border: "none", color: "#fff" }} onClick={(e)=>{e.stopPropagation;this.submission(recard)}}>提交</Button>}
-                                   {recard.auditStatus!='1'&&recard.auditStatus!='2'&&<Button type="danger"  onClick={(e)=>{e.stopPropagation;this.delectRow(recard)}}>删除</Button>}
-                                   {recard.auditStatus!='1'&&recard.auditStatus=='2'&&<Button type="success" onClick={(e)=>{e.stopPropagation;this.release(recard,1)}}>刷新发布</Button>}
-                                   {recard.auditStatus!='1'&&recard.auditStatus=='2'&&<Button type="danger" onClick={(e)=>{e.stopPropagation;this.release(recard,0)}}>撤销发布</Button>}
+                                   {recard.auditStatus!='1'&&recard.auditStatus!='2'&&<Button type="primary" style={{ background: "#3fcf9e", border: "none", color: "#fff" }} onClick={(e)=>{e.stopPropagation(),this.submission(recard)}}>提交审核</Button>}
+                                   {/* {recard.auditStatus!='1'&&recard.auditStatus!='2'&&<Button type="danger"  onClick={(e)=>{e.stopPropagation;this.delectRow(recard)}}>删除</Button>} */}
+                                   {recard.auditStatus!='1'&&recard.auditStatus=='2'&&<Button type="success" onClick={(e)=>{ e.stopPropagation(),this.updateFun(recard)}}>刷新发布</Button>}
+                                   {recard.auditStatus!='1'&&recard.auditStatus=='2'&&<Button type="danger" onClick={(e)=>{e.stopPropagation(),this.revokeFun(recard)}}>撤销发布</Button>}
                                 </div>
                     }
                 }
@@ -136,55 +150,82 @@ const DemandList = React.createClass({
     //提交审核
     submission(record){
         this.setState({
+            showDesc:false,
             loading:true
         });
         $.ajax({
             method: "POST",
             dataType: "json",
             crossDomain: false,
-            url: globalConfig.context + "/api/user/demand/deletet",
+            url: globalConfig.context + "/api/user/demand/publishDemand",
             data: {
-                ids: deletedIds
+				id:record.id,
+				auditStatus:record.auditStatus
             }
         }).done(function (data) {
             if (!data.error.length) {
-                message.success('成功提交审核.');
+                message.success('提交成功.');
                 this.setState({
                     loading: false,
                 });
+                this.loadData(this.state.page)
             } else {
                 message.warning(data.error[0].message);
             };
-            this.loadData();
         }.bind(this));
     },
     //刷新发布
-    release(recard,index){
-        let api = index?'/api/shuaxin':'/api/chexiao';
+    updateFun(recard){
         this.setState({
             loading:true
-        });
+        })
+        $.ajax({
+            method: "POST",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context +'/api/user/demand/refreshPublish',
+            data: {
+                id: recard.id,
+                auditStatus:recard.auditStatus
+            }
+        }).done(function (data) {
+            if (!data.error.length) {
+                message.success('刷新成功!');
+                this.setState({
+                    loading: false,
+                });
+            } else {
+                message.warning(data.error[0].message);
+            };
+            this.loadData(this.state.page);
+        }.bind(this));
+    },
+    //撤销发布
+    revokeFun(recard){
+        this.setState({
+            loading:true
+        })
         $.ajax({
             method: "POST",
             dataType: "json",
             crossDomain: false,
-            url: globalConfig.context + api,
+            url: globalConfig.context +  '/api/user/demand/offShelf',
             data: {
-                id: recard.id
+                id: recard.id,
+                auditStatus:recard.auditStatus 
             }
         }).done(function (data) {
             if (!data.error.length) {
-                message.success('操作成功');
+                message.success('撤销成功!');
                 this.setState({
                     loading: false,
                 });
+                this.loadData(this.state.page);
             } else {
                 message.warning(data.error[0].message);
             };
-            this.loadData();
         }.bind(this));
     },
-    
     componentWillMount() {
         let theArr = [];
         demandTypeList.map(function (item) {
@@ -217,12 +258,12 @@ const DemandList = React.createClass({
             if (!data.error.length) {
                 message.success('删除成功!');
                 this.setState({
-                    loading: false,
+                    loading: false
                 });
+                this.loadData(this.state.page);
             } else {
                 message.warning(data.error[0].message);
             };
-            this.loadData();
         }.bind(this));
     },
     addClick() {
@@ -234,7 +275,7 @@ const DemandList = React.createClass({
     closeDesc(e, s) {
         this.state.showDesc = e;
         if (s) {
-            this.loadData();
+            this.loadData(this.state.page);
         };
     },
     search() {
@@ -291,7 +332,7 @@ const DemandList = React.createClass({
                             dataSource={this.state.dataSource}
                             rowSelection={rowSelection}
                             pagination={this.state.pagination}
-                             />
+                            onRowClick={this.tableRowClick} />
                     </Spin>
                 </div>
                 <TechDemandDesc

+ 3 - 0
js/component/account/demand/techDemand.less

@@ -49,6 +49,9 @@ button:focus,button:active{
         background: #ea0862;
     }
 }
+.ant-checkbox-disabled + span{
+    color: rgba(2, 0, 16, 0.45);
+}
 
 #demand-form {
     .half-item {

+ 60 - 41
js/component/account/index/leftMenu.jsx

@@ -1,5 +1,5 @@
 import React from 'react';
-import { Menu, Icon, Layout,message } from 'antd';
+import { Menu, Icon, Layout, message } from 'antd';
 import '@/account/leftTab.less';
 const SubMenu = Menu.SubMenu;
 const MenuItemGroup = Menu.ItemGroup;
@@ -16,7 +16,7 @@ const LeftTab = React.createClass({
 			openKeys: [ 'sub1' ],
 			current: 'normal',
 			switch: false,
-			rootSubmenuKeys :['sub1', 'sub2','sub3','sub4']
+			rootSubmenuKeys: [ 'sub1', 'sub2', 'sub3', 'sub4' ]
 		};
 	},
 	loadData() {
@@ -39,7 +39,7 @@ const LeftTab = React.createClass({
 	},
 	menuClick(e) {
 		this.setState({
-			current: e.key,
+			current: e.key
 		});
 		window.location.hash = e.key;
 	},
@@ -56,68 +56,87 @@ const LeftTab = React.createClass({
 			switch: !this.state.switch
 		});
 	},
-	onOpenChange(openKeys){
-		const latestOpenKey = openKeys.find(key => this.state.openKeys.indexOf(key) === -1);
+	onOpenChange(openKeys) {
+		const latestOpenKey = openKeys.find((key) => this.state.openKeys.indexOf(key) === -1);
 		if (this.state.rootSubmenuKeys.indexOf(latestOpenKey) === -1) {
-		  this.setState({ openKeys });
+			this.setState({ openKeys });
 		} else {
-		  this.setState({
-			openKeys: latestOpenKey ? [latestOpenKey] : [],
-		  });
+			this.setState({
+				openKeys: latestOpenKey ? [ latestOpenKey ] : []
+			});
 		}
-	 },
+	},
 	componentWillMount() {
 		this.loadData();
 		if (window.location.hash) {
 			let current = window.location.hash.substr(2),
-				open=[];
+				open = [];
 			if (!current.length) {
 				window.location.hash = 'normal';
 				this.setState({
-					openKeys:['sub1'],
-					current:'normal'
-				})
-			}else{
-				menu.map(item=>{
-					if(item.children){
-						item.children.map(atem=>{
-							if(current==atem.url){
-								open.push(item.url)
+					openKeys: [ 'sub1' ],
+					current: 'normal'
+				});
+			} else {
+				menu.map((item) => {
+					if (item.children) {
+						item.children.map((atem) => {
+							if (current == atem.url) {
+								open.push(item.url);
 								return false;
 							}
-						})
+						});
 					}
-				})
+				});
 				this.setState({
-					openKeys:open,
+					openKeys: open,
 					current
 				});
 			}
-		}else{
+		} else {
 			window.location.hash = 'normal';
 			this.setState({
-				openKeys:['sub1'],
-				current:'normal'
-			})
+				openKeys: [ 'sub1' ],
+				current: 'normal'
+			});
 		}
 	},
 	render() {
-		let menuList = [];
+		let demandList = [
+			{
+				name: '我的需求',
+				url: 'sub3',
+				icon: 'bulb',
+				children: [ { name: '科技需求列表', url: 'demand' } ]
+			},
+			{
+				name: '我的成果',
+				url: 'sub4',
+				icon: 'compass',
+				children: [ { name: '科技成果列表', url: 'achievement' } ]
+			}
+		];
+		let menuList = [],newMenu=[];
 		let menuNO = menu[1].children;
-		menuNO.map(item=>{
-			if(this.state.type=='0'){
-				if(item.name!="企业资料"){
-					menuList.push(item)
+		menuNO.map((item) => {
+			if (this.state.type == '0') {
+				if (item.name != '企业资料') {
+					menuList.push(item);
 				}
-			}else if(this.state.type=='1'){
-				if(item.name!="个人资料"){
-					menuList.push(item)
+			} else if (this.state.type == '1') {
+				if (item.name != '个人资料') {
+					menuList.push(item);
 				}
-			}else{
-				menuList.push(item)
+			} else {
+				menuList.push(item);
 			}
-		})
-		menu[1].children=menuList;
+		});
+		menu[1].children = menuList;
+		if (this.state.type == '0' || this.state.type == '1') {
+			newMenu = menu.concat(demandList);
+		}else{
+			newMenu=menu;
+		}
 		return (
 			<div>
 				<div className="acc-index">
@@ -134,12 +153,12 @@ const LeftTab = React.createClass({
 					defaultOpenKeys={this.state.openKeys}
 					selectedKeys={[ this.state.current ]}
 					openKeys={this.state.openKeys}
-       				onOpenChange={this.onOpenChange}
+					onOpenChange={this.onOpenChange}
 					mode={this.state.switch ? 'vertical' : 'inline'}
 					theme="light"
 					className="account-left"
 				>
-					{menu.map((subMenu) => {
+					{newMenu.map((subMenu) => {
 						if (subMenu.children && subMenu.children.length) {
 							return (
 								<SubMenu

+ 0 - 15
js/component/account/menu.jsx

@@ -22,21 +22,6 @@ module.exports = {
             { name: '个人资料', url: 'personal' },
             { name: '常用联系人', url: 'contacts' },
           ]
-        },
-        {
-          name: '我的需求',
-          url: 'sub3',
-          icon: 'bulb',
-          children: [
-            { name: '科技需求列表', url: 'demand' }
-          ]
-        },{
-          name: '我的成果',
-          url: 'sub4',
-          icon: 'compass',
-          children: [
-            { name: '科技成果列表', url: 'achievement'}
-          ]
         }
     ],
 }

+ 2 - 2
js/component/account/topTab.jsx

@@ -1,5 +1,5 @@
 import React from 'react';
-import { Row, Col,message } from 'antd';
+import { Row, Col,message,Badge } from 'antd';
 import './topTab.less';
 import ajax from 'jquery/src/ajax/xhr.js'
 import $ from 'jquery/src/ajax';
@@ -51,7 +51,7 @@ const TopTab = React.createClass({
                     <span className="acc-top-user-name">欢迎您, {this.state.nickname || userData.nickname || userData.number } <a onClick={this.logOut}>[ 退出 ]</a></span>
                     <span className="acc-top-user-toindex"><a href={globalConfig.context + "/portal/index.html"}>返回首页</a></span>
                 </div>
-            </div >
+            </div>
         )
     }
 });

+ 10 - 1
js/component/account/topTab.less

@@ -15,12 +15,21 @@
             color:#ffffff;
             .acc-top-user-name {
                 margin-left: 10px;
+                a{
+                    color: #ffffff
+                }
                 a:hover{
-                    color:red;
+                    color:#58a3ff;
                 }
             }
            
             .acc-top-user-toindex {
+                a{
+                    color:#ffffff;
+                }
+                a:hover{
+                    color: #58a3ff;
+                }
                 float: right;
                 margin-right: 10px;
             }

+ 0 - 450
js/component/adminDemand/demandForm.jsx

@@ -1,450 +0,0 @@
-import React from 'react';
-import $ from 'jquery/src/ajax';
-import {
-	Icon,
-	Tabs,
-	Table,
-	Tooltip,
-	Modal,
-	Popover,
-	message,
-	Spin,
-	Upload,
-	Input,
-	InputNumber,
-	Select,
-	DatePicker,
-	Button,
-	Radio,
-	Form,
-	Cascader,
-    Tag,
-    Checkbox,
-    Row,
-    Col
-} from 'antd';
-import { getTechField } from '@/DicTechFieldList.js';
-import {areaSelect } from '@/NewDicProvinceList';
-import { IndustryObject, getIndustryCategory } from '@/DicIndustryList.js';
-import {  splitUrl, companySearch, getDemandType, getAchievementCategory } from '@/tools.js';
-const FormItem =Form.Item
-
-const PicturesWall = React.createClass({
-	getInitialState() {
-		return {
-			previewVisible: false,
-			previewImage: '',
-			fileList: []
-		};
-	},
-	handleCancel() {
-		this.setState({ previewVisible: false });
-	},
-	handlePreview(file) {
-		this.setState({
-			previewImage: file.url || file.thumbUrl,
-			previewVisible: true
-		});
-	},
-	handleChange(info) {
-		let fileList = info.fileList;
-		this.setState({ fileList });
-		this.props.fileList(fileList);
-	},
-	componentWillReceiveProps(nextProps) {
-		this.state.fileList = nextProps.pictureUrl;
-	},
-	render() {
-		const { previewVisible, previewImage, fileList } = this.state;
-		const uploadButton = (
-			<div>
-				<Icon type="plus" />
-				<div className="ant-upload-text">点击上传</div>
-			</div>
-		);
-		return (
-			<div className="clearfix">
-				<Upload
-					action={globalConfig.context + '/api/user/demand/uploadPicture'}
-					data={{ sign: 'demand_picture', uid: this.props.uid }}
-					listType="picture-card"
-					fileList={fileList}
-					onPreview={this.handlePreview}
-					onChange={this.handleChange}
-				>
-					{fileList.length >= 5 ? null : uploadButton}
-				</Upload>
-				<Modal maskClosable={false} visible={previewVisible} footer={null} onCancel={this.handleCancel}>
-					<img alt="example" style={{ width: '100%' }} src={previewImage} />
-				</Modal>
-			</div>
-		);
-	}
-});
- 
-const DemandDetailForm = Form.create()(React.createClass({
-    getInitialState() {
-        return {
-            visible: false,
-            loading: false,
-            auditStatus: 0,
-            textFileList: [],
-            videoFileList: [],
-            pictureUrl: [],
-        };
-    },
-    loadData(id) {
-        this.setState({
-            loading: true
-        });
-        $.ajax({
-            method: "get",
-            dataType: "json",
-            crossDomain: false,
-            url: globalConfig.context +  '/api/user/demand/orgDemandDetail' ,
-            data: {
-                id: id
-            },
-            success: function (data) {
-                let thisData = data.data;
-                if (!thisData) {
-                    if (data.error && data.error.length) {
-                        message.warning(data.error[0].message);
-                    };
-                    thisData = {};
-				};
-				let ProvinceCityArr = [];
-				let ProvinceS = thisData.locationProvince; //getprovince
-				let citys = thisData.locationCity;
-				let Areas = thisData.locationArea;
-				ProvinceCityArr.push(ProvinceS, citys, Areas);
-                this.setState({
-					ProvinceCity:ProvinceCityArr,
-                    data: thisData,
-                    pictureUrl: thisData.pictureUrl ? splitUrl(thisData.pictureUrl, ',', globalConfig.avatarHost + '/upload') : []
-                });
-            }.bind(this),
-        }).always(function () {
-            this.setState({
-                loading: false
-            });
-        }.bind(this));
-    },
-    getTagsArr(e) {
-        this.setState({ tags: e });
-    },
-    getPictureUrl(e) {
-        this.setState({ pictureUrl: e });
-    },
-    handleSubmit(e) {
-        e.preventDefault();
-        this.props.form.validateFields((err, values) => {
-			console.log(values)
-            //url转化
-            let thePictureUrl = [];
-            if (this.state.pictureUrl.length) {
-                let picArr = [];
-                this.state.pictureUrl.map(function (item) {
-                    if ( item.response && item.response.data && item.response.data.length ){
-                        picArr.push(item.response.data);
-                    }
-                });
-                thePictureUrl = picArr.join(",");
-            };
-            if (!err) {
-                this.setState({
-                    loading: true
-                });
-                $.ajax({
-                    method: "POST",
-                    dataType: "json",
-                    crossDomain: false,
-                    url: this.props.data.id ? globalConfig.context + '/api/user/demand/updateDemand' : globalConfig.context + '/api/user/demand/apply',
-                    data: {
-                        id: this.props.data.id,
-                        dataCategory: Number(window.userData.type),
-                        serialNumber: this.props.data.serialNumber,
-                        name: values.name,
-                        keywords: this.state.tags,
-                        infoSources: 1,
-                        industryCategoryA: values.industryCategory ? values.industryCategory[0] : undefined,
-                        industryCategoryB: values.industryCategory ? values.industryCategory[1] : undefined,
-                        demandType: values.demandType,
-                        problemDes: values.problemDes,
-                        technicalRequirements: values.technicalRequirements,
-                        pictureUrl: thePictureUrl,
-                        textFileUrl: this.state.textFileUrl,
-                        videoUrl: values.videoUrl,
-                        fixedBudget: values.fixedBudget,
-                        fixedCycle: values.fixedCycle,
-                        peopleNumber: values.peopleNumber,
-                        fixedScheme: values.fixedScheme,
-                        costEscrow: values.costEscrow,
-                        budgetCost: values.budgetCost,
-                        releaseStatus: values.releaseStatus,
-                        principalId: values.principalId,
-                        validityPeriodFormattedDate: values.validityPeriod ? values.validityPeriod.format('YYYY-MM-DD') : undefined,
-                        //
-                        contacts: values.contacts,
-                        status: this.state.status,
-                        auditStatus: this.state.auditStatus
-                    }
-                }).done(function (data) {
-                    this.state.auditStatus = 0;
-                    this.setState({
-                        loading: false
-                    });
-                    if (!data.error.length) {
-                        message.success('保存成功!');
-                        this.setState({
-                            visible: false
-                        });
-                        this.props.handleOk();
-                    } else {
-                        message.warning(data.error[0].message);
-                    }
-                }.bind(this));
-            }
-        });
-	},
-	cancelFun(){
-		this.props.closeDesc();
-	},
-    componentWillMount() {
-        if (this.props.data.id) {
-            this.loadData(this.props.data.id);
-        } else {
-            this.state.data = {};
-        };
-    },
-    componentWillReceiveProps(nextProps) {
-        if (!this.props.visible && nextProps.visible) {
-            this.state.textFileList = [];
-            this.state.videoFileList = [];
-            if (nextProps.data.id) {
-                this.loadData(nextProps.data.id);
-            } else {
-				this.state.data = {};
-				this.state.demandType=undefined; //需求类型
-				this.state.urgent=undefined;//加急需求
-				this.state.offer=undefined;//是否悬赏
-				this.state.hotDemand=undefined;
-				this.state.solve=undefined;
-                this.state.pictureUrl = [];
-            };
-            this.props.form.resetFields();
-        };
-    },
-    render() {
-        const theData = this.state.data || {};
-        const { getFieldDecorator,getFieldsValue } = this.props.form;
-        const FormItem = Form.Item
-        const formItemLayout = {
-            labelCol: { span: 6 },
-            wrapperCol: { span: 12 },
-		};
-		let demandType =(getFieldsValue(['demandType']).demandType);
-        return (
-			<div className='login'>
-			<Form layout="horizontal" onSubmit={this.handleSubmit} id="demand-form">
-				<Spin spinning={this.state.loading}>
-					<div className="clearfix">
-						<FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 18 }} label="发个需求吧">
-							{getFieldDecorator('problemDes', {
-								rules: [ { required: true, message: '此项为必填项!' } ],
-								initialValue: theData.problemDes
-							})(<Input type="textarea" rows={4} placeholder="亲,发个需求吧!让技术专家主动找到您." />)}
-						</FormItem>
-						<FormItem className="half-item" {...formItemLayout} label="标题">
-							{getFieldDecorator('name', {
-								rules: [ { required: true, message: '此项为必填项!' } ],
-								initialValue: theData.name
-							})(<Input placeholder="给您的需求配个标题吧." />)}
-						</FormItem>
-					</div>
-					<FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 18 }} label="行业领域">
-						{getFieldDecorator('industryCategory', {
-							rules: [ { type: 'array', required: true, message: '此项为必填项!' } ],
-							initialValue: [ theData.industryCategoryA, theData.industryCategoryB ]
-						})(<Cascader style={{ width: 300 }} options={IndustryObject} placeholder="请选择一个行业" />)}
-					</FormItem>
-					<div className="clearfix">
-						<FormItem className="half-item" {...formItemLayout} label="需求类型">
-							{getFieldDecorator('demandType', {
-									rules: [ { required: true, message: '此项为必填项!' } ],
-									initialValue:(theData.demandType?theData.demandType.tostring():undefined)
-							})(
-								<Select style={{ width: 160 }} placeholder="请选择需求类型"
-									>
-									{this.props.demandTypeOption}
-								</Select>
-							)}
-						</FormItem>
-						{demandType=='5'||theData.demandType=='5'?
-							<FormItem className="half-item" {...formItemLayout} label="人才需求酬劳">
-							{getFieldDecorator('name', {
-								rules: [ { required: false } ],
-								initialValue: theData.namea
-							})(<InputNumber min={0} max={999999} step={0.01} placeholder="输入酬劳."/>)}
-							<span style={{ marginLeft: '20px' }}>元/月</span>
-						</FormItem>:''}
-						{demandType=='3'||theData.demandType=='3'?<div className="clearfix"><FormItem className="half-item" {...formItemLayout} label="资金需求额度">
-							{getFieldDecorator('name', {
-								rules: [ { required: false } ],
-								initialValue: theData.namea
-							})(<InputNumber min={0} max={999999} step={0.01} placeholder="输入资金需求额度."/>)}
-							<span style={{ marginLeft: '20px' }}>万元</span>
-						</FormItem>
-						<FormItem className="half-item" {...formItemLayout} label="资金用途">
-							{getFieldDecorator('namea', {
-								rules: [ { required: false } ],
-								initialValue: theData.namea
-							})(
-								<Select placeholder="选择资金用途" style={{ width: 160 }} >
-									<Select.Option value="0" >研发</Select.Option>
-									<Select.Option value="1" >扩大再生产</Select.Option>
-								</Select>
-							)}
-							</FormItem>
-						</div>:''
-						}
-					</div>
-					<p style={{marginLeft:40,fontSize:18,marginBottom:15}}>您还可以说明</p>
-					<div className="clearfix">
-						<FormItem className="half-item" {...formItemLayout} label="加急">
-							<Radio.Group value={this.state.urgent} onChange={(e)=>{this.setState({urgent:e.target.value})}}>
-								<Radio value={1}>加急</Radio>
-								<Radio value={0}>非加急</Radio>
-							</Radio.Group>
-						</FormItem>
-						{this.state.urgent?<FormItem className="half-item" {...formItemLayout} label="日期">
-							{getFieldDecorator('validitytime', {
-								initialValue: theData.validitytime ? moment(theData.validitytime) : null
-							})(<DatePicker />)}
-						</FormItem>:''}
-					</div>
-					<div className="clearfix">
-						<FormItem className="half-item" {...formItemLayout} label="悬赏需求">
-							<Radio.Group value={this.state.offer} onChange={(e)=>{this.setState({offer:e.target.value})}}>
-								<Radio value={0}>否</Radio>
-								<Radio value={1}>是</Radio>
-							</Radio.Group>
-						</FormItem>
-						{this.state.offer>=1&&<FormItem className="half-item" {...formItemLayout} label="悬赏金额">
-							{getFieldDecorator('budgetCost', {
-								initialValue: theData.budgetCost
-							})(<InputNumber min={0} max={999999} step={0.01} placeholder="输入金额."/>)}
-							<span style={{ marginLeft: '20px' }}>万元</span>
-						</FormItem>}
-					</div>
-					<div className="clearfix">
-						<FormItem className="half-item" {...formItemLayout} label="热点需求">
-							<Radio.Group value={this.state.hotDemand} onChange={(e)=>{this.setState({hotDemand:e.target.value})}}>
-								<Radio value={0}>否</Radio>
-								<Radio value={1}>是</Radio>
-							</Radio.Group>
-						</FormItem>
-						<FormItem className="half-item" {...formItemLayout} label="解决">
-							<Radio.Group value={this.state.solve} onChange={(e)=>{this.setState({solve:e.target.value})}}>
-								<Radio value={0}>未解决</Radio>
-								<Radio value={1}>已解决</Radio>
-							</Radio.Group>
-						</FormItem>
-					</div>
-					<div className="clearfix">
-						<FormItem
-							className="half-item"
-							{...formItemLayout}
-							label="地区"
-						>
-							<Cascader
-								options={areaSelect()}
-								value={this.state.ProvinceCity}
-								placeholder="选择地区"
-								onChange={(e, pre) => {
-									this.setState({ ProvinceCity: e });
-								}}
-							/>
-						</FormItem>  
-					</div>
-					<FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 18 }} label="需求文件(图片)">
-						<PicturesWall
-							uid={theData.employerId}
-							fileList={this.getPictureUrl}
-							pictureUrl={this.state.pictureUrl}
-							visible={this.props.visible}
-						/>
-					</FormItem>
-					<div>
-						<FormItem className="half-item" {...formItemLayout} label="发布状态">
-							{getFieldDecorator('releaseState', {
-								rules: [ { required: false } ],
-								initialValue: theData.releaseState
-							})(
-								<Select placeholder="选择发布状态" style={{ width: 160 }} >
-									<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.Option value="4" >已撤销</Select.Option>
-								</Select>
-							)}
-						</FormItem>
-						<FormItem className="half-item" {...formItemLayout} label="发布时间">
-								{getFieldDecorator('releaseTime', {
-									initialValue: theData.releaseTime ? moment(theData.releaseTime) : null
-								})(<DatePicker />)}
-						</FormItem>
-					</div>
-					<div className="clearfix">
-						<FormItem className="full-item" 
-							labelCol={{ span: 3 }}
-							wrapperCol={{ span: 18 }} label="发布位置">
-							{getFieldDecorator('releasePosition', {
-								rules: [ { required: false } ],
-								initialValue: theData.releasePosition
-							})(
-								<Checkbox.Group>
-									<Row>
-										<Col span={6}><Checkbox value="0">网站首页</Checkbox></Col>
-										<Col span={6}><Checkbox value="1">网站需求主页</Checkbox></Col>
-										<Col span={6}><Checkbox value="2">网站需求搜索页</Checkbox></Col>
-										<Col span={6}><Checkbox value="3">APP首页</Checkbox></Col>
-										<Col span={6}><Checkbox value="4">APP需求首页</Checkbox></Col>
-										<Col span={6}><Checkbox value="5">APP需求搜索页</Checkbox></Col>
-									</Row>
-								</Checkbox.Group>
-							)}
-						</FormItem>
-					</div>
-					<div className="clearfix">
-						<FormItem wrapperCol={{ span: 12, offset: 3 }}>
-							<Button className="set-submit" type="primary" htmlType="submit">
-								保存
-							</Button>
-							{this.props.data&&this.props.data.id&&<Button
-								className="set-submit"
-								type="ghost"
-								onClick={(e) => {
-									this.state.auditStatus = 1;
-								}}
-								htmlType="submit"
-							>
-								提交审核
-							</Button>}
-							<Button className="set-submit" type="ghost" onClick={this.cancelFun}>
-								取消
-							</Button>
-						</FormItem>
-					</div>
-				</Spin>
-			</Form>    
-		</div>
-        )
-    }
-}));
-export default DemandDetailForm;
-
-
-
-

+ 40 - 74
js/component/adminDemand/techDemand.jsx

@@ -29,7 +29,7 @@ const DemandList = React.createClass({
                 status: this.state.statusSearch ? Number(this.state.statusSearch) : undefined,
                 startDate: this.state.releaseDate[0],
                 endDate: this.state.releaseDate[1],
-                auditStatus: this.state.auditStatusSearch
+                auditStatus: 1
             },
             success: function (data) {
                 let theArr = [];
@@ -47,10 +47,12 @@ const DemandList = React.createClass({
                             status: thisdata.status,
                             name: thisdata.name,
                             demandType: thisdata.demandType,
-                            createDate: thisdata.createDate,
                             auditStatus: thisdata.auditStatus,
                             isHot: thisdata.isHot,
                             isUrgent: thisdata.isUrgent,
+                            employerName:thisdata.employerName,
+                            createTime:thisdata.createTime?(new Date(thisdata.createTime)).toLocaleString():'',
+                            releaseDate:thisdata.releaseDate?(new Date(thisdata.releaseDate)).toLocaleString():''
                         });
                     };
                 }
@@ -128,64 +130,45 @@ const DemandList = React.createClass({
                     dataIndex: 'auditStatus',
                     key: 'auditStatus',
                     render: text => { return getReleaseStateList(text) }
+                },
+                {
+                    title: '需求状态',
+                    dataIndex: 'status',
+                    key: 'status',
+                    render: text => {
+                        return  <div>
+                                    {text=='0'&&<span>进行中</span>}
+                                    {text=='1'&&<span>未解决</span>}
+                                    {text=='1'&&<span>已解决</span>}
+                                </div>
+
+                     }
+                },
+                {
+                    title: '创建时间',
+                    dataIndex: 'createTime',
+                    key: 'createTime'
+                },
+                {
+                    title: '发布时间',
+                    dataIndex: 'releaseDate',
+                    key: 'releaseDate'
+                },
+                {
+                    title: '审核',
+                    dataIndex: 'caozuo',
+                    key: 'caozuo',
+                    render:(text,recard) => {
+                        return  <div className="btnRight">
+                                   <Button type="primary" onClick={(e)=>{e.stopPropagation();this.tableRowClick(recard)}}>审核</Button>
+                                </div>
+                    }
                 }
             ],
             dataSource: [],
             searchTime: [,]
         };
     },
-    //提交审核
-    submission(record){
-        this.setState({
-            loading:true
-        });
-        $.ajax({
-            method: "POST",
-            dataType: "json",
-            crossDomain: false,
-            url: globalConfig.context + "/api/user/demand/deletet",
-            data: {
-                ids: deletedIds
-            }
-        }).done(function (data) {
-            if (!data.error.length) {
-                message.success('成功提交审核.');
-                this.setState({
-                    loading: false,
-                });
-            } else {
-                message.warning(data.error[0].message);
-            };
-            this.loadData();
-        }.bind(this));
-    },
-    //刷新发布
-    release(recard,index){
-        let api = index?'/api/shuaxin':'/api/chexiao';
-        this.setState({
-            loading:true
-        });
-        $.ajax({
-            method: "POST",
-            dataType: "json",
-            crossDomain: false,
-            url: globalConfig.context + api,
-            data: {
-                id: recard.id
-            }
-        }).done(function (data) {
-            if (!data.error.length) {
-                message.success('操作成功');
-                this.setState({
-                    loading: false,
-                });
-            } else {
-                message.warning(data.error[0].message);
-            };
-            this.loadData();
-        }.bind(this));
-    },
-    
     componentWillMount() {
         let theArr = [];
         demandTypeList.map(function (item) {
@@ -200,7 +183,7 @@ const DemandList = React.createClass({
         this.state.RowData = record;
         this.setState({
             showDesc: true,
-            examineState:false
+            examineState:true
         });
     },
     delectRow(recard) {
@@ -262,17 +245,10 @@ const DemandList = React.createClass({
         };
         const hasSelected = this.state.selectedRowKeys.length > 0;
         const { RangePicker } = DatePicker;
-        this.state.dataSource=[
-            {key:1,serialNumber:1,id:1,releaseStatus:'0'},
-            {key:2,serialNumber:2,id:24,releaseStatus:'1'},
-            {key:3,serialNumber:3,id:23,releaseStatus:'2'},
-            {key:4,serialNumber:4,id:22,releaseStatus:'3'},
-            {key:5,serialNumber:5,id:21,releaseStatus:'4'},
-        ]
         return (
             <div className="user-content" >
                 <div className="content-title">
-                    <span>科技需求库</span>
+                    <span>需求发布审核</span>
                 </div>
                 <div className="user-search">
                     <Input placeholder="需求名称"
@@ -284,15 +260,6 @@ const DemandList = React.createClass({
                         onChange={(e) => { this.setState({ demandTypeSearch: e }) }}>
                         {this.state.demandTypeOption}
                     </Select>
-                    <Select placeholder="发布状态" style={{ width: 120 }}
-                        value={this.state.auditStatus}
-                        onChange={(e) => { this.setState({ auditStatus: e }) }}>
-                        <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.Option value="4" >已撤销</Select.Option>
-                    </Select>
                     <Select placeholder="需求状态" style={{ width: 160 }}
                         value={this.state.statusSearch}
                         onChange={(e) => { this.setState({ statusSearch: e }) }}>
@@ -318,14 +285,13 @@ const DemandList = React.createClass({
                             dataSource={this.state.dataSource}
                             rowSelection={rowSelection}
                             pagination={this.state.pagination}
-                            onRowClick={this.tableRowClick} />
                              />
                     </Spin>
                 </div>
                 <TechDemandDesc
                     data={this.state.RowData}
-                    examineState={this.state.examineState}
                     demandTypeOption={this.state.demandTypeOption}
+                    examineState={this.state.examineState}
                     showDesc={this.state.showDesc}
                     closeDesc={this.closeDesc} />
             </div >

+ 1 - 2
js/component/adminDemand/demandDesc.jsx

@@ -1,7 +1,6 @@
 import React from 'react';
 import { Modal, Spin } from 'antd';
-import DemandForm from '@/adminDemand/demandForm';
-import DemandDetaiel from '@/adminDemand/demandDetaiel';
+import DemandDetaiel from '@/administration/demand/demandDetaiel';
 
 class DemandDesc extends React.Component {
 	constructor(props) {

+ 21 - 11
js/component/adminDemand/demandDetaiel.jsx

@@ -59,7 +59,11 @@ const DemandDetail = Form.create()(React.createClass({
                         message.warning(data.error[0].message);
                     };
                     thisData = {};
-				};
+                };
+                let publishPagesArr = [];
+                thisData.publishPages.map(item=>{
+					publishPagesArr.push(item.publishPage)
+                })
 				// let ProvinceCityArr = [];
 				// let ProvinceS = thisData.locationProvince; //getprovince
 				// let citys = thisData.locationCity;
@@ -67,7 +71,8 @@ const DemandDetail = Form.create()(React.createClass({
 				// ProvinceCityArr.push(ProvinceS, citys, Areas);
                 this.setState({
 					//ProvinceCity:ProvinceCityArr,
-					id:thisData.id,
+                    id:thisData.id,
+                    publishPagesArr:publishPagesArr,
 					data: thisData,
 					isHot:thisData.isHot,
 					isUrgent:thisData.isUrgent,
@@ -93,15 +98,15 @@ const DemandDetail = Form.create()(React.createClass({
         this.setState({
             loading:true
         })
-        let api = index?'/api/tongghuo':'/api/jujue'
         $.ajax({
             method: "get",
             dataType: "JSON",
             crossDomain: false,
-            url: globalConfig.context +  api,
+            url: globalConfig.context +  '/api/admin/demand/auditDemand',
             data: {
-                ids: this.state.id,
-                refuseValue:this.state.refuseValue
+                id: this.state.id,
+                auditResult:index,
+                auditInfo:this.state.refuseValue
             }
         }).done(function (data) {
             if (!data.error.length) {
@@ -109,11 +114,10 @@ const DemandDetail = Form.create()(React.createClass({
                 this.setState({
                     loading: false,
                 });
-                this.props.closeDesc(false,true)
+                this.props.handOk()
             } else {
                 message.warning(data.error[0].message);
             };
-            this.loadData();
         }.bind(this));
     },
     //审核拒绝
@@ -184,6 +188,11 @@ const DemandDetail = Form.create()(React.createClass({
                             <span>{theData.name}</span>
 						</FormItem>
 					</div>
+                    <div className>
+                        <FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 18 }} label="关键字">
+                            <span>{theData.keyword}</span>
+                        </FormItem>
+                    </div>
 					<FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 18 }} label="行业领域">
                         <span>{getIndustryCategory(theData.industryCategoryA,theData.industryCategoryB)}</span>
                     </FormItem>
@@ -199,7 +208,8 @@ const DemandDetail = Form.create()(React.createClass({
                             <span>{theData.budgetCost}万元</span>
 						</FormItem>
 						<FormItem className="half-item" {...formItemLayout} label="资金用途">
-							<span>{theData.researchType?'扩大再生产':'研发'}</span>
+							<span>{theData.researchType=='1'&&'扩大再生产'}</span>
+                            <span>{theData.researchType=='0'&&'研发'}</span>
 						</FormItem>
 						</div>
 						}
@@ -259,13 +269,13 @@ const DemandDetail = Form.create()(React.createClass({
 					</FormItem>
 					<div>
 						<FormItem className="half-item" {...formItemLayout} label="发布状态">
-							<span>{getReleaseStateList(theData.releaseState)}</span>
+							<span>{getReleaseStateList(theData.auditStatus)}</span>
 						</FormItem>
 					</div>
                     <div>
                         <FormItem className="half-item" labelCol={{ span: 6 }}
 							wrapperCol={{ span: 18 }} label="发布位置">
-                                <span>{getReleasePositionList(theData.publishPages)}</span>
+                                 <span>{getReleasePositionList(this.state.publishPagesArr)}</span>
 						</FormItem>
                     </div>
                     <div className="clearfix">

+ 29 - 21
js/component/adminDemand/DemandExamine.jsx

@@ -13,6 +13,7 @@ const DemandList = React.createClass({
     loadData(pageNo) {
         this.state.data = [];
         this.setState({
+            page:pageNo,
             loading: true
         });
         $.ajax({
@@ -29,7 +30,6 @@ const DemandList = React.createClass({
                 status: this.state.statusSearch ? Number(this.state.statusSearch) : undefined,
                 startDate: this.state.releaseDate[0],
                 endDate: this.state.releaseDate[1],
-                auditStatus: this.state.auditStatusSearch
             },
             success: function (data) {
                 let theArr = [];
@@ -47,10 +47,12 @@ const DemandList = React.createClass({
                             status: thisdata.status,
                             name: thisdata.name,
                             demandType: thisdata.demandType,
-                            createDate: thisdata.createDate,
                             auditStatus: thisdata.auditStatus,
                             isHot: thisdata.isHot,
                             isUrgent: thisdata.isUrgent,
+                            employerName:thisdata.employerName,
+                            createTime:thisdata.createTime?(new Date(thisdata.createTime)).toLocaleString():'',
+                            releaseDate:thisdata.releaseDate?(new Date(thisdata.releaseDate)).toLocaleString():''
                         });
                     };
                 }
@@ -130,14 +132,27 @@ const DemandList = React.createClass({
                     render: text => { return getReleaseStateList(text) }
                 },
                 {
-                    title: '审核',
-                    dataIndex: 'caozuo',
-                    key: 'caozuo',
-                    render:(text,recard) => {
-                        return  <div className="btnRight">
-                                   <Button type="primary" onClick={(e)=>{e.stopPropagation;this.tableRowClick(recard)}}>审核</Button>
+                    title: '需求状态',
+                    dataIndex: 'status',
+                    key: 'status',
+                    render: text => {
+                        return  <div>
+                                    {text=='0'&&<span>进行中</span>}
+                                    {text=='1'&&<span>未解决</span>}
+                                    {text=='1'&&<span>已解决</span>}
                                 </div>
-                    }
+
+                     }
+                },
+                {
+                    title: '创建时间',
+                    dataIndex: 'createTime',
+                    key: 'createTime'
+                },
+                {
+                    title: '发布时间',
+                    dataIndex: 'releaseDate',
+                    key: 'releaseDate'
                 }
             ],
             dataSource: [],
@@ -158,7 +173,7 @@ const DemandList = React.createClass({
         this.state.RowData = record;
         this.setState({
             showDesc: true,
-            examineState:true
+            examineState:false
         });
     },
     delectRow(recard) {
@@ -220,17 +235,10 @@ const DemandList = React.createClass({
         };
         const hasSelected = this.state.selectedRowKeys.length > 0;
         const { RangePicker } = DatePicker;
-        this.state.dataSource=[
-            {key:1,serialNumber:1,id:1,releaseStatus:'0'},
-            {key:2,serialNumber:2,id:24,releaseStatus:'1'},
-            {key:3,serialNumber:3,id:23,releaseStatus:'2'},
-            {key:4,serialNumber:4,id:22,releaseStatus:'3'},
-            {key:5,serialNumber:5,id:21,releaseStatus:'4'},
-        ]
         return (
             <div className="user-content" >
                 <div className="content-title">
-                    <span>需求发布审核</span>
+                    <span>科技需求库</span>
                 </div>
                 <div className="user-search">
                     <Input placeholder="需求名称"
@@ -276,16 +284,16 @@ const DemandList = React.createClass({
                             dataSource={this.state.dataSource}
                             rowSelection={rowSelection}
                             pagination={this.state.pagination}
-                             />
+                            onRowClick={this.tableRowClick} />
                     </Spin>
                 </div>
                 <TechDemandDesc
                     data={this.state.RowData}
-                    demandTypeOption={this.state.demandTypeOption}
                     examineState={this.state.examineState}
+                    demandTypeOption={this.state.demandTypeOption}
                     showDesc={this.state.showDesc}
                     closeDesc={this.closeDesc} />
-            </div >
+            </div>
         );
     }
 });

js/component/adminDemand/techDemand.less → js/component/administration/demand/techDemand.less


+ 224 - 0
js/component/administration/index/index.jsx

@@ -0,0 +1,224 @@
+import React from 'react';
+import { Spin, Button, Tabs, Table, message } from 'antd';
+import ajax from 'jquery/src/ajax/xhr.js'
+import $ from 'jquery/src/ajax';
+import './index.less';
+const TabPane = Tabs.TabPane;
+
+const MessageModal = React.createClass({
+    getInitialState() {
+        return {
+            visible: false,
+            loading: false,
+            pagination: {
+                defaultCurrent: 1,
+                defaultPageSize: 10,
+                showQuickJumper: true,
+                pageSize: 10,
+                onChange: function (page) {
+                    this.loadReaded(page);
+                }.bind(this),
+                showTotal: function (total) {
+                    return '共' + total + '条数据';
+                }
+            },
+            UnreadPagination: {
+                defaultCurrent: 1,
+                defaultPageSize: 10,
+                showQuickJumper: true,
+                pageSize: 10,
+                onChange: function (page) {
+                    this.loadUnread(page);
+                }.bind(this),
+                showTotal: function (total) {
+                    return '共' + total + '条数据';
+                }
+            },
+            columns: [
+                {
+                    title: '编号',
+                    dataIndex: 'key',
+                    key: 'key'
+                }, {
+                    title: '类型',
+                    dataIndex: 'noticeType',
+                    key: 'noticeType',
+                    render: (text, record) => {
+                       return(<span>{record.noticeTypeName}</span>)  
+                    }
+                }, {
+                    title: '时间',
+                    dataIndex: 'createTimeFormattedDate',
+                    key: 'createTimeFormattedDate'
+                }, {
+                    title: '内容',
+                    dataIndex: 'content',
+                    key: 'content',
+                }, {
+                    title: '公司',
+                    dataIndex: 'unitName',
+                    key: 'unitName',
+                }, {
+                    title: '业务员',
+                    dataIndex: 'principle',
+                    key: 'principle',
+                }
+            ],
+            data: []
+        };
+    },
+    loadReaded(pageNo) {
+        this.state.data = [];
+        this.setState({
+            loading: true
+        });
+        $.ajax({
+            method: "get",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + "/api/admin/notice/readed1",
+            data: {
+                pageNo: pageNo || 1,
+                pageSize: this.state.pagination.pageSize,
+            }
+        }).done((data) => {
+            if (!data.data) {
+                if (data.error && data.error.length) {
+                    message.warning(data.error[0].message);
+                    return;
+                };
+            };
+            this.state.data = [];
+            for (let i = 0; i < data.data.list.length; i++) {
+                let thisdata = data.data.list[i];
+                this.state.data.push({
+                    key: i + 1,
+                    id: thisdata.id,
+                    rid: thisdata.rid,
+                    uid: thisdata.uid,
+                    aid: thisdata.aid,
+                    noticeType: thisdata.noticeType,
+                    year: thisdata.year,
+                    noticeTypeName: thisdata.noticeTypeName,
+                    content: thisdata.content,
+                    createTime: thisdata.createTime,
+                    createTimeFormattedDate: thisdata.createTimeFormattedDate,
+                    principle: thisdata.principle,
+                    unitName: thisdata.unitName
+                });
+            };
+            this.state.pagination.current = data.data.pageNo;
+            this.state.pagination.total = data.data.totalCount;
+            this.setState({
+                dataSource: this.state.data,
+                pagination: this.state.pagination
+            });
+        }).always(function () {
+            this.setState({
+                loading: false
+            });
+        }.bind(this));
+    },
+    loadUnread(pageNo) {
+        this.state.data = [];
+        this.setState({
+            loading: true
+        });
+        $.ajax({
+            method: "get",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + "/api/admin/notice/unread2",
+            data: {
+                pageNo: pageNo || 1,
+                pageSize: this.state.UnreadPagination.pageSize,
+            }
+        }).done((data) => {
+            if (!data.data) {
+                if (data.error && data.error.length) {
+                    message.warning(data.error[0].message);
+                    return;
+                };
+            };
+            this.state.data = [];
+            for (let i = 0; i < data.data.list.length; i++) {
+                let thisdata = data.data.list[i];
+                this.state.data.push({
+                    key: i + 1,
+                    id: thisdata.id,
+                    rid: thisdata.rid,
+                    uid: thisdata.uid,
+                    aid: thisdata.aid,
+                    noticeType: thisdata.noticeType,
+                    year: thisdata.year,
+                    noticeTypeName: thisdata.noticeTypeName,
+                    content: thisdata.content,
+                    createTime: thisdata.createTime,
+                    createTimeFormattedDate: thisdata.createTimeFormattedDate,
+                    principle: thisdata.principle,
+                    unitName: thisdata.unitName
+                });
+            };
+            this.state.UnreadPagination.current = data.data.pageNo;
+            this.state.UnreadPagination.total = data.data.totalCount;
+            this.setState({
+                unreadData: this.state.data,
+                UnreadPagination: this.state.UnreadPagination
+            });
+        }).always(function () {
+            this.setState({
+                loading: false
+            });
+        }.bind(this));
+    },
+    componentWillMount() {
+        this.loadReaded();
+        this.loadUnread();
+    },
+    render() {
+        return (
+            <div className="set-content">
+                <div className="set-title">
+                    <span>消息中心</span>
+                </div>
+                <Spin spinning={this.state.loading} className='spin-box'>
+                    <Tabs defaultActiveKey="1">
+                        <Tabs.TabPane tab="新信息" key="1">
+                            <Table columns={this.state.columns}
+                                dataSource={this.state.unreadData}
+                                pagination={this.state.UnreadPagination} />
+                        </Tabs.TabPane>
+                        <Tabs.TabPane tab="已读信息" key="2">
+                            <Table columns={this.state.columns}
+                                dataSource={this.state.dataSource}
+                                pagination={this.state.pagination} />
+                        </Tabs.TabPane>
+                    </Tabs>
+                </Spin>
+            </div>
+        );
+    }
+});
+
+const Index = React.createClass({
+    getInitialState() {
+        return {
+            loading: false
+        };
+    },
+    render() {
+        return (
+            <div className="manage-content">
+                <div>
+                    <Spin spinning={this.state.loading} className='spin-box'>
+                        <div className="index-content">
+                            <MessageModal />
+                        </div>
+                    </Spin>
+                </div>
+            </div>
+        )
+    }
+});
+
+export default Index;

+ 17 - 0
js/component/administration/index/index.less

@@ -0,0 +1,17 @@
+.set-content {
+    background: #fff;
+    padding: 20px;
+    .set-title {
+        >span {
+            font-size: 16px;
+            color: #333;
+        }
+        >button {
+            float: right;
+            margin-right: 20px;
+        }
+    }
+    .member-table {
+        margin-top: 20px;
+    }
+}

+ 3 - 2
js/component/tools.js

@@ -562,10 +562,11 @@ module.exports = {
     },
     //获取需求类型
     getDemandType: function (e) {
-        if (e) {
+        if (e||e==0) {
+            let str=e.toString()
             let theType = '';
             demandTypeList.map(function (item) {
-                if (item.value == e) {
+                if (item.value == str) {
                     theType = item.key;
                 };
             });