Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7-Res
提交
847f4cad
提交
847f4cad
编写于
11月 10, 2022
作者:
Cano1997
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update:登录组件优化
上级
ed06d31e
变更
4
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
32 行增加
和
16 行删除
+32
-16
app-login-captcha.vue
...out-element/login/app-login-captcha/app-login-captcha.vue
+11
-1
app-login-note-verify.vue
...ent/login/app-login-note-verify/app-login-note-verify.vue
+14
-11
app-login-third.less
...layout-element/login/app-login-third/app-login-third.less
+3
-0
app-login-third.vue
.../layout-element/login/app-login-third/app-login-third.vue
+4
-4
未找到文件。
src/components/layout-element/login/app-login-captcha/app-login-captcha.vue
浏览文件 @
847f4cad
<
template
>
<div
:class=
"curClassName"
:style=
"curStyle"
>
<auth-puzzle-vcode
:show=
"show"
@
success=
"onSuccess"
@
fail=
"onFail"
/>
<i-button
:type=
"type"
@
click=
"executeOpen"
>
验证
</i-button>
<i-button
:type=
"type"
@
click=
"executeOpen"
>
验证
<
Icon
v-show=
"showIcon"
type=
"md-checkmark"
/><
/i-button>
</div>
</
template
>
...
...
@@ -57,6 +57,11 @@ export default class AppLoginCaptcha extends Vue {
*/
public
type
:
string
=
'default'
;
/**
* 按钮类型
*/
public
showIcon
:
boolean
=
false
;
/**
* 项名称
*
...
...
@@ -113,6 +118,7 @@ export default class AppLoginCaptcha extends Vue {
public
onSuccess
()
{
this
.
show
=
false
;
this
.
type
=
'success'
;
this
.
showIcon
=
true
;
this
.
$emit
(
"valueChange"
,
{
name
:
this
.
itemName
,
value
:
true
});
}
...
...
@@ -120,6 +126,7 @@ export default class AppLoginCaptcha extends Vue {
* 失败
*/
public
onFail
()
{
this
.
showIcon
=
false
;
this
.
$emit
(
"valueChange"
,
{
name
:
this
.
itemName
,
value
:
false
});
}
}
...
...
@@ -138,6 +145,9 @@ export default class AppLoginCaptcha extends Vue {
border: 1px solid #dcdee2;
color: #515a6e;
}
.ivu-icon {
margin-left: 8px;
}
}
}
</
style
>
src/components/layout-element/login/app-login-note-verify/app-login-note-verify.vue
浏览文件 @
847f4cad
...
...
@@ -7,7 +7,7 @@
disabled
?
`${delay
}
s ${$t("components.login.getcodeafter")
}
`
:
`${$t("components.login.getcode")
}
`
}}
<
/el-button
>
<
/div
>
<
alert
v
-
show
=
"
phone
Error"
type
=
"error"
>
电话号码格式错误
<
/alert
>
<
alert
v
-
show
=
"
verify
Error"
type
=
"error"
>
电话号码格式错误
<
/alert
>
<
div
class
=
"code"
v
-
show
=
"show"
>
<
i
-
input
size
=
"default"
type
=
"text"
:
value
=
"currentValue"
@
input
=
"codeChange"
:
placeholder
=
"$t('components.login.codeplaceholder')"
><
/i-input
>
...
...
@@ -81,11 +81,11 @@ export default class AppLoginNoteVerify extends Vue {
public
phoneNumber
:
string
=
""
;
/**
*
错误提示
*
校验失败
* @type {*
}
* @memberof AppLoginNoteVerify
*/
public
phone
Error
=
false
;
public
verify
Error
=
false
;
/**
* 是否禁用获取验证码按钮
...
...
@@ -155,9 +155,10 @@ export default class AppLoginNoteVerify extends Vue {
* @description 校验手机号
* @memberof AppLoginNoteVerify
*/
public
veriPhoneNumber
():
boolean
{
this
.
phoneError
=
!
/^1
[
3-9
]\d
{9
}
$/
.
test
(
this
.
phoneNumber
);
return
this
.
phoneError
;
public
veriPhoneNumber
()
{
if
(
this
.
phoneNumber
)
{
this
.
verifyError
=
!
/^1
[
3-9
]\d
{9
}
$/
.
test
(
this
.
phoneNumber
);
}
}
/**
...
...
@@ -181,12 +182,14 @@ export default class AppLoginNoteVerify extends Vue {
* @memberof AppLoginNoteVerify
*/
public
getVeriCode
()
{
if
(
this
.
phoneError
)
return
;
this
.
veriPhoneNumber
();
if
(
this
.
phoneNumber
&&
!
this
.
verifyError
)
{
// todo 获取验证码
this
.
show
=
true
;
this
.
disabled
=
true
;
this
.
setDelay
();
}
}
}
<
/script
>
...
...
src/components/layout-element/login/app-login-third/app-login-third.less
浏览文件 @
847f4cad
...
...
@@ -7,5 +7,8 @@
display: flex;
align-items: center;
justify-content: center;
.app-login-third__btn {
padding: 0 4px;
}
}
}
\ No newline at end of file
src/components/layout-element/login/app-login-third/app-login-third.vue
浏览文件 @
847f4cad
...
...
@@ -2,10 +2,10 @@
<div
:class=
"curClassName"
:style=
"curStyle"
>
<div
class=
"app-login-third__title"
>
{{
$t
(
"components.login.other"
)
}}
</div>
<div
class=
"app-login-third__content"
>
<div
class=
"
sign-
btn"
@
click=
"handleThirdLogin('DINGDING')"
>
<div
class=
"
app-login-third__
btn"
@
click=
"handleThirdLogin('DINGDING')"
>
<img
class=
"third-svg-container"
src=
"@/assets/img/dingding.svg"
/>
</div>
<div
class=
"
sign-
btn"
@
click=
"handleThirdLogin('WXWORK')"
>
<div
class=
"
app-login-third__
btn"
@
click=
"handleThirdLogin('WXWORK')"
>
<img
class=
"third-svg-container"
src=
"@/assets/img/qiyeweixin.svg"
/>
</div>
</div>
...
...
@@ -109,7 +109,7 @@ export default class AppThirdLogin extends Vue {
* @memberof AppThirdLogin
*/
async
dingTalkHandleClick
()
{
this
.
$message
({
message
:
'暂未支持钉钉登录'
,
type
:
'warning'
});
}
/**
...
...
@@ -118,7 +118,7 @@ export default class AppThirdLogin extends Vue {
* @memberof AppThirdLogin
*/
async
wxWorkHandleClick
()
{
this
.
$message
({
message
:
'暂未支持微信登录'
,
type
:
'warning'
});
}
}
</
script
>
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录