|
|
|
@ -60,6 +60,7 @@ class LoginRegisterComponent extends Component {
|
|
|
|
|
Phonenumberisnotcodmm:undefined,
|
|
|
|
|
Phonenumberisnotcobool: false,
|
|
|
|
|
Whethertoverify:false,
|
|
|
|
|
pciphone:true,
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -94,11 +95,27 @@ class LoginRegisterComponent extends Component {
|
|
|
|
|
Phonenumberisnotcobool: false,
|
|
|
|
|
Phonenumberisnotcodmm:undefined,
|
|
|
|
|
Whethertoverify:false,
|
|
|
|
|
pciphone:true,
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//判断是否是手机端
|
|
|
|
|
IsPC=()=> {
|
|
|
|
|
var userAgentInfo = navigator.userAgent;
|
|
|
|
|
var Agents = ["Android", "iPhone",
|
|
|
|
|
"SymbianOS", "Windows Phone",
|
|
|
|
|
"iPad", "iPod"];
|
|
|
|
|
var flag = true;//这个意思是说自己的是pc 端
|
|
|
|
|
for (var v = 0; v < Agents.length; v++) {
|
|
|
|
|
if (userAgentInfo.indexOf(Agents[v]) > 0) {
|
|
|
|
|
flag = false;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return flag;
|
|
|
|
|
}
|
|
|
|
|
// 点击表单后,改变type
|
|
|
|
|
changeType = () => {
|
|
|
|
|
this.setState({classpass: 'password'});
|
|
|
|
@ -106,17 +123,21 @@ class LoginRegisterComponent extends Component {
|
|
|
|
|
componentDidMount = () => {
|
|
|
|
|
// console.log("componentDidUpdate");
|
|
|
|
|
// console.log(this.props);
|
|
|
|
|
let pcipns=this.IsPC();
|
|
|
|
|
if (this.props.match.url === "/login") {
|
|
|
|
|
console.log("11111111111111111111111111");
|
|
|
|
|
this.state = {
|
|
|
|
|
tab:["0"],
|
|
|
|
|
pciphone:pcipns,
|
|
|
|
|
}
|
|
|
|
|
} else if (this.props.match.url === "/register") {
|
|
|
|
|
this.state = {
|
|
|
|
|
tab:["1"],
|
|
|
|
|
pciphone:pcipns,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
openNotification = (messge,type) => {
|
|
|
|
|
// type 1 成功提示绿色 2提醒颜色黄色 3错误提示红色
|
|
|
|
@ -286,15 +307,18 @@ class LoginRegisterComponent extends Component {
|
|
|
|
|
// this.openNotification(`请同意服务协议条款`,2);
|
|
|
|
|
// return;
|
|
|
|
|
// }
|
|
|
|
|
if (this.state.logins === undefined || this.state.logins === ""||this.state.logins.length===0) {
|
|
|
|
|
if(this.state.pciphone===true){
|
|
|
|
|
if (this.state.dragOk === false) {
|
|
|
|
|
// this.openNotification(`请拖动滑块完成验证`,2);
|
|
|
|
|
this.setState({
|
|
|
|
|
Phonenumberisnotcos:"账号不能为空",
|
|
|
|
|
Phonenumberisnotcosytdhk:"请拖动滑块完成验证",
|
|
|
|
|
})
|
|
|
|
|
return
|
|
|
|
|
} else if (this.state.dragOk === false) {
|
|
|
|
|
// this.openNotification(`请拖动滑块完成验证`,2);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (this.state.logins === undefined || this.state.logins === ""||this.state.logins.length===0) {
|
|
|
|
|
this.setState({
|
|
|
|
|
Phonenumberisnotcosytdhk:"请拖动滑块完成验证",
|
|
|
|
|
Phonenumberisnotcos:"账号不能为空",
|
|
|
|
|
})
|
|
|
|
|
return
|
|
|
|
|
} else if (this.state.codes === undefined || this.state.codes == ""||this.state.codes.length===0) {
|
|
|
|
@ -557,6 +581,11 @@ class LoginRegisterComponent extends Component {
|
|
|
|
|
this.isCorrectname(e.target.value, id);
|
|
|
|
|
// this.Emailphonenumberverification(e.target.value, id);
|
|
|
|
|
}
|
|
|
|
|
inputOnBlurzhuche = (e, id) => {
|
|
|
|
|
if(this.state.pciphone===false) {
|
|
|
|
|
this.Emailphonenumberverification(e.target.value, id);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//获取登入密码
|
|
|
|
|
passwordonChange = (e) => {
|
|
|
|
|
// console.log(e.target.value);
|
|
|
|
@ -673,6 +702,7 @@ class LoginRegisterComponent extends Component {
|
|
|
|
|
Phonenumberisnotcodmm,
|
|
|
|
|
// 注册
|
|
|
|
|
readAgreement,
|
|
|
|
|
pciphone,
|
|
|
|
|
} = this.state
|
|
|
|
|
// height: 346px;
|
|
|
|
|
if (this.state.seconds === 0) {
|
|
|
|
@ -780,6 +810,7 @@ class LoginRegisterComponent extends Component {
|
|
|
|
|
value={this.state.logins}
|
|
|
|
|
type="text" autoComplete="off"
|
|
|
|
|
onChange={this.loginInputonChanges}
|
|
|
|
|
onBlur={(e) => this.inputOnBlurzhuche(e, 2)}
|
|
|
|
|
style={{marginTop: '30px' , height: '38px',color:'#999999',fontSize:"14px"}}></Input>
|
|
|
|
|
{
|
|
|
|
|
Phonenumberisnotcos && Phonenumberisnotcos !== "" ?
|
|
|
|
@ -790,7 +821,7 @@ class LoginRegisterComponent extends Component {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
Whethertoverify===false?
|
|
|
|
|
Whethertoverify===false&&pciphone===true?
|
|
|
|
|
<DragValidator
|
|
|
|
|
height={38} successGreenColor="#29bd8b"
|
|
|
|
|
style={{ height: '38px'}}
|
|
|
|
@ -801,7 +832,7 @@ class LoginRegisterComponent extends Component {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
Whethertoverify===true?
|
|
|
|
|
Whethertoverify===true&&pciphone===true?
|
|
|
|
|
<DragValidatortwo
|
|
|
|
|
height={38} successGreenColor="#29bd8b"
|
|
|
|
|
style={{ height: '38px'}}
|
|
|
|
|