修改管理端跳转地址

管理端接口调用,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

@@ -91,7 +91,7 @@
<el-dropdown-menu slot="dropdown">
<el-dropdown-item><router-link to="/index">学员</router-link></el-dropdown-item>
<el-dropdown-item v-if="identity == 2 || identity == 5" @click.native="setCurIdentity(2)"><router-link to="/need/waitaudit">教师</router-link></el-dropdown-item>
<el-dropdown-item v-if="identity == 3 || identity == 5" @click.native="setCurIdentity(3)"><router-link to="/course/manage">管理员</router-link></el-dropdown-item>
<el-dropdown-item v-if="identity == 3 || identity == 5" @click.native="setCurIdentity(3)"><router-link :to="`${webBaseUrl}`/manage">管理员</router-link></el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
</div>