import React from 'react'; import $ from 'jquery/src/ajax'; import { message, Spin, Input, Button, Radio, Form, Select, } from 'antd'; import {productType} from '@/dataDic.js'; import {getProStatus} from '@/tools.js' import Editors from '@/richTextEditors'; import Crop from '@/crop/cropBlock'; import KeyWordTagGroup from '@/crop/keyword'; const NewDetailForm = Form.create()(React.createClass({ getInitialState() { return { visible: false, loading: false, auditStatus: 0, textFileList: [], videoFileList: [], pictureUrl: [], tags:[], edit:{}, edits:{} }; }, loadData(id) { this.setState({ loading: true }); $.ajax({ method: "get", dataType: "json", crossDomain: false, url: globalConfig.context + '/api/admin/community/getCommunintyById' , 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, tags:(thisData.keyword).split(',')||[], status:thisData.status, edit:thisData.content, pictureUrl: thisData.picUrl ? thisData.picUrl.split(',') : [] }); }.bind(this), }).always(function () { this.setState({ loading: false }); }.bind(this)); }, handleSubmit(e,index) { e.preventDefault(); this.props.form.validateFields((err, values) => { if (!this.state.pictureUrl.length) { message.warning('请上传专栏图片!'); return false; }; if((this.state.edit)==undefined||!this.state.edit||(this.state.edit)=='