dev_forum
parent
cc3328b7d1
commit
2a10931a61
@ -0,0 +1,57 @@
|
||||
import React, {Component} from 'react';
|
||||
|
||||
import {BrowserRouter as Router, Route, Link, Switch} from "react-router-dom";
|
||||
|
||||
import {getImageUrl, DragValidator} from 'educoder';
|
||||
import {Tabs, Input, Checkbox, Button, notification} from 'antd';
|
||||
import axios from 'axios';
|
||||
import './common.css'
|
||||
|
||||
|
||||
//父组件 EducoderLogin.js
|
||||
class InterestpageComponent extends Component {
|
||||
constructor(props) {
|
||||
super(props)
|
||||
this.state = {
|
||||
login: "",
|
||||
password: "",
|
||||
passwords: "",
|
||||
seconds: 60,
|
||||
codes: "",
|
||||
getverificationcodes: true,
|
||||
Phonenumberisnotco: undefined,
|
||||
Phonenumberisnotcobool: false,
|
||||
s: 'text',
|
||||
classpass: "text",
|
||||
readonlyInput: true,
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
render() {
|
||||
const {
|
||||
} = this.state
|
||||
// height: 346px;
|
||||
return (
|
||||
|
||||
<div className="login_register_content" style={{height: "824px"}}>
|
||||
|
||||
<div className="login_section">
|
||||
<div className="ysldivhome">
|
||||
<div>1</div>
|
||||
<div>2</div>
|
||||
<div>3</div>
|
||||
</div>
|
||||
<Button className="login_btn" size={"large"} type="primary" style={{height: "46px"}}>完成</Button>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default (InterestpageComponent);
|
Loading…
Reference in new issue