Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-Mob-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-Mob-R7-Res
提交
76969c95
提交
76969c95
编写于
8月 20, 2020
作者:
Neuromancer255
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
登录页样式调整
上级
8087ed0f
变更
2
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
59 行增加
和
37 行删除
+59
-37
login.less
src/components/login/login.less
+50
-20
login.vue
src/components/login/login.vue
+9
-17
未找到文件。
src/components/login/login.less
浏览文件 @
76969c95
.app-login {
ion-header, ion-content {
--background: transparent;
ion-toolbar {
--background: transparent;
}
}
background-image: url('../../../public/assets/images/login_background.jpg');
&-contant {
display: flex;
align-items: center;
height: 100%;
}
&-form {
height: 200px;
width: 100%;
ion-list, .button {
width: 100%;
}
}
.app-login-contant{
width: 100%;
height: 100%;
background: linear-gradient(45deg, #8e9eab, #eef2f3);
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
}
.ibizLogo{
margin-top: 20vh;
width: 86px;
height: 40px;
}
.app-login-form{
width: 90vw;
height: 40vh;
border-radius: 10px;
background-color: white;
margin-top: 40px;
display: flex;
flex-direction: column;
justify-content: space-around;
box-shadow: -5px 5px 10px #8e9eab;
}
.ion-no-margin{
margin: auto;
--background: linear-gradient(to left, #7BC6CC, #BE93C5) !important;
--background-activated:linear-gradient(to left, #5FC3E4, #E55D87) !important;
--background-activated-opacity:0.8;
--transition: --background 2s;
font-size: 1.2rem;
--border-radius: 20px;
margin-top: 20px;
height: 38px;
width: 92%;
}
ion-input{
--background:#f1f1f1 !important;
border-radius: 20px;
width: 90% !important;
height: 44.8px !important;
margin:auto;
margin-top: 1vh;
--padding-start:20px !important;
}
ion-label{
margin-left: 5vw;
font-size: 1rem !important;
}
\ No newline at end of file
src/components/login/login.vue
浏览文件 @
76969c95
<
template
>
<ion-page
:className=
"
{ 'app-login': true }">
<ion-header>
<ion-toolbar>
<ion-buttons
slot=
"end"
>
<img
src=
"assets/images/logo.png"
/>
</ion-buttons>
</ion-toolbar>
</ion-header>
<ion-content
fullscreen
>
<div
class=
"app-login-contant"
>
<img
src=
"assets/images/logo.png"
class=
"ibizLogo"
/>
<form
class=
"app-login-form"
>
<ion-list
lines=
"full"
class=
" ion-no-padding"
>
<ion-item>
<ion-label
position=
"floating"
>
{{
$t
(
'username'
)
}}
<ion-text
color=
"danger"
>
*
</ion-text></ion-label>
<ion-input
required
type=
"text"
debounce=
"100"
:value=
"username"
@
ionChange=
"($event) => username = $event.detail.value"
></ion-input>
</ion-item>
<ion-item>
<ion-label
position=
"floating"
>
{{
$t
(
'password'
)
}}
<ion-text
color=
"danger"
>
*
</ion-text></ion-label>
<ion-input
required
type=
"password"
debounce=
"100"
:value=
"password"
@
ionChange=
"($event) => password = $event.detail.value"
></ion-input>
</ion-item>
</ion-list>
<ion-item
lines=
"none"
>
<ion-label
position=
"stacked"
>
{{
$t
(
'username'
)
}}
:
</ion-label>
<ion-input
clear-input
required
type=
"text"
debounce=
"100"
:value=
"username"
@
ionChange=
"($event) => username = $event.detail.value"
></ion-input>
</ion-item>
<ion-item
lines=
"none"
>
<ion-label
position=
"stacked"
>
{{
$t
(
'password'
)
}}
:
</ion-label>
<ion-input
clear-input
required
type=
"password"
debounce=
"100"
:value=
"password"
@
ionChange=
"($event) => password = $event.detail.value"
></ion-input>
</ion-item>
<div
class=
"ion-padding button"
>
<ion-button
expand=
"block"
:disabled=
"isLoadding"
class=
"ion-no-margin"
@
click=
"login"
>
{{
$t
(
'submit'
)
}}
</ion-button>
</div>
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录