Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
A
app-manage-console
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
ReactNative
app-manage-console
Commits
368b5931
提交
368b5931
authored
12月 19, 2017
作者:
vipcxj
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修复可选多种验证方式的输入控件样式错误
上级
527da337
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
24 行增加
和
8 行删除
+24
-8
index.js
src/components/uca/index.js
+7
-4
authInput.js
src/routes/login/authInput.js
+7
-2
index.js
src/routes/login/index.js
+10
-2
没有找到文件。
src/components/uca/index.js
浏览文件 @
368b5931
...
...
@@ -53,11 +53,14 @@ class UCA extends Component {
const
onChange
=
(
e
)
=>
{
return
this
.
onChange
(
e
.
target
.
value
);
};
const
{
loading
,
value
,
...
rest
}
=
this
.
props
;
const
{
loading
,
value
,
style
,
...
rest
}
=
this
.
props
;
const
{
width
,
height
}
=
style
||
{};
return
(
<
Spin
spinning
=
{
!
this
.
state
.
ready
||
loading
}
size
=
"small"
>
<
Input
{...
rest
}
disabled
=
{
!
this
.
state
.
ready
||
loading
}
value
=
{
this
.
objToValue
(
value
)}
onChange
=
{
onChange
}
type
=
"password"
/>
<
/Spin
>
<
div
style
=
{{
width
,
height
}}
>
<
Spin
spinning
=
{
!
this
.
state
.
ready
||
loading
}
size
=
"small"
>
<
Input
{...
rest
}
disabled
=
{
!
this
.
state
.
ready
||
loading
}
value
=
{
this
.
objToValue
(
value
)}
onChange
=
{
onChange
}
type
=
"password"
/>
<
/Spin
>
<
/div
>
);
}
}
...
...
src/routes/login/authInput.js
浏览文件 @
368b5931
...
...
@@ -20,13 +20,18 @@ class AuthInputs extends React.Component {
if
(
data
.
length
>
0
)
{
return
(
<
Input
.
Group
compact
>
<
Select
value
=
{
select
}
onChange
=
{
this
.
onChange
}
>
<
Select
value
=
{
select
}
onChange
=
{
this
.
onChange
}
style
=
{{
width
:
'30%'
}}
>
{
data
.
map
(
item
=>
(
<
Select
.
Option
value
=
{
item
.
key
}
key
=
{
item
.
key
}
>
{
item
.
label
}
<
/Select.Option>
)
)
}
<
/Select
>
{
React
.
cloneElement
(
data
[
this
.
state
.
index
>=
0
?
this
.
state
.
index
:
0
].
node
,
{
value
:
this
.
props
.
value
,
onChange
:
this
.
props
.
onChange
})
React
.
cloneElement
(
data
[
this
.
state
.
index
>=
0
?
this
.
state
.
index
:
0
].
node
,
{
value
:
this
.
props
.
value
,
onChange
:
this
.
props
.
onChange
,
style
:
{
width
:
'70%'
},
})
}
<
/Input.Group
>
);
...
...
src/routes/login/index.js
浏览文件 @
368b5931
...
...
@@ -19,7 +19,9 @@ class LoginForm extends React.Component {
onUserBlur
=
(
e
)
=>
{
const
{
value
}
=
e
.
target
;
this
.
props
.
dispatch
({
type
:
'login/login'
,
payload
:
value
});
if
(
value
)
{
this
.
props
.
dispatch
({
type
:
'login/login'
,
payload
:
value
});
}
};
handleSubmit
=
(
e
)
=>
{
e
.
preventDefault
();
...
...
@@ -173,4 +175,10 @@ const mapStateToProps = ({ login, loading }) => {
};
};
export
default
connect
(
mapStateToProps
)(
Form
.
create
()(
LoginForm
));
export
default
connect
(
mapStateToProps
)(
Form
.
create
({
onValuesChange
:
(
props
,
values
)
=>
{
if
(
values
.
userName
)
{
props
.
dispatch
({
type
:
'login/setStatus'
,
payload
:
'login'
});
}
},
})(
LoginForm
));
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论