|
@@ -94,7 +94,7 @@ const NewDetailForm = Form.create()(React.createClass({
|
|
|
method: "get",
|
|
|
dataType: "json",
|
|
|
crossDomain: false,
|
|
|
- url: globalConfig.context + '/api/admin/news/detail' ,
|
|
|
+ url: globalConfig.context + '/api/admin/policy/detail' ,
|
|
|
data: {
|
|
|
id: id
|
|
|
},
|
|
@@ -106,17 +106,13 @@ const NewDetailForm = Form.create()(React.createClass({
|
|
|
};
|
|
|
thisData = {};
|
|
|
};
|
|
|
- let publishPagesArr = [];
|
|
|
- let pageList = thisData.newsPublishs
|
|
|
- pageList.map(item=>{
|
|
|
- publishPagesArr.push(item.publishPage)
|
|
|
- });
|
|
|
- provice.push(thisData.provinceId);
|
|
|
+ let proArr=[];
|
|
|
+ proArr.push(thisData.province);
|
|
|
this.setState({
|
|
|
id:thisData.id,
|
|
|
data: thisData,
|
|
|
- Province:provice,
|
|
|
- publishPages:publishPagesArr,
|
|
|
+ Province:proArr,
|
|
|
+ publishPages:thisData.publishPages,
|
|
|
auditStatus:thisData.auditStatus,
|
|
|
edit:{content:thisData.content},
|
|
|
pictureUrl: thisData.titleImg ? splitUrl(thisData.titleImg, ',', globalConfig.avatarHost + '/upload') : []
|
|
@@ -133,12 +129,12 @@ 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转化
|
|
|
+ //url转化
|
|
|
+ if((this.state.edit).content==undefined||!(this.state.edit).content||(this.state.edit).content=='<p><br></p>'){
|
|
|
+ message.warning('请填写政策正文');
|
|
|
+ return false;
|
|
|
+ }
|
|
|
let thePictureUrl = [];
|
|
|
if (this.state.pictureUrl.length) {
|
|
|
let picArr = [];
|
|
@@ -150,6 +146,7 @@ const NewDetailForm = Form.create()(React.createClass({
|
|
|
thePictureUrl = picArr.join(",");
|
|
|
};
|
|
|
if (!err) {
|
|
|
+
|
|
|
let publishPages =(values.publishPages).join(',')
|
|
|
this.setState({
|
|
|
loading: true
|
|
@@ -158,7 +155,7 @@ const NewDetailForm = Form.create()(React.createClass({
|
|
|
method: "post",
|
|
|
dataType: "json",
|
|
|
async:true,
|
|
|
- url: this.props.data.id ? globalConfig.context + '/api/admin/news/updateNews' : globalConfig.context + '/api/admin/news/apply',
|
|
|
+ url: this.props.data.id ? globalConfig.context + '/api/admin/policy/update' : globalConfig.context + '/api/admin/policy/apply',
|
|
|
data: {
|
|
|
id: this.props.data.id,
|
|
|
type:0,
|
|
@@ -171,7 +168,7 @@ const NewDetailForm = Form.create()(React.createClass({
|
|
|
sourceUrl:values.sourceUrl,
|
|
|
auditStatus:index,
|
|
|
summary: values.summary,
|
|
|
- provinceId: (values.ProvinceCity)[0],
|
|
|
+ province: (values.ProvinceCity)[0],
|
|
|
publishPages:publishPages
|
|
|
}
|
|
|
}).done(function (data) {
|
|
@@ -193,6 +190,7 @@ const NewDetailForm = Form.create()(React.createClass({
|
|
|
});
|
|
|
},
|
|
|
cancelFun(){
|
|
|
+ this.state.edit={};
|
|
|
this.props.closeDesc();
|
|
|
},
|
|
|
componentWillMount() {
|
|
@@ -200,10 +198,11 @@ const NewDetailForm = Form.create()(React.createClass({
|
|
|
this.loadData(this.props.data.id);
|
|
|
} else {
|
|
|
this.state.data = {};
|
|
|
- this.state.edit={};
|
|
|
this.state.pictureUrl = [];
|
|
|
+ this.state.Province=undefined;
|
|
|
this.setState({
|
|
|
- publishPages:['web_index','app_policy_index']
|
|
|
+ edit:{content:''},
|
|
|
+ publishPages:['web_policy_main','app_policy_main']
|
|
|
})
|
|
|
};
|
|
|
},
|
|
@@ -215,11 +214,12 @@ 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.state.Province=undefined;
|
|
|
this.setState({
|
|
|
- publishPages:['web_index','app_policy_index']
|
|
|
+ edit:{content:''},
|
|
|
+ publishPages:['web_policy_main','app_policy_main']
|
|
|
})
|
|
|
};
|
|
|
this.props.form.resetFields();
|
|
@@ -323,11 +323,11 @@ const NewDetailForm = Form.create()(React.createClass({
|
|
|
})(
|
|
|
<Checkbox.Group>
|
|
|
<Row>
|
|
|
- <Col span={6}><Checkbox value="index" >网站首页</Checkbox></Col>
|
|
|
- <Col span={6}><Checkbox value="web_index" disabled>网站政策首页</Checkbox></Col>
|
|
|
+ <Col span={6}><Checkbox value="web_index" >网站首页</Checkbox></Col>
|
|
|
+ <Col span={6}><Checkbox value="web_policy_main" disabled>网站政策首页</Checkbox></Col>
|
|
|
<Col span={6}><Checkbox value="web_tech_service_index">网站科技服务首页</Checkbox></Col>
|
|
|
<Col span={6}><Checkbox value="app_index">APP首页</Checkbox></Col>
|
|
|
- <Col span={6}><Checkbox value="app_policy_index" disabled>app政策首页</Checkbox></Col>
|
|
|
+ <Col span={6}><Checkbox value="app_policy_main" disabled>app政策首页</Checkbox></Col>
|
|
|
<Col span={6}><Checkbox value="app_tech_service_index">APP科技服务首页</Checkbox></Col>
|
|
|
</Row>
|
|
|
</Checkbox.Group>
|