Merge pull request 'zxl' (#27) from zxl into main

Reviewed-on: #27
This commit is contained in:
zhangxuelin 2024-11-12 14:34:17 +08:00
commit 488ad420d7
1 changed files with 5 additions and 2 deletions

View File

@ -12,7 +12,7 @@
<div class="head-aside">
<ul >
<li :class="computedregistertype==1 || computedregistertype==3?'auth-li':'auth-li pointer-events'" @click="onUserTo('/schoolCertification')" >
<i class="iconfont icon-renzheng-"></i>
<i class="iconfont icon-renzheng-" :style="computedregistertype==4?'color:green;':''"></i>
<span class="mlr-5" v-if="computedregistertype!=4">学校认证</span>
<span class="mlr-5" v-else>{{ userStore.DeptInfo.register.schoolName }}</span>
<span class="gray" v-if="computedregistertype!=4">未认证</span>
@ -118,7 +118,6 @@ const computedregistertype = computed(() => {
}
//
if(type==3 && userStore.DeptInfo.register.auditStatus==1){
console.log(1111)
return 4
}
if(type==4 && userStore.DeptInfo.register.auditStatus==1){
@ -310,4 +309,8 @@ onMounted(() => {
.pointer-events{
pointer-events: none;
}
.icon-renzheng-{
font-size: 18px;
font-weight: 800;
}
</style>