修改管理端跳转地址

管理端接口调用,401,不再跳转登录,不过打印错误信息
This commit is contained in:
daihh
2023-07-28 10:58:22 +08:00
parent a6054bb863
commit 231fe35ce5
3 changed files with 7 additions and 5 deletions

View File

@@ -48,7 +48,7 @@
<div style="margin-top:10px">
<router-link to="/study/index"><span :class="{identity:true,active:curIdentity==1}" @click="setCurIdentity(1)">学员</span></router-link>
<router-link to="/teacher/index"><span v-if="identity == 2 || identity == 5" :class="{identity:true,active:curIdentity==2}" @click="setCurIdentity(2)">教师</span></router-link>
<span v-if="identity == 3 || identity == 5" :class="{identity:true,active:curIdentity==3}" @click="setCurIdentity(3)">管理员</span>
<router-link :to="`${webBaseUrl}`/manage"><span v-if="identity == 3 || identity == 5" :class="{identity:true,active:curIdentity==3}" >管理员</span></router-link>
</div>
</div>
</div>