feat: 增加可信应用免登录接入
This commit is contained in:
@@ -44,6 +44,9 @@ const RetrievalLogView = defineAsyncComponent(
|
||||
const UserManagementView = defineAsyncComponent(
|
||||
() => import("./components/UserManagementView.vue"),
|
||||
);
|
||||
const SsoIntegrationView = defineAsyncComponent(
|
||||
() => import("./components/SsoIntegrationView.vue"),
|
||||
);
|
||||
|
||||
const admin = ref<AdminProfile | null>(null);
|
||||
const activeMenu = ref("dashboard");
|
||||
@@ -608,6 +611,12 @@ async function clearFeishuCache() {
|
||||
>
|
||||
系统配置
|
||||
</button>
|
||||
<button
|
||||
:class="{ active: activeMenu === 'sso' }"
|
||||
@click="switchMenu('sso')"
|
||||
>
|
||||
应用接入
|
||||
</button>
|
||||
<button
|
||||
:class="{ active: activeMenu === 'records' }"
|
||||
@click="switchMenu('records')"
|
||||
@@ -1003,6 +1012,8 @@ async function clearFeishuCache() {
|
||||
v-if="activeMenu === 'content-generation'"
|
||||
/>
|
||||
|
||||
<SsoIntegrationView v-if="activeMenu === 'sso'" />
|
||||
|
||||
<template v-if="activeMenu === 'configs'">
|
||||
<div class="page-head inline">
|
||||
<div>
|
||||
|
||||
Reference in New Issue
Block a user