Browse Source
1. 新增医生端登录页自定义toast组件替换van-popup 2. 完善医生个人信息、出诊信息管理逻辑 3. 优化首页、医院页、医生详情页UI展示与数据绑定 4. 调整登录校验逻辑,医生登录后直接跳转医生端首页 5. 新增医生端退出切换页面与样式 6. 新增医生端接口文档 7. 修复多处样式bug与布局问题master
21 changed files with 1320 additions and 121 deletions
@ -1,35 +1,42 @@
@@ -1,35 +1,42 @@
|
||||
.page { |
||||
padding: 88rpx 60rpx; |
||||
padding: 0 60rpx; |
||||
width: 100%; |
||||
height: 100vh; |
||||
box-sizing: border-box; |
||||
.logo { |
||||
margin: 182rpx auto 0; |
||||
display: block; |
||||
width: 290rpx; |
||||
height: 362rpx; |
||||
} |
||||
.submit { |
||||
margin-top: 700rpx; |
||||
height: 84rpx; |
||||
margin-top: 36rpx; |
||||
height: 96rpx; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: center; |
||||
font-size: 36rpx; |
||||
color: rgba(255, 255, 255, 1); |
||||
background: #67baca; |
||||
border-radius: 64rpx 64rpx 64rpx 64rpx; |
||||
color: #1679cb; |
||||
border-radius: 12rpx 12rpx 12rpx 12rpx; |
||||
border: 2rpx solid #1679cb; |
||||
box-sizing: border-box; |
||||
} |
||||
.back { |
||||
margin-top: 36rpx; |
||||
height: 84rpx; |
||||
margin-top: 112rpx; |
||||
height: 96rpx; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: center; |
||||
font-size: 36rpx; |
||||
color: rgba(103, 186, 202, 1); |
||||
background: rgba(103, 186, 202, 0.12); |
||||
border-radius: 64rpx 64rpx 64rpx 64rpx; |
||||
color: #ffffff; |
||||
background: linear-gradient(90deg, #293b9f 0%, #1679cb 100%); |
||||
border-radius: 12rpx; |
||||
} |
||||
.tip{ |
||||
.tip { |
||||
margin-top: 82rpx; |
||||
font-size: 32rpx; |
||||
color: rgba(194, 201, 202, 1); |
||||
line-height: 48rpx; |
||||
color: rgba(33, 33, 32, 0.7); |
||||
line-height: 64rpx; |
||||
text-align: center; |
||||
} |
||||
} |
||||
|
||||
Loading…
Reference in new issue