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(
开户行 :
支行名称 :
开户名称 :
开户账号 :
市编码 :
省编码 :
结算银行卡属性 :
对公 对私
清算方式 :
提现
提现费率类型 :
提现费率 :
) } }