|
@@ -16,7 +16,7 @@ import {
|
|
|
Col
|
|
|
} from 'antd';
|
|
|
import { splitUrl} from '@/tools.js';
|
|
|
-import {areaSelect } from '@/NewDicProvinceList';
|
|
|
+import {provinceSelect } from '@/NewDicProvinceList';
|
|
|
import Editors from '@/richTextEditors';
|
|
|
|
|
|
const PicturesWall = React.createClass({
|
|
@@ -82,7 +82,8 @@ const NewDetailForm = Form.create()(React.createClass({
|
|
|
textFileList: [],
|
|
|
videoFileList: [],
|
|
|
pictureUrl: [],
|
|
|
- tags:[]
|
|
|
+ tags:[],
|
|
|
+ edit:{}
|
|
|
};
|
|
|
},
|
|
|
loadData(id) {
|
|
@@ -93,24 +94,32 @@ const NewDetailForm = Form.create()(React.createClass({
|
|
|
method: "get",
|
|
|
dataType: "json",
|
|
|
crossDomain: false,
|
|
|
- url: globalConfig.context + '/api/user/achievement/achievementDetail' ,
|
|
|
+ url: globalConfig.context + '/api/admin/news/detail' ,
|
|
|
data: {
|
|
|
id: id
|
|
|
},
|
|
|
success: function (data) {
|
|
|
- let thisData = data.data;
|
|
|
+ let thisData = data.data,provice=[];
|
|
|
if (!thisData) {
|
|
|
if (data.error && data.error.length) {
|
|
|
message.warning(data.error[0].message);
|
|
|
};
|
|
|
thisData = {};
|
|
|
};
|
|
|
+ let publishPagesArr = [];
|
|
|
+ let pageList = thisData.newsPublishs
|
|
|
+ pageList.map(item=>{
|
|
|
+ publishPagesArr.push(item.publishPage)
|
|
|
+ });
|
|
|
+ provice.push(thisData.provinceId);
|
|
|
this.setState({
|
|
|
id:thisData.id,
|
|
|
data: thisData,
|
|
|
- publishPages:thisData.publishPages.length?thisData.publishPages:['app_achievement_list','web_achievement_list'],
|
|
|
+ Province:provice,
|
|
|
+ publishPages:publishPagesArr,
|
|
|
auditStatus:thisData.auditStatus,
|
|
|
- pictureUrl: thisData.technicalPictureUrl ? splitUrl(thisData.technicalPictureUrl, ',', globalConfig.avatarHost + '/upload') : []
|
|
|
+ edit:{content:thisData.content},
|
|
|
+ pictureUrl: thisData.titleImg ? splitUrl(thisData.titleImg, ',', globalConfig.avatarHost + '/upload') : []
|
|
|
});
|
|
|
}.bind(this),
|
|
|
}).always(function () {
|
|
@@ -124,6 +133,10 @@ const NewDetailForm = Form.create()(React.createClass({
|
|
|
},
|
|
|
handleSubmit(e,index) {
|
|
|
e.preventDefault();
|
|
|
+ if((this.state.edit).content==undefined){
|
|
|
+ message.warning('请填写新闻正文');
|
|
|
+ return false;
|
|
|
+ }
|
|
|
this.props.form.validateFields((err, values) => {
|
|
|
//url转化
|
|
|
let thePictureUrl = [];
|
|
@@ -137,6 +150,7 @@ const NewDetailForm = Form.create()(React.createClass({
|
|
|
thePictureUrl = picArr.join(",");
|
|
|
};
|
|
|
if (!err) {
|
|
|
+ let publishPages =(values.publishPages).join(',')
|
|
|
this.setState({
|
|
|
loading: true
|
|
|
});
|
|
@@ -144,26 +158,21 @@ const NewDetailForm = Form.create()(React.createClass({
|
|
|
method: "post",
|
|
|
dataType: "json",
|
|
|
async:true,
|
|
|
- url: this.props.data.id ? globalConfig.context + '/api/user/achievement/update' : globalConfig.context + '/api/user/achievement/apply',
|
|
|
+ url: this.props.data.id ? globalConfig.context + '/api/admin/news/updateNews' : globalConfig.context + '/api/admin/news/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,
|
|
|
+ id: this.props.data.id,
|
|
|
+ type:0,
|
|
|
+ title: values.title,
|
|
|
+ author: values.author,
|
|
|
+ titleImg: thePictureUrl,
|
|
|
+ content:this.state.edit.content,
|
|
|
+ hot:values.hot,
|
|
|
+ source:values.source,
|
|
|
+ sourceUrl:values.sourceUrl,
|
|
|
auditStatus:index,
|
|
|
- patentCase: values.patentCase,
|
|
|
- teamDes: values.teamDes,
|
|
|
- parameter: values.parameter,
|
|
|
- boutique: values.boutique,
|
|
|
- isHot:values.isHot,
|
|
|
- publishPages:values.publishPages,
|
|
|
+ summary: values.summary,
|
|
|
+ provinceId: (values.ProvinceCity)[0],
|
|
|
+ publishPages:publishPages
|
|
|
}
|
|
|
}).done(function (data) {
|
|
|
this.setState({
|
|
@@ -183,27 +192,6 @@ const NewDetailForm = Form.create()(React.createClass({
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
- 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();
|
|
|
},
|
|
@@ -212,9 +200,10 @@ const NewDetailForm = Form.create()(React.createClass({
|
|
|
this.loadData(this.props.data.id);
|
|
|
} else {
|
|
|
this.state.data = {};
|
|
|
- this.state.tags = [];
|
|
|
+ this.state.edit={};
|
|
|
+ this.state.pictureUrl = [];
|
|
|
this.setState({
|
|
|
- publishPages:['app_achievement_list','web_achievement_list']
|
|
|
+ publishPages:['web_index','app_policy_index']
|
|
|
})
|
|
|
};
|
|
|
},
|
|
@@ -226,10 +215,11 @@ const NewDetailForm = Form.create()(React.createClass({
|
|
|
this.loadData(nextProps.data.id);
|
|
|
} else {
|
|
|
this.state.data = {};
|
|
|
+ this.state.edit={};
|
|
|
this.state.pictureUrl = [];
|
|
|
this.state.theData={};
|
|
|
this.setState({
|
|
|
- publishPages:['app_achievement_list','web_achievement_list']
|
|
|
+ publishPages:['web_index','app_policy_index']
|
|
|
})
|
|
|
};
|
|
|
this.props.form.resetFields();
|
|
@@ -243,16 +233,16 @@ const NewDetailForm = Form.create()(React.createClass({
|
|
|
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', {
|
|
|
+ {getFieldDecorator('title', {
|
|
|
rules: [ { required: true, message: '此项为必填项!' } ],
|
|
|
- initialValue: theData.name
|
|
|
+ initialValue: theData.title
|
|
|
})(<Input placeholder="请输入您的新闻标题" />)}
|
|
|
</FormItem>
|
|
|
</div>
|
|
@@ -269,14 +259,14 @@ const NewDetailForm = Form.create()(React.createClass({
|
|
|
)}
|
|
|
</FormItem>
|
|
|
<FormItem className="half-item" {...formItemLayout} label="新闻来源">
|
|
|
- {getFieldDecorator('name', {
|
|
|
+ {getFieldDecorator('source', {
|
|
|
rules: [ { required: true, message: '此项为必填项!' } ],
|
|
|
- initialValue: theData.name
|
|
|
+ initialValue: theData.source
|
|
|
})(<Input placeholder="请输入新闻来源" />)}
|
|
|
</FormItem>
|
|
|
<FormItem className="half-item" {...formItemLayout} label="来源链接">
|
|
|
- {getFieldDecorator('url', {
|
|
|
- initialValue: theData.url
|
|
|
+ {getFieldDecorator('sourceUrl', {
|
|
|
+ initialValue: theData.sourceUrl
|
|
|
})(<Input placeholder="请输入新闻来源链接" />)}
|
|
|
</FormItem>
|
|
|
<FormItem className="half-item"
|
|
@@ -285,9 +275,9 @@ const NewDetailForm = Form.create()(React.createClass({
|
|
|
>
|
|
|
{getFieldDecorator('ProvinceCity', {
|
|
|
rules: [ { required: true, message: '此项为必填项!' } ],
|
|
|
- initialValue: theData.ProvinceCity
|
|
|
+ initialValue: this.state.Province
|
|
|
})(
|
|
|
- <Cascader options={areaSelect()} placeholder="选择城市" />
|
|
|
+ <Cascader options={provinceSelect()} placeholder="选择城市" />
|
|
|
)}
|
|
|
</FormItem>
|
|
|
</div>
|
|
@@ -302,30 +292,25 @@ const NewDetailForm = Form.create()(React.createClass({
|
|
|
</div>
|
|
|
<div className="clearfix">
|
|
|
<FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 18 }} label="新闻简介">
|
|
|
- {getFieldDecorator('introduction', {
|
|
|
+ {getFieldDecorator('summary', {
|
|
|
rules: [ { required: true, message: '此项为必填项!' } ],
|
|
|
- initialValue: theData.introduction
|
|
|
+ initialValue: theData.summary
|
|
|
})(<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'}
|
|
|
+ uploadUrl={'/api/user/demand/uploadPicture'}
|
|
|
+ uploadSign={'demand_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 labelCol={{ span: 3 }} wrapperCol={{ span: 18 }} label="是否发布">
|
|
|
+ <span>{theData.releaseStatus?'已发布':'未发布'}</span>
|
|
|
</FormItem>
|
|
|
</div>}
|
|
|
<div className="clearfix">
|
|
@@ -338,10 +323,10 @@ const NewDetailForm = Form.create()(React.createClass({
|
|
|
})(
|
|
|
<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>
|
|
|
+ <Col span={6}><Checkbox value="web_index" disabled>网站新闻首页</Checkbox></Col>
|
|
|
+ <Col span={6}><Checkbox value="web_tech_service_index">网站科技服务首页</Checkbox></Col>
|
|
|
+ <Col span={6}><Checkbox value="app_policy_index" disabled>app政策首页</Checkbox></Col>
|
|
|
+ <Col span={6}><Checkbox value="app_tech_service_index">APP科技服务首页</Checkbox></Col>
|
|
|
</Row>
|
|
|
</Checkbox.Group>
|
|
|
)}
|
|
@@ -356,11 +341,7 @@ const NewDetailForm = Form.create()(React.createClass({
|
|
|
className="set-submit"
|
|
|
type="ghost"
|
|
|
onClick={(e) => {
|
|
|
- if(this.props.data.id){
|
|
|
- this.submission(e,1)
|
|
|
- }else{
|
|
|
- this.handleSubmit(e,1)
|
|
|
- }
|
|
|
+ this.handleSubmit(e,2)
|
|
|
}}
|
|
|
>
|
|
|
发布新闻
|