修改bug3.0

This commit is contained in:
李志发
2024-05-22 12:20:10 +08:00
parent c7267a0acd
commit 958a93c935
14 changed files with 354 additions and 320 deletions

View File

@@ -49,9 +49,9 @@ export default {
query: {teacherId: this.newTeacherId}
})
} else {
this.isFalse = false
this.$router.push('/need/lecturer')
}
}else {
} else {
this.$message({
message: res.msg,
type: 'error'
@@ -135,7 +135,7 @@ export default {
}
})
},
getJumplist(){
getJumplist() {
this.$router.push('/need/lecturer')
}
}
@@ -176,7 +176,9 @@ export default {
<div>
<el-col :span="11">
<el-form-item label="认证课程名称:" prop="courseName">
{{ form.courseName }}
<div style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;cursor: pointer;" :title="form.courseName">
{{ form.courseName }}
</div>
</el-form-item>
</el-col>
<el-col :span="11" :offset="2">
@@ -203,7 +205,7 @@ export default {
<img style="width: 100%;" v-if="item.courseImage!=''" :src="item.courseImage">
<img style="width: 100%;" v-else :src="fileBaseUrl+'/pc/images/bgimg/course.png'">
</div>
<div class="courseName">{{ item.courseName }}</div>
<div class="courseName" :title="item.courseName">{{ item.courseName }}</div>
<div class="smallTitle">当前进度</div>
<el-progress :percentage="parseInt(item.progress)"
:color="parseInt(item.progress)=='100'?'#31AF0D':'#FFA050'"></el-progress>
@@ -235,11 +237,11 @@ export default {
很遗憾您的认证分数为{{ result.avgScore }}没有通过认证
</div>
</div>
<div class="twoFactorAuthentication" v-if="statusInfo.reviewResult==1&&isFalse&&statusInfo.second!=2">
<div class="twoFactorAuthentication" v-if="statusInfo.reviewResult==1&&statusInfo.second==0">
<img src="../../assets/images/rightImg.png" alt="">
<div class="titleAuthentication">是否进行二次认证</div>
<div class="yes" @click="getoFactor(1)"></div>
<div class="no" @click="getJumplist"></div>
<div class="no" @click="getoFactor(2)"></div>
</div>
</div>
</template>
@@ -274,6 +276,11 @@ export default {
color: #333333;
font-size: 14px;
margin-top: 12px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
cursor: pointer;
width: 100%;
}
.smallTitle {
@@ -298,7 +305,7 @@ export default {
.score {
margin-top: 28px;
font-size: 14px;
font-size: 18px;
color: #333333;
font-weight: 400;
}
@@ -311,18 +318,21 @@ export default {
border-radius: 6px;
display: flex;
align-items: center;
img{
img {
width: 20px;
height: 20px;
margin-left: 23px;
}
.titleAuthentication{
.titleAuthentication {
font-weight: 500;
font-size: 16px;
color: #333333;
margin-left: 16px;
}
.yes{
.yes {
width: 64px;
height: 24px;
background: #409EFF;
@@ -337,10 +347,11 @@ export default {
margin-left: 20px;
cursor: pointer;
}
.no{
.no {
width: 64px;
height: 24px;
background:rgba(64,158,255,0.1);
background: rgba(64, 158, 255, 0.1);
border: 1px solid #409EFF;
font-weight: 400;
font-size: 14px;
@@ -377,4 +388,12 @@ export default {
color: #333333;
line-height: 40px;
}
.over {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
cursor: pointer;
width: 580px;
}
</style>