liting2017 6 years ago
parent
commit
83ebdeb7ab

+ 71 - 0
js/component/administration/news/newDesc.jsx

@@ -0,0 +1,71 @@
+import React from 'react';
+import { Modal } from 'antd';
+import NewForm from '@/administration/news/newForm';
+import NewDetaiel from '@/administration/news/newDetails';
+
+class DemandDesc extends React.Component {
+	constructor(props) {
+		super(props);
+		this.state = {
+			loading: false,
+			pictureUrl: [],
+			showState:false
+		};
+	}
+	handleCancel() {
+		this.setState({
+			visible: false,
+		});
+		this.props.closeDesc(false, false);
+	}
+	handOk() {
+		this.setState({
+			visible: false,
+		});
+		this.props.closeDesc(false, true);
+	}
+	componentWillReceiveProps(nextProps) {
+		this.state.visible = nextProps.showDesc;
+	}
+	render() {
+		let data = this.props.data || [];
+		return (
+			<div className="patent-desc">
+				<Modal
+					maskClosable={false}
+					visible={this.state.visible}
+					onOk={this.handOk.bind(this)}
+					onCancel={this.handleCancel.bind(this)}
+					width="1000px"
+					title={!data.id ? '新建新闻' : '新闻详情'}
+					footer=""
+					className="admin-desc-content"
+				>
+					<div>
+						<div>
+								{data.auditStatus=='1'||data.auditStatus=='2'?
+									<NewDetaiel
+									closeDesc={this.handleCancel.bind(this)}
+									data={this.props.data}
+									demandTypeOption={this.props.demandTypeOption}
+									visible={this.state.visible}
+									handOk={this.handOk.bind(this)}
+									/>
+									:
+									<NewForm 
+										closeDesc={this.handleCancel.bind(this)}
+										data={this.props.data}
+										demandTypeOption={this.props.demandTypeOption}
+										visible={this.state.visible}
+										handOk={this.handOk.bind(this)}
+										/>
+								} 
+						</div>
+					</div>
+				</Modal>
+			</div>
+		);
+	}
+}
+
+export default DemandDesc;

+ 234 - 0
js/component/administration/news/newDetails.jsx

