newForm.jsx 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365
  1. import React from 'react';
  2. import $ from 'jquery/src/ajax';
  3. import {
  4. Icon,
  5. Modal,
  6. message,
  7. Spin,
  8. Upload,
  9. Input,
  10. Button,
  11. Radio,
  12. Form,
  13. Checkbox,
  14. Cascader,
  15. Row,
  16. Col
  17. } from 'antd';
  18. import { splitUrl} from '@/tools.js';
  19. import {provinceSelect } from '@/NewDicProvinceList';
  20. import Editors from '@/richTextEditors';
  21. const PicturesWall = React.createClass({
  22. getInitialState() {
  23. return {
  24. previewVisible: false,
  25. previewImage: '',
  26. fileList: [],
  27. tags: []
  28. };
  29. },
  30. handleCancel() {
  31. this.setState({ previewVisible: false });
  32. },
  33. handlePreview(file) {
  34. this.setState({
  35. previewImage: file.url || file.thumbUrl,
  36. previewVisible: true
  37. });
  38. },
  39. handleChange(info) {
  40. let fileList = info.fileList;
  41. this.setState({ fileList });
  42. this.props.fileList(fileList);
  43. },
  44. componentWillReceiveProps(nextProps) {
  45. this.state.fileList = nextProps.pictureUrl;
  46. },
  47. render() {
  48. const { previewVisible, previewImage, fileList } = this.state;
  49. const uploadButton = (
  50. <div>
  51. <Icon type="plus" />
  52. <div className="ant-upload-text">点击上传</div>
  53. </div>
  54. );
  55. return (
  56. <div className="clearfix">
  57. <Upload
  58. action={globalConfig.context + '/api/user/demand/uploadPicture'}
  59. data={{ sign: 'demand_picture'}}
  60. listType="picture-card"
  61. fileList={fileList}
  62. onPreview={this.handlePreview}
  63. onChange={this.handleChange}
  64. >
  65. {fileList.length >= 3 ? null : uploadButton}
  66. </Upload>
  67. <Modal maskClosable={false} visible={previewVisible} footer={null} onCancel={this.handleCancel}>
  68. <img alt="example" style={{ width: '100%' }} src={previewImage} />
  69. </Modal>
  70. </div>
  71. );
  72. }
  73. });
  74. const NewDetailForm = Form.create()(React.createClass({
  75. getInitialState() {
  76. return {
  77. visible: false,
  78. loading: false,
  79. auditStatus: 0,
  80. textFileList: [],
  81. videoFileList: [],
  82. pictureUrl: [],
  83. tags:[],
  84. edit:{}
  85. };
  86. },
  87. loadData(id) {
  88. this.setState({
  89. loading: true
  90. });
  91. $.ajax({
  92. method: "get",
  93. dataType: "json",
  94. crossDomain: false,
  95. url: globalConfig.context + '/api/admin/news/detail' ,
  96. data: {
  97. id: id
  98. },
  99. success: function (data) {
  100. let thisData = data.data,provice=[];
  101. if (!thisData) {
  102. if (data.error && data.error.length) {
  103. message.warning(data.error[0].message);
  104. };
  105. thisData = {};
  106. };
  107. let publishPagesArr = [];
  108. let pageList = thisData.newsPublishs
  109. pageList.map(item=>{
  110. publishPagesArr.push(item.publishPage)
  111. });
  112. provice.push(thisData.provinceId);
  113. this.setState({
  114. id:thisData.id,
  115. data: thisData,
  116. Province:provice,
  117. publishPages:publishPagesArr,
  118. auditStatus:thisData.auditStatus,
  119. edit:{content:thisData.content},
  120. pictureUrl: thisData.titleImg ? splitUrl(thisData.titleImg, ',', globalConfig.avatarHost + '/upload') : []
  121. });
  122. }.bind(this),
  123. }).always(function () {
  124. this.setState({
  125. loading: false
  126. });
  127. }.bind(this));
  128. },
  129. getPictureUrl(e) {
  130. this.setState({ pictureUrl: e });
  131. },
  132. handleSubmit(e,index) {
  133. e.preventDefault();
  134. if((this.state.edit).content==undefined){
  135. message.warning('请填写新闻正文');
  136. return false;
  137. }
  138. this.props.form.validateFields((err, values) => {
  139. //url转化
  140. let thePictureUrl = [];
  141. if (this.state.pictureUrl.length) {
  142. let picArr = [];
  143. this.state.pictureUrl.map(function (item) {
  144. if ( item.response && item.response.data && item.response.data.length ){
  145. picArr.push(item.response.data);
  146. }
  147. });
  148. thePictureUrl = picArr.join(",");
  149. };
  150. if (!err) {
  151. let publishPages =(values.publishPages).join(',')
  152. this.setState({
  153. loading: true
  154. });
  155. $.ajax({
  156. method: "post",
  157. dataType: "json",
  158. async:true,
  159. url: this.props.data.id ? globalConfig.context + '/api/admin/news/updateNews' : globalConfig.context + '/api/admin/news/apply',
  160. data: {
  161. id: this.props.data.id,
  162. type:0,
  163. title: values.title,
  164. author: values.author,
  165. titleImg: thePictureUrl,
  166. content:this.state.edit.content,
  167. hot:values.hot,
  168. source:values.source,
  169. sourceUrl:values.sourceUrl,
  170. auditStatus:index,
  171. summary: values.summary,
  172. provinceId: (values.ProvinceCity)[0],
  173. publishPages:publishPages
  174. }
  175. }).done(function (data) {
  176. this.setState({
  177. loading: false
  178. });
  179. if (!data.error.length) {
  180. message.success('操作成功!');
  181. this.setState({
  182. visible: false
  183. });
  184. this.props.handOk();
  185. } else {
  186. message.warning(data.error[0].message);
  187. }
  188. }.bind(this));
  189. }
  190. });
  191. },
  192. cancelFun(){
  193. this.props.closeDesc();
  194. },
  195. componentWillMount() {
  196. if (this.props.data.id) {
  197. this.loadData(this.props.data.id);
  198. } else {
  199. this.state.data = {};
  200. this.state.edit={};
  201. this.state.pictureUrl = [];
  202. this.setState({
  203. publishPages:['web_index','app_policy_index']
  204. })
  205. };
  206. },
  207. componentWillReceiveProps(nextProps) {
  208. if (!this.props.visible && nextProps.visible) {
  209. this.state.textFileList = [];
  210. this.state.videoFileList = [];
  211. if (nextProps.data.id) {
  212. this.loadData(nextProps.data.id);
  213. } else {
  214. this.state.data = {};
  215. this.state.edit={};
  216. this.state.pictureUrl = [];
  217. this.state.theData={};
  218. this.setState({
  219. publishPages:['web_index','app_policy_index']
  220. })
  221. };
  222. this.props.form.resetFields();
  223. };
  224. },
  225. render() {
  226. const theData = this.state.data || {};
  227. const { getFieldDecorator } = this.props.form;
  228. const FormItem = Form.Item
  229. const formItemLayout = {
  230. labelCol: { span: 6 },
  231. wrapperCol: { span: 12 },
  232. };
  233. return (
  234. <div className='login'>
  235. <Form layout="horizontal" onSubmit={(e)=>{this.handleSubmit(e,0)}} id="demand-form">
  236. <Spin spinning={this.state.loading}>
  237. <div className="clearfix">
  238. <FormItem className="half-item" {...formItemLayout} label="标题">
  239. {getFieldDecorator('title', {
  240. rules: [ { required: true, message: '此项为必填项!' } ],
  241. initialValue: theData.title
  242. })(<Input placeholder="请输入您的新闻标题" />)}
  243. </FormItem>
  244. </div>
  245. <div className="clearfix">
  246. <FormItem className="half-item" {...formItemLayout} label="热门">
  247. {getFieldDecorator('hot', {
  248. rules: [ { required: true, message: '此项为必填项!' } ],
  249. initialValue: theData.hot
  250. })(
  251. <Radio.Group>
  252. <Radio value={0}>否</Radio>
  253. <Radio value={1}>是</Radio>
  254. </Radio.Group>
  255. )}
  256. </FormItem>
  257. <FormItem className="half-item" {...formItemLayout} label="新闻来源">
  258. {getFieldDecorator('source', {
  259. rules: [ { required: true, message: '此项为必填项!' } ],
  260. initialValue: theData.source
  261. })(<Input placeholder="请输入新闻来源" />)}
  262. </FormItem>
  263. <FormItem className="half-item" {...formItemLayout} label="来源链接">
  264. {getFieldDecorator('sourceUrl', {
  265. initialValue: theData.sourceUrl
  266. })(<Input placeholder="请输入新闻来源链接" />)}
  267. </FormItem>
  268. <FormItem className="half-item"
  269. {...formItemLayout}
  270. label="省-市-区"
  271. >
  272. {getFieldDecorator('ProvinceCity', {
  273. rules: [ { required: true, message: '此项为必填项!' } ],
  274. initialValue: this.state.Province
  275. })(
  276. <Cascader options={provinceSelect()} placeholder="选择城市" />
  277. )}
  278. </FormItem>
  279. </div>
  280. <div className="clearfix">
  281. <FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 18 }} label="新闻图片">
  282. <PicturesWall
  283. fileList={this.getPictureUrl}
  284. pictureUrl={this.state.pictureUrl}
  285. visible={this.props.visible}
  286. />
  287. </FormItem>
  288. </div>
  289. <div className="clearfix">
  290. <FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 18 }} label="新闻简介">
  291. {getFieldDecorator('summary', {
  292. rules: [ { required: true, message: '此项为必填项!' } ],
  293. initialValue: theData.summary
  294. })(<Input type="textarea" rows={4} placeholder="输入新闻简介" />)}
  295. </FormItem>
  296. </div>
  297. <div className="clearfix">
  298. <FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 18 }} label={<span><i style={{color:"red",fontSize:14}}> * </i>新闻正文</span>}>
  299. <Editors textContent={this.state.edit.content}
  300. uploadUrl={'/api/user/demand/uploadPicture'}
  301. uploadSign={'demand_picture'}
  302. handleRichText={(value) => { this.state.edit.content = value; }}
  303. visible={this.state.visible} />
  304. </FormItem>
  305. </div>
  306. {theData.createTime&&<div className="clearfix">
  307. <FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 18 }} label="是否发布">
  308. <span>{theData.releaseStatus?'已发布':'未发布'}</span>
  309. </FormItem>
  310. </div>}
  311. <div className="clearfix">
  312. <FormItem className="full-item"
  313. labelCol={{ span: 3 }}
  314. wrapperCol={{ span: 18 }} label="发布位置">
  315. {getFieldDecorator('publishPages', {
  316. rules: [ { required: false } ],
  317. initialValue: this.state.publishPages
  318. })(
  319. <Checkbox.Group>
  320. <Row>
  321. <Col span={6}><Checkbox value="web_index" disabled>网站新闻首页</Checkbox></Col>
  322. <Col span={6}><Checkbox value="web_tech_service_index">网站科技服务首页</Checkbox></Col>
  323. <Col span={6}><Checkbox value="app_policy_index" disabled>app政策首页</Checkbox></Col>
  324. <Col span={6}><Checkbox value="app_tech_service_index">APP科技服务首页</Checkbox></Col>
  325. </Row>
  326. </Checkbox.Group>
  327. )}
  328. </FormItem>
  329. </div>
  330. <div className="clearfix">
  331. <FormItem wrapperCol={{ span: 12, offset: 3 }}>
  332. {this.props.data&&!this.props.data.id&&<Button className="set-submit" type="primary" htmlType="submit">
  333. 保存草稿
  334. </Button>}
  335. <Button
  336. className="set-submit"
  337. type="ghost"
  338. onClick={(e) => {
  339. this.handleSubmit(e,2)
  340. }}
  341. >
  342. 发布新闻
  343. </Button>
  344. <Button className="set-submit" type="ghost" onClick={this.cancelFun}>
  345. 取消
  346. </Button>
  347. </FormItem>
  348. </div>
  349. </Spin>
  350. </Form>
  351. </div>
  352. )
  353. }
  354. }));
  355. export default NewDetailForm;