Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
J
JTWXWebApp
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
ReactNative
JTWXWebApp
Commits
2a2410a2
提交
2a2410a2
authored
3月 30, 2018
作者:
何守志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
heshouzhi倒计时
上级
bbe5ca9c
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
34 行增加
和
7 行删除
+34
-7
login.js
src/models/login.js
+4
-0
router.js
src/router.js
+0
-1
HomePage.js
src/routes/Home/HomePage.js
+1
-1
IndexPage.js
src/routes/IndexPage.js
+29
-5
没有找到文件。
src/models/login.js
浏览文件 @
2a2410a2
...
@@ -33,6 +33,7 @@ export default {
...
@@ -33,6 +33,7 @@ export default {
YanZhengMa
:
null
,
YanZhengMa
:
null
,
errormsg
:
null
,
errormsg
:
null
,
showToptips
:
false
,
showToptips
:
false
,
MyTimes
:
null
},
},
subscriptions
:
{
subscriptions
:
{
...
@@ -71,6 +72,9 @@ export default {
...
@@ -71,6 +72,9 @@ export default {
},
},
setYanZhengMa
(
state
,{
payload
}){
setYanZhengMa
(
state
,{
payload
}){
return
{...
state
,
YanZhengMa
:
payload
.
YanZhengMa
};
return
{...
state
,
YanZhengMa
:
payload
.
YanZhengMa
};
},
setTime
(
state
,{
payload
}){
return
{...
state
,
MyTimes
:
payload
.
MyTimes
}
}
}
},
},
...
...
src/router.js
浏览文件 @
2a2410a2
...
@@ -21,7 +21,6 @@ function RouterConfig({ history, app }) {
...
@@ -21,7 +21,6 @@ function RouterConfig({ history, app }) {
return
(
return
(
<
Router
history
=
{
history
}
>
<
Router
history
=
{
history
}
>
<
Switch
>
<
Switch
>
<
IndexRoute
component
=
{
HomePage
}
/
>
<
Route
path
=
"/"
exact
component
=
{
MiddleSelectPage
}
/
>
<
Route
path
=
"/"
exact
component
=
{
MiddleSelectPage
}
/
>
<
Route
path
=
"/Home"
component
=
{
HomePage
}
/
>
<
Route
path
=
"/Home"
component
=
{
HomePage
}
/
>
<
Route
path
=
"/Login"
component
=
{
IndexPage
}
/
>
<
Route
path
=
"/Login"
component
=
{
IndexPage
}
/
>
...
...
src/routes/Home/HomePage.js
浏览文件 @
2a2410a2
...
@@ -15,7 +15,7 @@ class HomePage extends React.Component{
...
@@ -15,7 +15,7 @@ class HomePage extends React.Component{
componentWillMount
()
{
componentWillMount
()
{
const
{
dispatch
}
=
this
.
props
;
const
{
dispatch
}
=
this
.
props
;
dispatch
({
type
:
'home/getSummaryData'
,
payload
:
{
pNumber
:
'浦东新区'
}});
dispatch
({
type
:
'home/getSummaryData'
,
payload
:
{
pNumber
:
'浦东新区'
}});
//
dispatch({ type: 'home/getSummary',payload: { pNumber:'浦东新区' }});
dispatch
({
type
:
'home/getSummary'
,
payload
:
{
pNumber
:
'浦东新区'
}});
}
}
onChange
=
(
value
)
=>
{
onChange
=
(
value
)
=>
{
console
.
info
(
"改变了"
);
console
.
info
(
"改变了"
);
...
...
src/routes/IndexPage.js
浏览文件 @
2a2410a2
...
@@ -21,7 +21,13 @@ import {
...
@@ -21,7 +21,13 @@ import {
import
'weui'
;
import
'weui'
;
import
'react-weui/build/packages/react-weui.css'
;
import
'react-weui/build/packages/react-weui.css'
;
import
styles
from
'./IndexPage.css'
;
import
styles
from
'./IndexPage.css'
;
class
IndexPage
extends
React
.
Component
{
class
IndexPage
extends
React
.
Component
{
constructor
(
props
)
{
super
(
props
);
this
.
ti
=
this
.
ti
.
bind
(
this
);
}
//手机号判断
//手机号判断
telCheck
=
(
event
)
=>
{
telCheck
=
(
event
)
=>
{
const
tel
=
event
.
target
.
value
;
const
tel
=
event
.
target
.
value
;
...
@@ -44,18 +50,38 @@ class IndexPage extends React.Component{
...
@@ -44,18 +50,38 @@ class IndexPage extends React.Component{
this
.
props
.
dispatch
({
type
:
'login/setYanZhengMa'
,
payload
:
{
YanZhengMa
:
tel
}
});
this
.
props
.
dispatch
({
type
:
'login/setYanZhengMa'
,
payload
:
{
YanZhengMa
:
tel
}
});
}
}
};
};
//一秒减一
ti
=
function
(
number
){
let
t
=
setInterval
(
function
()
{
number
--
;
if
(
number
<
1
){
clearInterval
(
t
);
}
this
.
props
.
dispatch
({
type
:
'login/setTime'
,
payload
:{
MyTimes
:
number
}});
}.
bind
(
this
),
1000
);
}
//发送验证码
//发送验证码
sendCheckNum
=
()
=>
{
sendCheckNum
=
()
=>
{
this
.
ti
(
10
);
// 1.检验改手机号是否存在系统中,如果不存在,无法注册
// 1.检验改手机号是否存在系统中,如果不存在,无法注册
this
.
props
.
dispatch
({
type
:
'login/checkNumber'
,
payload
:{}})
this
.
props
.
dispatch
({
type
:
'login/checkNumber'
,
payload
:{}})
};
};
// 注册
// 注册
registerClick
=
()
=>
{
registerClick
=
()
=>
{
this
.
props
.
dispatch
({
type
:
'login/checkYanZhengMa'
,
payload
:
{}
});
this
.
props
.
dispatch
({
type
:
'login/checkYanZhengMa'
,
payload
:
{}
});
};
};
render
(){
render
(){
let
time
=
this
.
props
.
login
.
MyTimes
;
let
button
=
(
<
CellFooter
>
<
Button
type
=
"vcode"
onClick
=
{
this
.
sendCheckNum
}
style
=
{{
height
:
"25px"
,
lineHeight
:
"25px"
}}
>
发送
<
/Button
>
<
/CellFooter>
)
;
if
(
time
>
0
&&
time
<
10
){
button
=
(
<
CellFooter
>
<
Button
type
=
"vcode"
style
=
{{
height
:
"25px"
,
lineHeight
:
"25px"
}}
>
{
time
}
<
/Button
>
<
/CellFooter>
)
;
}
return
(
return
(
<
Page
className
=
{
styles
.
bodyBackground
}
>
<
Page
className
=
{
styles
.
bodyBackground
}
>
<
h1
className
=
{
styles
.
myTitle
}
>
上海征地房屋补偿
<
/h1
>
<
h1
className
=
{
styles
.
myTitle
}
>
上海征地房屋补偿
<
/h1
>
<
Form
className
=
{
styles
.
formWrapStyle
}
>
<
Form
className
=
{
styles
.
formWrapStyle
}
>
...
@@ -75,9 +101,7 @@ class IndexPage extends React.Component{
...
@@ -75,9 +101,7 @@ class IndexPage extends React.Component{
<
CellBody
>
<
CellBody
>
<
Input
type
=
"tel"
placeholder
=
"验证码"
onBlur
=
{(
event
)
=>
this
.
telYanZhengMa
(
event
)}
style
=
{{
color
:
"#fff"
}}
/
>
<
Input
type
=
"tel"
placeholder
=
"验证码"
onBlur
=
{(
event
)
=>
this
.
telYanZhengMa
(
event
)}
style
=
{{
color
:
"#fff"
}}
/
>
<
/CellBody
>
<
/CellBody
>
<
CellFooter
>
{
button
}
<
Button
type
=
"vcode"
onClick
=
{
this
.
sendCheckNum
}
style
=
{{
height
:
"25px"
,
lineHeight
:
"25px"
}}
>
发送
<
/Button
>
<
/CellFooter
>
<
/FormCell
>
<
/FormCell
>
<
/Form
>
<
/Form
>
<
ButtonArea
className
=
{
styles
.
buttonWrapStyle
}
>
<
ButtonArea
className
=
{
styles
.
buttonWrapStyle
}
>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论