maxkb/ui/src/views/authentication/index.vue
2024-07-19 16:27:12 +08:00

52 lines
1.3 KiB
Vue

<template>
<div class="authentication-setting p-16-24">
<h4>{{ $t('login.authentication') }}</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">
<el-scrollbar>
<div class="form-container">
<component :is="item.component" />
</div>
</el-scrollbar>
</div>
</el-tab-pane>
</template>
</el-tabs>
</div>
</template>
<script setup lang="ts">
import { ref, computed, onMounted } from 'vue'
import LDAP from './component/LDAP.vue'
import { t } from '@/locales'
const activeName = ref('LDAP')
const tabList = [
{
label: t('login.ldap.title'),
name: 'LDAP',
component: LDAP
}
]
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 - 70px);
box-sizing: border-box;
.form-container {
width: 70%;
margin: 0 auto;
:deep(.el-checkbox__label) {
font-weight: 400;
}
}
}
</style>