@@ -0,0 +1,234 @@
+import React from 'react';
+import $ from 'jquery/src/ajax';
+import {
+	Modal,
+	message,
+	Spin,
+	Upload,
+	Button,
+	Form,
+} from 'antd';
+import {getProvince} from '@/NewDicProvinceList';
+import {getReleaseStateList,getNewPosition} from '@/tools';
+const NewDetail = 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/achievement/achievementDetail' ,
+            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 publishPagesArr = [];
+                    thisData.publishPages.map(item=>{
+					publishPagesArr.push(item.publishPage)
+                });
+                let ProvinceS = thisData.locationProvince, //getprovince
+				    citys = thisData.locationCity,
+				    Areas = thisData.locationArea,
+				    ProvinceCity = getProvince(ProvinceS, citys, Areas);
+                this.setState({
+                    id:thisData.id,
+                    publishPagesArr:publishPagesArr,
+                    data: thisData,
+                    ProvinceCity:ProvinceCity,
+                    auditStatus:thisData.auditStatus,
+                    pictureUrl: thisData.technicalPictureUrl ? splitUrl(thisData.technicalPictureUrl, ',', globalConfig.avatarHost + '/upload') : []
+                });
+            }.bind(this),
+        }).always(function () {
+            this.setState({
+                loading: false
+            });
+        }.bind(this));
+    },
+   
+	cancelFun(){
+		this.props.closeDesc();
+    },
+    //刷新发布
+    updateFun(inex){
+        this.setState({
+            loading:true
+        })
+        $.ajax({
+            method: "POST",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context +'/api/user/achievement/refreshPublish',
+            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));
+    },
+    //撤销发布
+    revokeFun(){
+        this.setState({
+            loading:true
+        })
+        $.ajax({
+            method: "POST",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context +  '/api/user/achievement/offShelf',
+            data: {
+                id: this.state.id,
+            }
+        }).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() {
+        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.pictureUrl = [];
+            };
+            this.props.form.resetFields();
+        };
+    },
+    render() {
+        const theData = this.state.data || {};
+        const FormItem = Form.Item
+        const formItemLayout = {
+            labelCol: { span: 6 },
+            wrapperCol: { span: 12 },
+        };
+        return (
+			<div className='login'>
+			<Form layout="horizontal" id="demand-form">
+				<Spin spinning={this.state.loading}>
+					<div className="clearfix">
+                        <FormItem className="half-item" {...formItemLayout} label="新闻标题">
+							<span>{theData.name}</span>
+						</FormItem>
+						<FormItem className="half-item" {...formItemLayout} label="热门">
+							<span>{theData.isHot=='0'&&'否'}{theData.isHot=='1'&&'是'}</span>
+						</FormItem>
+						<FormItem className="half-item" {...formItemLayout} label="新闻来源">
+							<span>{theData.patentCase}</span>
+						</FormItem>
+						<FormItem className="half-item" {...formItemLayout} label="来源链接">
+							<span>{theData.parameter}</span>
+						</FormItem>
+                        <FormItem className="half-item" {...formItemLayout} label="省市区">
+							<span>{this.state.ProvinceCity}</span>
+						</FormItem>
+					</div>
+                    <FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 18 }} label="新闻图片">
+                        <div className="clearfix">
+                                <Upload className="demandDetailShow-upload"
+                                    listType="picture-card"
+                                    fileList={this.state.pictureUrl}                               
+                                    onPreview={(file) => {
+                                        this.setState({
+                                            previewImage: file.url || file.thumbUrl,
+                                            previewVisible: true,
+                                        });
+                                    }} >
+                                </Upload>
+                                <Modal maskClosable={false} footer={null}
+                                    visible={this.state.previewVisible}
+                                    onCancel={() => { this.setState({ previewVisible: false }) }}>
+                                    <img alt="" style={{ width: '100%' }} src={this.state.previewImage || ''} />
+                                </Modal>
+                            </div> 
+					</FormItem>
+                    <div className="clearfix">
+						<FormItem className="half-item" {...formItemLayout} label="发布状态">
+							<span>{getReleaseStateList(theData.auditStatus)}</span>
+						</FormItem>
+                       
+                        <FormItem className="half-item" {...formItemLayout} label="发布时间">
+                            <span>{theData.createTime}</span>
+                        </FormItem>
+					</div>
+                    <div className="clearfix">
+                        <FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 18 }} label="发布位置">
+                                <span>{getNewPosition(theData.publishPages)}</span>
+						</FormItem>
+                    </div>
+                    <div className="clearfix">
+						<FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 18 }} label="新闻简介">
+							<span>{theData.introduce}</span>
+						</FormItem>
+                        <FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 18 }} label="新闻正文">
+							<span>{theData.edit}</span>
+						</FormItem>
+					</div>
+					<div className="clearfix">
+						{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.revokeFun()}}>
+								撤销发布
+							</Button>
+							<Button className="set-submit" type="ghost" onClick={this.cancelFun}>
+								取消
+							</Button>
+						</FormItem>}
+					</div>
+				</Spin>
+			</Form>    
+		</div>
+        )
+    }
+}));
+export default NewDetail;
+
+
+
+

+ 384 - 0
js/component/administration/news/newForm.jsx

