- 从服务器拉取完整代码 - 按框架规范整理项目结构 - 配置 Drone CI 测试环境部署 - 包含后端(FastAPI)、前端(Vue3)、管理端 技术栈: Vue3 + TypeScript + FastAPI + MySQL
235 lines
6.2 KiB
Vue
235 lines
6.2 KiB
Vue
<template>
|
|
<el-container class="layout-container">
|
|
<!-- 侧边栏 -->
|
|
<el-aside :width="isCollapsed ? '64px' : '220px'" class="layout-aside">
|
|
<div class="logo">
|
|
<span v-if="!isCollapsed">考培练管理</span>
|
|
<span v-else>KPL</span>
|
|
</div>
|
|
|
|
<el-menu
|
|
:default-active="activeMenu"
|
|
:collapse="isCollapsed"
|
|
:collapse-transition="false"
|
|
background-color="#1a1a2e"
|
|
text-color="#a0aec0"
|
|
active-text-color="#fff"
|
|
router
|
|
>
|
|
<el-menu-item index="/dashboard">
|
|
<el-icon><Odometer /></el-icon>
|
|
<template #title>控制台</template>
|
|
</el-menu-item>
|
|
|
|
<el-menu-item index="/tenants">
|
|
<el-icon><OfficeBuilding /></el-icon>
|
|
<template #title>租户管理</template>
|
|
</el-menu-item>
|
|
|
|
<el-menu-item index="/prompts">
|
|
<el-icon><Document /></el-icon>
|
|
<template #title>提示词管理</template>
|
|
</el-menu-item>
|
|
|
|
<el-menu-item index="/logs">
|
|
<el-icon><List /></el-icon>
|
|
<template #title>操作日志</template>
|
|
</el-menu-item>
|
|
</el-menu>
|
|
</el-aside>
|
|
|
|
<el-container>
|
|
<!-- 顶部导航 -->
|
|
<el-header class="layout-header">
|
|
<div class="header-left">
|
|
<el-icon
|
|
class="collapse-btn"
|
|
@click="isCollapsed = !isCollapsed"
|
|
>
|
|
<Fold v-if="!isCollapsed" />
|
|
<Expand v-else />
|
|
</el-icon>
|
|
|
|
<el-breadcrumb separator="/">
|
|
<el-breadcrumb-item :to="{ path: '/' }">首页</el-breadcrumb-item>
|
|
<el-breadcrumb-item v-if="$route.meta.title">
|
|
{{ $route.meta.title }}
|
|
</el-breadcrumb-item>
|
|
</el-breadcrumb>
|
|
</div>
|
|
|
|
<div class="header-right">
|
|
<el-dropdown @command="handleCommand">
|
|
<span class="user-info">
|
|
<el-avatar :size="32" :icon="UserFilled" />
|
|
<span class="username">{{ authStore.user?.full_name || authStore.user?.username }}</span>
|
|
<el-icon><ArrowDown /></el-icon>
|
|
</span>
|
|
<template #dropdown>
|
|
<el-dropdown-menu>
|
|
<el-dropdown-item command="password">修改密码</el-dropdown-item>
|
|
<el-dropdown-item command="logout" divided>退出登录</el-dropdown-item>
|
|
</el-dropdown-menu>
|
|
</template>
|
|
</el-dropdown>
|
|
</div>
|
|
</el-header>
|
|
|
|
<!-- 主内容区 -->
|
|
<el-main class="layout-main">
|
|
<router-view />
|
|
</el-main>
|
|
</el-container>
|
|
</el-container>
|
|
|
|
<!-- 修改密码对话框 -->
|
|
<el-dialog v-model="passwordDialogVisible" title="修改密码" width="400px">
|
|
<el-form ref="passwordFormRef" :model="passwordForm" :rules="passwordRules" label-width="80px">
|
|
<el-form-item label="旧密码" prop="old_password">
|
|
<el-input v-model="passwordForm.old_password" type="password" show-password />
|
|
</el-form-item>
|
|
<el-form-item label="新密码" prop="new_password">
|
|
<el-input v-model="passwordForm.new_password" type="password" show-password />
|
|
</el-form-item>
|
|
</el-form>
|
|
<template #footer>
|
|
<el-button @click="passwordDialogVisible = false">取消</el-button>
|
|
<el-button type="primary" :loading="passwordLoading" @click="handleChangePassword">确定</el-button>
|
|
</template>
|
|
</el-dialog>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref, reactive, computed } from 'vue'
|
|
import { useRoute, useRouter } from 'vue-router'
|
|
import { ElMessage, ElMessageBox } from 'element-plus'
|
|
import {
|
|
Odometer, OfficeBuilding, Document, List,
|
|
Fold, Expand, UserFilled, ArrowDown
|
|
} from '@element-plus/icons-vue'
|
|
import { useAuthStore } from '@/stores/auth'
|
|
import api from '@/api'
|
|
|
|
const route = useRoute()
|
|
const router = useRouter()
|
|
const authStore = useAuthStore()
|
|
|
|
const isCollapsed = ref(false)
|
|
const activeMenu = computed(() => route.path)
|
|
|
|
// 修改密码
|
|
const passwordDialogVisible = ref(false)
|
|
const passwordLoading = ref(false)
|
|
const passwordFormRef = ref()
|
|
const passwordForm = reactive({
|
|
old_password: '',
|
|
new_password: ''
|
|
})
|
|
const passwordRules = {
|
|
old_password: [{ required: true, message: '请输入旧密码', trigger: 'blur' }],
|
|
new_password: [
|
|
{ required: true, message: '请输入新密码', trigger: 'blur' },
|
|
{ min: 6, message: '密码长度至少6位', trigger: 'blur' }
|
|
]
|
|
}
|
|
|
|
function handleCommand(command) {
|
|
if (command === 'logout') {
|
|
ElMessageBox.confirm('确定要退出登录吗?', '提示', {
|
|
type: 'warning'
|
|
}).then(() => {
|
|
authStore.logout()
|
|
router.push('/login')
|
|
}).catch(() => {})
|
|
} else if (command === 'password') {
|
|
passwordForm.old_password = ''
|
|
passwordForm.new_password = ''
|
|
passwordDialogVisible.value = true
|
|
}
|
|
}
|
|
|
|
async function handleChangePassword() {
|
|
await passwordFormRef.value.validate()
|
|
|
|
passwordLoading.value = true
|
|
try {
|
|
await api.auth.changePassword(passwordForm)
|
|
ElMessage.success('密码修改成功')
|
|
passwordDialogVisible.value = false
|
|
} finally {
|
|
passwordLoading.value = false
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.layout-container {
|
|
height: 100vh;
|
|
}
|
|
|
|
.layout-aside {
|
|
background: #1a1a2e;
|
|
transition: width 0.3s;
|
|
overflow: hidden;
|
|
|
|
.logo {
|
|
height: 60px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #fff;
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.el-menu {
|
|
border-right: none;
|
|
}
|
|
}
|
|
|
|
.layout-header {
|
|
background: #fff;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 0 20px;
|
|
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
|
|
|
|
.header-left {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 16px;
|
|
|
|
.collapse-btn {
|
|
font-size: 20px;
|
|
cursor: pointer;
|
|
color: #666;
|
|
|
|
&:hover {
|
|
color: #409eff;
|
|
}
|
|
}
|
|
}
|
|
|
|
.header-right {
|
|
.user-info {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
cursor: pointer;
|
|
|
|
.username {
|
|
color: #333;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.layout-main {
|
|
background: #f5f7fa;
|
|
padding: 20px;
|
|
}
|
|
</style>
|
|
|