|
@@ -1,12 +1,24 @@
|
|
import React from 'react';
|
|
import React from 'react';
|
|
-// import { $Axios } from '../common/publish';
|
|
|
|
-// import './Layout.scss'
|
|
|
|
-
|
|
|
|
|
|
+import { Radio, Select } from 'antd';
|
|
|
|
+import { $Axios } from '../../common/publish';
|
|
|
|
+import '../Layout/Layout.scss'
|
|
|
|
+import centerO from '../../../LayoutCenter/center-o/centerO.jsx'
|
|
export default class Layout extends React.Component {
|
|
export default class Layout extends React.Component {
|
|
constructor(props) {
|
|
constructor(props) {
|
|
super(props)
|
|
super(props)
|
|
this.state = {
|
|
this.state = {
|
|
-
|
|
|
|
|
|
+ headTxt : '商户入网 > 商户基本信息',
|
|
|
|
+ children : [
|
|
|
|
+ { 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 },
|
|
|
|
+ ]
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
@@ -15,7 +27,9 @@ export default class Layout extends React.Component {
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
|
|
+ handleChange(value) {
|
|
|
|
+ console.log(`Selected: ${value}`);
|
|
|
|
+ }
|
|
|
|
|
|
// let params = {
|
|
// let params = {
|
|
// token : localStorage.getItem('token'),
|
|
// token : localStorage.getItem('token'),
|
|
@@ -42,9 +56,17 @@ export default class Layout extends React.Component {
|
|
|
|
|
|
|
|
|
|
render() {
|
|
render() {
|
|
|
|
+ const { headTxt, children } = this.state;
|
|
|
|
+ const { Option } = Select;
|
|
return(
|
|
return(
|
|
- <div className='rootDom'>
|
|
|
|
- xasdasd
|
|
|
|
|
|
+ <div className='rootDom'>{console.log(1)}
|
|
|
|
+ <div className='header_center'>{ headTxt }</div>
|
|
|
|
+ <div className='main_center'>
|
|
|
|
+ <div className='center_ups'>
|
|
|
|
+ {/* <centerO></centerO> */}
|
|
|
|
+ </div>
|
|
|
|
+ <div className='center_bottom'></div>
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
)
|
|
)
|
|
}
|
|
}
|