提交 707b0355 authored 作者: 吴强's avatar 吴强
差异被折叠。
html, body, :global(#root) { html, body, :global(#root) {
height: 100%; height: 100%;
padding: 0;
margin: 0;
} }
...@@ -83,14 +83,14 @@ select::-ms-expand { display: none; } ...@@ -83,14 +83,14 @@ select::-ms-expand { display: none; }
background: -o-linear-gradient(120deg, #4b85bf 0%, #35aca1 100%); /* Opera 11.1 - 12.0 */ background: -o-linear-gradient(120deg, #4b85bf 0%, #35aca1 100%); /* Opera 11.1 - 12.0 */
background: -moz-linear-gradient(120deg, #4b85bf 0%, #35aca1 100%); /* Firefox 3.6 - 15 */ background: -moz-linear-gradient(120deg, #4b85bf 0%, #35aca1 100%); /* Firefox 3.6 - 15 */
background: linear-gradient(120deg, #4b85bf 0%, #35aca1 100%); /* 标准的语法(必须放在最后) */ background: linear-gradient(120deg, #4b85bf 0%, #35aca1 100%); /* 标准的语法(必须放在最后) */
overflow: hidden;
} }
/*-------------中间表格最外层-----------*/ /*-------------中间表格最外层-----------*/
.formWrapStyle{ .formWrapStyle{
margin: 0 50px; margin: 0 50px;
background: transparent; background: transparent;
overflow: hidden;
} }
.formWrapStyle:before,.formWrapStyle:after{ .formWrapStyle:before,.formWrapStyle:after{
border: none; border: none;
......
...@@ -62,8 +62,9 @@ class IndexPage extends React.Component{ ...@@ -62,8 +62,9 @@ class IndexPage extends React.Component{
}.bind(this),1000); }.bind(this),1000);
} }
//发送验证码 //发送验证码
sendCheckNum = () => { sendCheckNum = (e) => {
this.ti(60); this.ti(60);
// 1.检验改手机号是否存在系统中,如果不存在,无法注册 // 1.检验改手机号是否存在系统中,如果不存在,无法注册
this.props.dispatch({type:'login/checkNumber',payload:{}}) this.props.dispatch({type:'login/checkNumber',payload:{}})
}; };
......
import React from 'react'; import React from 'react';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import { connect } from 'dva'; import { connect } from 'dva';
import logo from '../assets/logo.svg';
class MiddleSelectPage extends React.Component{ class MiddleSelectPage extends React.Component{
componentDidMount() { componentDidMount() {
const { dispatch } = this.props; const { dispatch } = this.props;
console.info(this.props); console.info(this.props);
dispatch({ type: 'middleSelect/checkOpenID',payload: {}}); dispatch({ type: 'middleSelect/checkOpenID',payload: {}});
} }
render(){
render(){
const myImg = src => <img src={src} alt="" style={{width:"100px", height:"100px"}} />;
return ( return (
<div>加载中</div> <div style={{paddingTop:"100px",textAlign:"center"}}>
{myImg(logo)}
<h3>欢迎进入上海征地房屋补偿公众号</h3>
</div>
); );
} }
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论