import React from 'react'; import $ from 'jquery/src/ajax'; import '../content.less'; import { citySelect, areaSelect, provinceSelect } from '../../../NewDicProvinceListAll'; import { Form, Radio, Icon, Button, Input, Tabs, Select, Spin, Table, Switch, message, DatePicker, Modal, Popconfirm, Cascader } from 'antd'; import { conditionOrganization, gameState } from '../../../dataDic.js'; import { getCategoryState, getGameState, splitUrl, getprovince } from '../../../tools.js'; import ImgList from "../../../common/imgList"; import { ChooseList } from "../../order/orderNew/chooseList"; const TabPane = Tabs.TabPane; const RadioGroup = Radio.Group; //图片组件 const PicturesWall = React.createClass({ getInitialState() { return { previewVisible: false, previewImage: '', fileList: [], } }, 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 = (