maxkb/ui/src/views/authentication/index.vue
2024-07-09 17:50:37 +08:00

62 lines
1.7 KiB
Vue

<template>
<div class="authentication-setting p-24">
<h4>登录认证</h4>
<el-tabs v-model="activeName" class="demo-tabs" @tab-click="handleClick">
<template v-for="(item, index) in tabList" :key="index">
<el-tab-pane :label="item.label" :name="item.name">
<div class="authentication-setting__main main-calc-height">
<div class="form-container">
<el-scrollbar>
<component :is="item.component" />
</el-scrollbar>
</div>
</div>
</el-tab-pane>
</template>
</el-tabs>
</div>
</template>
<script setup lang="ts">
import { reactive, ref, computed, onMounted } from 'vue'
import emailApi from '@/api/email-setting'
import type { FormInstance, FormRules } from 'element-plus'
import { MsgSuccess } from '@/utils/message'
import LDAP from './component/LDAP.vue'
const activeName = ref('LDAP')
const tabList = [
{
label: 'LDAP设置',
name: 'LDAP',
component: LDAP
}
]
// 动态引入组件
const loadComponent = async (componentName: string) => {
await import(`./component/${componentName}.vue`).then((res) => res.default)
}
const currentComponent = computed(() => loadComponent(activeName.value))
function handleClick() {}
onMounted(() => {})
</script>
<style lang="scss" scoped>
.authentication-setting__main {
background-color: var(--app-view-bg-color);
box-sizing: border-box;
min-width: 700px;
height: calc(100vh - var(--app-header-height) - var(--app-view-padding) * 2 - 80px);
box-sizing: border-box;
.form-container {
width: 70%;
margin: 0 auto;
:deep(.el-checkbox__label) {
font-weight: 400;
}
}
}
</style>