|
@@ -62,7 +62,7 @@
|
|
|
</label>
|
|
|
</view>
|
|
|
</view>
|
|
|
-
|
|
|
+
|
|
|
<view class="check-box">
|
|
|
<view class="photo">
|
|
|
<img src="../../../assets/img/zixuan.png" alt="">
|
|
@@ -218,8 +218,8 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <u-modal v-model="show" @confirm="confirm" confirm-color="#FF3D00" :show-cancel-button="true" ref="uModal" :asyncClose="true" :title="title"
|
|
|
- :content="content" :content-style="{color: '#333333'}"></u-modal>
|
|
|
+ <u-modal v-model="show" @confirm="confirm" confirm-color="#FF3D00" :show-cancel-button="true" ref="uModal"
|
|
|
+ :asyncClose="true" :title="title" :content="content" :content-style="{color: '#333333'}"></u-modal>
|
|
|
|
|
|
</view>
|
|
|
|
|
@@ -258,7 +258,7 @@
|
|
|
uni.showLoading({
|
|
|
title: "加载中",
|
|
|
mask: true,
|
|
|
- })
|
|
|
+ })
|
|
|
mineApi.studentList().then((res) => {
|
|
|
uni.hideLoading();
|
|
|
this.studentList = res.data.studentList;
|
|
@@ -276,7 +276,7 @@
|
|
|
uni.showLoading({
|
|
|
title: "加载中",
|
|
|
mask: true,
|
|
|
- })
|
|
|
+ })
|
|
|
API.logout().then((res) => {
|
|
|
uni.hideLoading();
|
|
|
this.show = false;
|
|
@@ -364,10 +364,11 @@
|
|
|
margin-top: 12px;
|
|
|
border-radius: 16rpx;
|
|
|
background-color: rgba(255, 255, 255, 1);
|
|
|
- padding: 24rpx;
|
|
|
- display: flex;
|
|
|
- justify-content: space-around;
|
|
|
-
|
|
|
+ padding: 24rpx 24rpx 8rpx 24rpx;
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+
|
|
|
+
|
|
|
.check-box {
|
|
|
padding: 16rpx 40rpx 16rpx 16rpx;
|
|
|
border-radius: 100rpx;
|
|
@@ -375,7 +376,8 @@
|
|
|
border: 1px solid rgba(13, 186, 199, 0.5);
|
|
|
display: flex;
|
|
|
position: relative;
|
|
|
-
|
|
|
+ margin-right: 24rpx;
|
|
|
+ margin-bottom:16rpx;
|
|
|
.photo {
|
|
|
width: 80rpx;
|
|
|
height: 80rpx;
|
|
@@ -387,11 +389,29 @@
|
|
|
height: 100%;
|
|
|
}
|
|
|
}
|
|
|
+ @media screen and(max-width:320px){
|
|
|
+ .photo {
|
|
|
+ width: 70rpx;
|
|
|
+ height: 70rpx;
|
|
|
+ border-radius: 999rpx;
|
|
|
+ overflow: hidden;
|
|
|
+
|
|
|
+ img {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ vertical-align: middle;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
.infos {
|
|
|
margin-left: 16rpx;
|
|
|
|
|
|
.name {
|
|
|
+ width: 96rpx;
|
|
|
+ overflow: hidden;
|
|
|
+ white-space: nowrap;
|
|
|
+ text-overflow: ellipsis;
|
|
|
color: rgba(51, 51, 51, 1);
|
|
|
font-size: 32rpx;
|
|
|
line-height: 48rpx;
|
|
@@ -422,7 +442,11 @@
|
|
|
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+ @media screen and(max-width:320px) {
|
|
|
+ .check-box{
|
|
|
+ margin-right:16rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|