Commit 975e0b11 authored by Facius's avatar Facius

考试页面高保真优化

parent 3fb9889a
...@@ -45,9 +45,6 @@ ...@@ -45,9 +45,6 @@
.settle-bottom { .settle-bottom {
position: fixed; position: fixed;
bottom: 44rpx; bottom: 44rpx;
width: 100%; width: 100%;
display: flex;
align-items: center;
justify-content: center;
} }
</style> </style>
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
<!-- <template v-if="isStart==true && currentItem"> --> <!-- <template v-if="isStart==true && currentItem"> -->
<view class="bottom-padding" v-if="currentItem"> <view class="bottom-padding" v-if="currentItem">
<view class="title-view"> <view class="title-view">
<view class="title-text"> <view :class="['title-text', {'radio': currentItem.question.answerType == 1}]">
<text>{{ titleText[Math.max(0, currentItem.question.answerType - 1)] }}</text> <text>{{ titleText[Math.max(0, currentItem.question.answerType - 1)] }}</text>
</view> </view>
<view class="title-right-view"> <view class="title-right-view">
...@@ -737,7 +737,10 @@ ...@@ -737,7 +737,10 @@
height: 40rpx; height: 40rpx;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
&.radio {
background-color: #2272FF;
}
} }
.title-right-view { .title-right-view {
...@@ -757,7 +760,7 @@ ...@@ -757,7 +760,7 @@
} }
.time-count-down { .time-count-down {
width: 80rpx; width: 50rpx;
text-align: right; text-align: right;
} }
} }
......
...@@ -161,7 +161,8 @@ ...@@ -161,7 +161,8 @@
// 后台自动判断入驻流程是否完成,前台通过status确定状态 // 后台自动判断入驻流程是否完成,前台通过status确定状态
if (result && result.record) { if (result && result.record) {
vm.loaded = true; vm.loaded = true;
vm.status = Number(result.record.status); vm.status = Number(result.record.status);
// vm.status = 2
} }
}; };
await app.getBaseInfo(this, callBack); await app.getBaseInfo(this, callBack);
......
...@@ -227,18 +227,18 @@ ...@@ -227,18 +227,18 @@
margin-top: 20rpx; margin-top: 20rpx;
} }
.bottom_btn { // .bottom_btn {
width: 600rpx; // width: 600rpx;
height: 104rpx; // height: 104rpx;
line-height: 96rpx; // line-height: 96rpx;
display: flex; // display: flex;
align-items: center; // align-items: center;
justify-content: center; // justify-content: center;
.bottom_title { // .bottom_title {
color: #fff; // color: #fff;
} // }
} // }
.bottom_title { .bottom_title {
font-weight: bold; font-weight: bold;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment