import React from 'react'; import { Radio, Select, Input } from 'antd'; // import { $Axios } from '../../common/publish'; import '../center-s/centerS.scss' export default class centerS extends React.Component { constructor(props) { super(props) this.state = { contract : [ // { txt : '请选择商户签约性质', value : 0 }, { txt : '个体工商户',value : 1 }, { txt : '事业单位',value : 2 }, { txt : '民办非企业组织',value : 3 }, { txt : '社会团体',value : 4 }, { txt : '非法人企业',value : 5 }, { txt : '自然人',value : 6 }, { txt : '政府机关',value : 7 }, { txt : '其他',value : 8 }, ], certificate : [ { txt : '统一社会信用代码证',value : 1 }, { txt : '民办非企业单位登记证书',value : 2 }, { txt : '个体工商户营业执照',value : 3 }, { txt : '社会团体法人登记证书',value : 4 }, { txt : '事业单位法人证书',value : 5 }, { txt : '基金法人登记证书',value : 6 }, { txt : '营业执照',value : 7 }, { txt : '其他',value : 8 }, ] } } componentDidMount() { } handleChange(value) { console.log(`Selected: ${value}`); } render() { const { contract, certificate } = this.state; const { Option } = Select; const { TextArea } = Input; return(