@@ -0,0 +1,384 @@
+import React from 'react';
+import $ from 'jquery/src/ajax';
+import {
+	Icon,
+	Modal,
+	message,
+	Spin,
+	Upload,
+	Input,
+	Button,
+	Radio,
+	Form,
+	Checkbox,
+	Cascader,
+    Row,
+    Col
+} from 'antd';
+import {  splitUrl} from '@/tools.js';
+import {areaSelect } from '@/NewDicProvinceList';
+import Editors from '@/richTextEditors';
+
+const PicturesWall = React.createClass({
+	getInitialState() {
+		return {
+			previewVisible: false,
+			previewImage: '',
+			fileList: [],
+			tags: []
+		};
+	},
+	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'}}
+					listType="picture-card"
+					fileList={fileList}
+					onPreview={this.handlePreview}
+					onChange={this.handleChange}
+				>
+					{fileList.length >= 3 ? null : uploadButton}
+				</Upload>
+				<Modal maskClosable={false} visible={previewVisible} footer={null} onCancel={this.handleCancel}>
+					<img alt="example" style={{ width: '100%' }} src={previewImage} />
+				</Modal>
+			</div>
+		);
+	}
+});
+ 
+const NewDetailForm = Form.create()(React.createClass({
+    getInitialState() {
+        return {
+            visible: false,
+            loading: false,
+            auditStatus: 0,
+            textFileList: [],
+            videoFileList: [],
+			pictureUrl: [],
+			tags:[]
+        };
+    },
+    loadData(id) {
+        this.setState({
+            loading: true
+        });
+        $.ajax({
+            method: "get",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context +  '/api/user/achievement/achievementDetail' ,
+            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 = {};
+				};
+                this.setState({
+					id:thisData.id,
+					data: thisData,
+					publishPages:thisData.publishPages.length?thisData.publishPages:['app_achievement_list','web_achievement_list'],
+					auditStatus:thisData.auditStatus,
+                    pictureUrl: thisData.technicalPictureUrl ? splitUrl(thisData.technicalPictureUrl, ',', globalConfig.avatarHost + '/upload') : []
+                });
+            }.bind(this),
+        }).always(function () {
+            this.setState({
+                loading: false
+            });
+        }.bind(this));
+    },
+    getPictureUrl(e) {
+        this.setState({ pictureUrl: e });
+    },
+    handleSubmit(e,index) {
+		e.preventDefault();
+		console.log(this.state.edit)
+        this.props.form.validateFields((err, 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",
+					async:true,
+                    url: this.props.data.id ? globalConfig.context + '/api/user/achievement/update' : globalConfig.context + '/api/user/achievement/apply',
+                    data: {
+                        id: this.props.data.id,
+						name: values.name,
+                        fieldA: values.industryCategory ? values.industryCategory[0] : undefined,
+                        fieldB: values.industryCategory ? values.industryCategory[1] : undefined,
+                        dataCategory: values.dataCategory,
+                        category: values.category,
+                        technicalPictureUrl: thePictureUrl,
+						introduction:values.introduction,
+						maturity:values.maturity,
+						innovation:values.innovation,
+						transferMode:values.transferMode,
+						auditStatus:index,
+                        patentCase: values.patentCase,
+						teamDes: values.teamDes,
+						parameter: values.parameter,
+						boutique: values.boutique,
+						isHot:values.isHot,
+						publishPages:values.publishPages,
+                    }
+                }).done(function (data) {
+                    this.setState({
+                        loading: false
+					});
+
+                    if (!data.error.length) {
+                        message.success('操作成功!');
+                        this.setState({
+                            visible: false
+                        });
+                        this.props.handOk();
+                    } else {
+                        message.warning(data.error[0].message);
+                    }
+                }.bind(this));
+            }
+        });
+	},
+	submission(e,index){
+		this.handleSubmit(e,index);
+		$.ajax({
+            method: "POST",
+            dataType: "json",
+			crossDomain: false,
+			async:true,
+            url: globalConfig.context + "/api/user/achievement/commit",
+            data: {
+				id: this.state.id,
+            }
+        }).done(function (data) {
+            if (!data.error.length) {
+                this.setState({
+                    loading: false,
+                });
+            } 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 = {};
+			this.state.tags = [];
+			this.setState({
+				publishPages:['app_achievement_list','web_achievement_list']
+			})
+        };
+    },
+    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.pictureUrl = [];
+				this.state.theData={};
+				this.setState({
+					publishPages:['app_achievement_list','web_achievement_list']
+				})
+            };
+			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 },
+		};
+		this.state.edit ={};
+        return (
+			<div className='login'>
+			<Form layout="horizontal" onSubmit={(e)=>{this.handleSubmit(e,0)}} id="demand-form">
+				<Spin spinning={this.state.loading}>
+					<div className="clearfix">
+						<FormItem className="half-item" {...formItemLayout} label="标题">
+							{getFieldDecorator('name', {
+								rules: [ { required: true, message: '此项为必填项!' } ],
+								initialValue: theData.name
+							})(<Input placeholder="请输入您的新闻标题" />)}
+						</FormItem>
+					</div>
+					<div className="clearfix">
+					    <FormItem className="half-item" {...formItemLayout} label="热门">
+							{getFieldDecorator('hot', {
+								rules: [ { required: true, message: '此项为必填项!' } ],
+								initialValue: theData.hot
+							})(
+								<Radio.Group>
+									<Radio value={0}>否</Radio>
+									<Radio value={1}>是</Radio>
+								</Radio.Group>
+							)}
+						</FormItem>
+						<FormItem className="half-item" {...formItemLayout} label="新闻来源">
+							{getFieldDecorator('name', {
+								rules: [ { required: true, message: '此项为必填项!' } ],
+								initialValue: theData.name
+							})(<Input placeholder="请输入新闻来源" />)}
+						</FormItem>
+						<FormItem className="half-item" {...formItemLayout} label="来源链接">
+							{getFieldDecorator('url', {
+								initialValue: theData.url
+							})(<Input placeholder="请输入新闻来源链接" />)}
+						</FormItem>
+						<FormItem className="half-item" 
+							{...formItemLayout}
+							label="省-市-区"
+							> 
+							{getFieldDecorator('ProvinceCity', {
+								rules: [ { required: true, message: '此项为必填项!' } ],
+								initialValue: theData.ProvinceCity
+							})(
+							 <Cascader options={areaSelect()}   placeholder="选择城市" />
+							 )}
+						</FormItem>
+					</div>
+					<div className="clearfix">
+						<FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 18 }} label="新闻图片">
+							<PicturesWall
+								fileList={this.getPictureUrl}
+								pictureUrl={this.state.pictureUrl}
+								visible={this.props.visible}
+							/>
+						</FormItem>
+					</div>
+					<div className="clearfix">
+						<FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 18 }} label="新闻简介">
+							{getFieldDecorator('introduction', {
+								rules: [ { required: true, message: '此项为必填项!' } ],
+								initialValue: theData.introduction
+							})(<Input type="textarea" rows={4} placeholder="输入新闻简介" />)}
+						</FormItem>
+					</div>
+					<div className="clearfix">
+						<FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 18 }} label={<span><i style={{color:"red",fontSize:14}}> * </i>新闻正文</span>}>
+							<Editors textContent={this.state.edit.content}
+								uploadUrl={'/api/admin/news/upload'}
+								uploadSign={'news_content_picture'}
+								handleRichText={(value) => { this.state.edit.content = value; }}
+								visible={this.state.visible} />
+						</FormItem>
+					</div>
+					
+					{theData.auditInfo&&<div className="clearfix">
+						<FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 18 }} label="审核信息">
+							<span>{theData.auditInfo}</span>
+						</FormItem>
+					</div>}
+					{theData.createTime&&<div className="clearfix">
+						<FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 18 }} label="发布时间">
+							<span>{theData.createTime}</span>
+						</FormItem>
+					</div>}
+					<div className="clearfix">
+						<FormItem className="full-item" 
+							labelCol={{ span: 3 }}
+							wrapperCol={{ span: 18 }} label="发布位置">
+							{getFieldDecorator('publishPages', {
+								rules: [ { required: false } ],
+								initialValue: this.state.publishPages
+							})(
+								<Checkbox.Group>
+									<Row>
+										<Col span={6}><Checkbox value="web_index">网站新闻首页</Checkbox></Col>
+										<Col span={6}><Checkbox value="web_achievement_main">网站科技服务主页</Checkbox></Col>
+										<Col span={6}><Checkbox value="web_achievement_list" disabled>app政策主页</Checkbox></Col>
+										<Col span={6}><Checkbox value="app_index">APP科技服务首页</Checkbox></Col>
+									</Row>
+								</Checkbox.Group>
+							)}
+						</FormItem>
+					</div>
+					<div className="clearfix">
+						<FormItem wrapperCol={{ span: 12, offset: 3 }}>
+						{this.props.data&&!this.props.data.id&&<Button className="set-submit" type="primary" htmlType="submit">
+								保存草稿
+							</Button>}
+							<Button
+								className="set-submit"
+								type="ghost"
+								onClick={(e) => {
+									if(this.props.data.id){
+										this.submission(e,1)
+									}else{
+										this.handleSubmit(e,1)
+									}
+								}}
+							>
+								发布新闻
+							</Button>
+							<Button className="set-submit" type="ghost" onClick={this.cancelFun}>
+								取消
+							</Button>
+						</FormItem>
+					</div>
+				</Spin>
+			</Form>    
+		</div>
+        )
+    }
+}));
+export default NewDetailForm;
+
+
+
+

