登录,设置密码,修改密码,我的,首页,会议列表(接口逻辑已写,差加密文件的完善,代联调)

This commit is contained in:
姚亚男
2021-09-30 16:13:12 +08:00
parent d46f96d263
commit 8a2500b5a5
75 changed files with 1532 additions and 58 deletions
+71
View File
@@ -767,4 +767,75 @@ color: #2A2A2A;
bottom: 0;
width: 100%;
border-top: 10rpx solid #f6f8fc;
}
/*
* author: yaoyanan
* remark: 表单的基本样式
*/
.form-box{
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
padding: 10px;
box-sizing: border-box;
}
.form-item{
display: flex;
width: 300px;
justify-content: center;
align-items: center;
height: 30px;
}
.form-item:not(:first-child){
margin-top: 20px;
}
.form-item .text-label{
width: 65px;
flex-shrink: 0;
text-align: right;
font-size: 16px;
color: #333;
margin-right: 15px;
}
.form-item .text-value{
flex: 1;
}
.form-item .text-value .flex-center{
display: flex;
align-items: center;
margin-right: 10px;
}
.form-item .text-value input{
font-size: 12px;
color: #333;
border: 0.5px solid #eee;
height: 30px;
padding-left: 10px;
box-sizing: border-box;
border-radius: 5px;
}
.form-box .btn-area button{
margin: auto;
width: 100%;
margin-top: 50px;
}
.form-item .captcha{
width: 70px;
margin-left: 10px;
height: 30px;
background-color: #07c160;
color: #fff;
font-size: 12px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 5px;
padding: 5px;
box-sizing: border-box;
}
.form-item .count{
background-color: #aaa;
}