+ 9 - 0
js/component/administration/news/news.less

@@ -0,0 +1,9 @@
+
+#demand-form{
+    .quill {
+        .ql-editor{
+            height: 210px;
+        }
+    }
+    
+}

+ 337 - 0
js/component/administration/news/newsList.jsx

@@ -0,0 +1,337 @@
+import React from 'react';
+import { Icon, Button, Input, Select, Spin, Table, Switch, message, DatePicker } from 'antd';
+import $ from 'jquery/src/ajax';
+import moment from 'moment';
+import '@/account/demand/techDemand.less';
+import NewDesc from '@/administration/news/newDesc';
+import '@/administration/news/news.less';
+import {  } from '@/dataDic.js';
+import {getReleaseStateList, } from '@/tools.js';
+
+const DemandList = React.createClass({
+    loadData(pageNo) {
+        this.state.data = [];
+        this.setState({
+            page:pageNo,
+            loading: true
+        });
+        $.ajax({
+            method: "get",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + "/api/user/achievement/list",
+            data: {
+                pageNo: pageNo || 1,
+                pageSize: this.state.pagination.pageSize,
+                name: this.state.nameSearch, //需求名称
+                startDate: this.state.releaseDate[0],
+                endDate: this.state.releaseDate[1],
+                dataCategory:this.state.dataCategorySearch,
+                auditStatus:this.state.auditStatusSearch,
+            },
+            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,
+                            serialNumber: thisdata.serialNumber, //编号
+                            name: thisdata.name,
+                            dataCategory: thisdata.dataCategory,
+                            auditStatus: thisdata.auditStatus, //审核状态
+                            releaseDate:thisdata.releaseDate?(new Date(thisdata.releaseDate)).toLocaleString():''
+                        });
+                    };
+                };
+                this.state.pagination.current = data.data.pageNo;
+                this.state.pagination.total = data.data.totalCount;
+                if(data.data&&data.data.list&&!data.data.list.length){
+					this.state.pagination.current=0
+					this.state.pagination.total=0
+				};
+                this.setState({
+                    dataSource: theArr,
+                    pagination: this.state.pagination
+                });
+            }.bind(this),
+        }).always(function () {
+            this.setState({
+                loading: false
+            });
+        }.bind(this));
+    },
+    getInitialState() {
+        return {
+            searchMore: true,
+            validityPeriodDate: [],
+            releaseDate: [],
+            selectedRowKeys: [],
+            selectedRows: [],
+            loading: false,
+            pagination: {
+                defaultCurrent: 1,
+                defaultPageSize: 10,
+                showQuickJumper: true,
+                pageSize: 10,
+                onChange: function (page) {
+                    this.loadData(page);
+                }.bind(this),
+                showTotal: function (total) {
+                    return '共' + total + '条数据';
+                }
+            },
+            columns: [
+                {
+                    title: '编号',
+                    dataIndex: 'serialNumber',
+                    key: 'serialNumber',
+                }, {
+                    title: '新闻名称',
+                    dataIndex: 'name',
+                    key: 'name',
+                },  {
+                    title: '创建人',
+                    dataIndex: 'admin',
+                    key: 'admin'
+                },
+                {
+                    title: '发布状态',
+                    dataIndex: 'auditStatus',
+                    key: 'auditStatus',
+                    render: text => { return getReleaseStateList(text) }
+                },
+                {
+                    title: '来源',
+                    dataIndex: 'admins',
+                    key: 'admins'
+                },
+                {
+                    title: '发布时间',
+                    dataIndex: 'releaseDate',
+                    key: 'releaseDate'
+                },
+                {
+                    title: '操作',
+                    dataIndex: 'caozuo',
+                    key: 'caozuo',
+                    render:(text,recard) => {
+                        return  <div className="btnRight">
+                                   {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>
+                    }
+                }
+            ],
+            dataSource: [],
+            searchTime: [,]
+        };
+    },
+    //发布
+    submission(record){
+        this.setState({
+            showDesc:false,
+            loading:true
+        });
+        $.ajax({
+            method: "POST",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + "/api/user/achievement/commit",
+            data: {
+				id:record.id
+            }
+        }).done(function (data) {
+            if (!data.error.length) {
+                message.success('发布成功.');
+                this.setState({
+                    loading: false,
+                });
+                this.loadData(this.state.page)
+            } else {
+                message.warning(data.error[0].message);
+            };
+        }.bind(this));
+    },
+    //刷新发布
+    updateFun(recard){
+        this.setState({
+            loading:true
+        })
+        $.ajax({
+            method: "POST",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context +'/api/user/achievement/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/user/achievement/offShelf',
+            data: {
+                id: recard.id,
+            }
+        }).done(function (data) {
+            if (!data.error.length) {
+                message.success('撤销成功!');
+                this.setState({
+                    loading: false,
+                });
+                this.loadData(this.state.page);
+            } else {
+                message.warning(data.error[0].message);
+            };
+        }.bind(this));
+    },
+    componentWillMount() {
+        this.loadData();
+    },
+    tableRowClick(record, index) {
+        this.state.RowData = record;
+        this.setState({
+            showDesc: true
+        });
+    },
+    delectRow(recard) {
+        this.setState({
+            loading:true
+        })
+        $.ajax({
+            method: "POST",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + "/api/user/demand/delete",
+            data: {
+                ids: recard.id
+            }
+        }).done(function (data) {
+            if (!data.error.length) {
+                message.success('删除成功!');
+                this.setState({
+                    loading: false
+                });
+                this.loadData(this.state.page);
+            } else {
+                message.warning(data.error[0].message);
+            };
+        }.bind(this));
+    },
+    addClick() {
+        this.state.RowData = {};
+        this.setState({
+            showDesc: true
+        });
+    },
+    closeDesc(e, s) {
+        this.state.showDesc = e;
+        if (s) {
+            this.loadData(this.state.page);
+        };
+    },
+    search() {
+        this.loadData();
+    },
+    reset() {
+        this.state.nameSearch = '';
+        this.state.releaseDate = [];
+        this.state.dataCategorySearch = undefined;
+        this.state.auditStatusSearch = undefined;
+        this.loadData();
+    },
+    searchSwitch() {
+        this.setState({
+            searchMore: !this.state.searchMore
+        });
+    },
+    render() {
+        const rowSelection = {
+            selectedRowKeys: this.state.selectedRowKeys,
+            onChange: (selectedRowKeys, selectedRows) => {
+                this.setState({
+                    selectedRows: selectedRows.slice(-1),
+                    selectedRowKeys: selectedRowKeys.slice(-1)
+                });
+            }
+        };
+        const { RangePicker } = DatePicker;
+        this.state.dataSource = [{key:1,id:1,auditStatus:0},{key:2,id:1,auditStatus:1},{key:3,id:1,auditStatus:2},{key:4,id:1,auditStatus:3}]
+        return (
+            <div className="user-content" >
+                <div className="content-title">
+                    <span>新闻管理</span>
+                    <div className="patent-addNew">
+                        <Button type="primary" onClick={this.addClick}>发布新闻<Icon type="plus" /></Button>
+                    </div>
+                </div>
+                <div className="user-search">
+                    <Input placeholder="新闻名称"
+                        value={this.state.nameSearch}
+                        onChange={(e) => { this.setState({ nameSearch: e.target.value }); }} />
+                    <Select placeholder="发布状态" style={{ width: 120 }}
+                        value={this.state.auditStatusSearch}
+                        onChange={(e) => { this.setState({ auditStatusSearch: 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>
+                    <Button type="primary" onClick={this.search}>搜索</Button>
+                    <Button onClick={this.reset}>重置</Button>
+                    <span>更多搜索<Switch defaultChecked={false} onChange={this.searchSwitch} /></span>
+                    <div className="search-more" style={this.state.searchMore ? { display: 'none' } : {}}>
+                        <span>发布时间 :</span>
+                        <RangePicker
+                            value={[this.state.releaseDate[0] ? moment(this.state.releaseDate[0]) : null,
+                            this.state.releaseDate[1] ? moment(this.state.releaseDate[1]) : null]}
+                            onChange={(data, dataString) => { this.setState({ releaseDate: dataString }); }} />
+                    </div>
+                </div>
+                <div className="patent-table">
+                    <Spin spinning={this.state.loading}>
+                        <Table columns={this.state.columns}
+                            dataSource={this.state.dataSource}
+                            rowSelection={rowSelection}
+                            pagination={this.state.pagination}
+                            onRowClick={this.tableRowClick} />
+                    </Spin>
+                </div>
+                <NewDesc
+                    data={this.state.RowData}
+                    demandTypeOption={this.state.demandTypeOption}
+                    showDesc={this.state.showDesc}
+                    closeDesc={this.closeDesc} />
+            </div >
+        );
+    }
+});
+
+export default DemandList;

+ 13 - 0
js/component/administration/policy/policyList.jsx

@@ -0,0 +1,13 @@
+import React,{Component} from 'react';
+
+class Policy extends Component {
+    constructor(props) {
+        super(props);
+        this.state = {  }
+    }
+    render() { 
+        return ( <div>政策</div> )
+    }
+}
+ 
+export default Policy;

+ 84 - 0
js/component/axios/axios.js

@@ -0,0 +1,84 @@
+// 配置API接口地址
+var root =`http:${globalConfig.context}`;
+root=''
+// 引用axios
+var axios = require('axios')
+// 自定义判断元素类型JS
+function toType(obj) {
+  return ({}).toString.call(obj).match(/\s([a-zA-Z]+)/)[1].toLowerCase()
+}
+// 参数过滤函数
+function filterNull(o) {
+  for (var key in o) {
+    if (o[key] === null) {
+      delete o[key]
+    }
+    if (toType(o[key]) === 'string') {
+      o[key] = o[key].trim()
+    } else if (toType(o[key]) === 'object') {
+      o[key] = filterNull(o[key])
+    } else if (toType(o[key]) === 'array') {
+      o[key] = filterNull(o[key])
+    }
+  }
+  return o
+}
+/*
+  接口处理函数
+  这个函数每个项目都是不一样的,我现在调整的是适用于
+  https://cnodejs.org/api/v1 的接口,如果是其他接口
+  需要根据接口的参数进行调整。参考说明文档地址:
+  https://cnodejs.org/topic/5378720ed6e2d16149fa16bd
+  主要是,不同的接口的成功标识和失败提示是不一致的。
+  另外,不同的项目的处理方法也是不一致的,这里出错就是简单的alert
+*/
+
+function apiAxios(method, url, params, success, failure) {
+  if (params) {
+    params = filterNull(params)
+  }
+  axios({
+      method: method,
+      url: url,
+      data: method === 'POST' || method === 'PUT' ? params : null,
+      params: method === 'GET' || method === 'DELETE' ? params : null,
+      baseURL: root,
+      withCredentials: false
+    })
+    .then(function (res) {
+      console.log(res)
+      if (res.data.success === true) {
+        if (success) {
+          success(res.data)
+        }
+      } else {
+        if (failure) {
+          failure(res.data)
+        } else {
+          return JSON.stringify(res.data)
+        }
+      }
+    })
+    .catch(function (err) {
+      let res = err.response
+      if (err) {
+       console.log('api error, HTTP CODE: ' + res.status)
+      }
+    })
+}
+
+// 返回在vue模板中的调用接口
+module.exports= {
+  get: function (url, params, success, failure) {
+    return apiAxios('GET', url, params, success, failure)
+  },
+  post: function (url, params, success, failure) {
+    return apiAxios('POST', url, params, success, failure)
+  },
+  put: function (url, params, success, failure) {
+    return apiAxios('PUT', url, params, success, failure)
+  },
+  delete: function (url, params, success, failure) {
+    return apiAxios('DELETE', url, params, success, failure)
+  }
+}

+ 119 - 0
js/component/richTextEditors.jsx

@@ -0,0 +1,119 @@
+import React from 'react';
+import theme from 'react-quill/dist/quill.snow.css';
+import { message } from 'antd';
+import ReactQuill from 'react-quill';
+
+import ajax from 'jquery/src/ajax/xhr.js';
+import $ from 'jquery/src/ajax';
+
+var RichTextUploadUrl, RichTextUploadSign;
+function uploadImg(s) {
+    let myform = new FormData(), file = document.getElementById("fileToUpload").files[0];
+    if (!file) {
+        return;
+    };
+    myform.append('file', file);
+    myform.append('sign', RichTextUploadSign);
+    $.ajax({
+        method: "post",
+        dataType: "json",
+        url: location.origin + RichTextUploadUrl,
+        data: myform,
+        contentType: false,
+        processData: false,
+        success: function (data) {
+            if (data.error && data.error.length) {
+                message.warning(data.error[0].message);
+            } else {
+                const cursorPosition = s.quill.getSelection().index
+                s.quill.insertEmbed(cursorPosition, 'image', globalConfig.avatarHost + '/upload' + data.data)
+                s.quill.setSelection(cursorPosition + 1)
+            };
+        }
+    })
+}
+function fileSelect() {
+    let uploader = document.getElementById("fileToUpload");
+    if (!uploader.onchange) {
+        uploader.onchange = () => {
+            uploadImg(this)
+        }
+    }
+    uploader.click();
+}
+
+const Editors = React.createClass({
+    getInitialState() {
+        return {
+            value: null,
+            theBool: true
+        }
+    },
+    handleRichText(value) {
+        this.setState({ value: value });
+        this.props.handleRichText(value);
+    },
+    componentWillMount() {
+        RichTextUploadUrl = this.props.uploadUrl;
+        RichTextUploadSign = this.props.uploadSign;
+    },
+    componentWillReceiveProps(nextProps) {
+        if (this.state.theBool && nextProps.textContent) {
+            this.state.value = nextProps.textContent;
+            this.state.theBool = false;
+        }
+        if (this.props.visible && !nextProps.visible) {
+            this.state.theBool = true;
+            this.state.value = '';
+        }
+    },
+    render() {
+        const modules = {
+            toolbar: {
+                container: [
+                    [{ 'size': ['small', false, 'large', 'huge'] }],  // custom dropdown
+                    [{ 'header': [1, 2, 3, false] }],
+
+                    ['bold', 'italic', 'underline', 'strike', 'blockquote'],        // toggled buttons
+
+                    //  [{ 'header': 1 }, { 'header': 2 }],               // custom button values
+                    [{ 'list': 'ordered' }, { 'list': 'bullet' }],
+                    //  [{ 'script': 'sub' }, { 'script': 'super' }],      // superscript/subscript
+                    [{ 'indent': '-1' }, { 'indent': '+1' }],          // outdent/indent
+                    //  [{ 'direction': 'rtl' }],                         // text direction
+
+                    [{ 'color': [] }, { 'background': [] }],          // dropdown with defaults from theme
+                    //  [{ 'font': [] }],
+                    [{ 'align': [] }],
+                    ['link', 'image'],
+                    ['clean']
+                ],
+                handlers: { 'image': fileSelect }
+            }
+        };
+        const formats = [
+            'size', 'header',
+            'bold', 'italic', 'underline', 'strike', 'blockquote',
+            'list', 'bullet', 'indent',
+            'color', 'background',
+            'align',
+            'link', 'image'
+        ];
+        return (
+            <div>
+                <ReactQuill theme="snow"
+                    value={this.state.value}
+                    modules={modules}
+                    formats={formats}
+                    onChange={this.handleRichText} />
+                <input type="file"
+                    name="fileToUpload"
+                    id="fileToUpload"
+                    placeholder='正文'
+                    style={{ "display": "none" }} />
+            </div>
+        )
+    },
+});
+
+export default Editors;