增加后台管理模块

This commit is contained in:
2025-10-27 23:57:31 +08:00
parent 3c1ba8e801
commit 0016453f20
420 changed files with 5650 additions and 1449 deletions
+194
View File
@@ -0,0 +1,194 @@
<template>
<div class="dashboard">
<h2 class="page-title">仪表盘</h2>
<el-row :gutter="20" class="stats-row">
<el-col :span="6">
<el-card class="stat-card">
<div class="stat-content">
<div class="stat-icon" style="background-color: #409eff;">
<el-icon><User /></el-icon>
</div>
<div class="stat-info">
<div class="stat-value">1,234</div>
<div class="stat-label">用户总数</div>
</div>
</div>
</el-card>
</el-col>
<el-col :span="6">
<el-card class="stat-card">
<div class="stat-content">
<div class="stat-icon" style="background-color: #67c23a;">
<el-icon><UserFilled /></el-icon>
</div>
<div class="stat-info">
<div class="stat-value">5</div>
<div class="stat-label">管理员总数</div>
</div>
</div>
</el-card>
</el-col>
<el-col :span="6">
<el-card class="stat-card">
<div class="stat-content">
<div class="stat-icon" style="background-color: #e6a23c;">
<el-icon><TrendCharts /></el-icon>
</div>
<div class="stat-info">
<div class="stat-value">89</div>
<div class="stat-label">今日活跃</div>
</div>
</div>
</el-card>
</el-col>
<el-col :span="6">
<el-card class="stat-card">
<div class="stat-content">
<div class="stat-icon" style="background-color: #f56c6c;">
<el-icon><ChatDotRound /></el-icon>
</div>
<div class="stat-info">
<div class="stat-value">456</div>
<div class="stat-label">对话总数</div>
</div>
</div>
</el-card>
</el-col>
</el-row>
<el-row :gutter="20" class="chart-row">
<el-col :span="16">
<el-card>
<template #header>
<span>用户增长趋势</span>
</template>
<div class="chart-container" ref="userChartRef"></div>
</el-card>
</el-col>
<el-col :span="8">
<el-card>
<template #header>
<span>最近登录</span>
</template>
<el-table :data="recentLogins" style="width: 100%">
<el-table-column prop="username" label="用户" />
<el-table-column prop="time" label="时间" />
</el-table>
</el-card>
</el-col>
</el-row>
</div>
</template>
<script setup lang="ts">
import { ref, onMounted } from 'vue'
import { User, UserFilled, TrendCharts, ChatDotRound } from '@element-plus/icons-vue'
import * as echarts from 'echarts'
const userChartRef = ref<HTMLElement>()
const recentLogins = ref([
{ username: '张三', time: '2分钟前' },
{ username: '李四', time: '5分钟前' },
{ username: '王五', time: '10分钟前' },
{ username: '赵六', time: '15分钟前' }
])
onMounted(() => {
initUserChart()
})
const initUserChart = () => {
if (!userChartRef.value) return
const chart = echarts.init(userChartRef.value)
const option = {
tooltip: {
trigger: 'axis'
},
xAxis: {
type: 'category',
data: ['周一', '周二', '周三', '周四', '周五', '周六', '周日']
},
yAxis: {
type: 'value'
},
series: [
{
name: '新增用户',
type: 'line',
data: [12, 23, 18, 29, 35, 42, 38],
smooth: true,
itemStyle: {
color: '#409eff'
}
}
]
}
chart.setOption(option)
window.addEventListener('resize', () => {
chart.resize()
})
}
</script>
<style scoped lang="scss">
.dashboard {
.page-title {
margin-bottom: 20px;
font-size: 24px;
color: #333;
}
.stats-row {
margin-bottom: 20px;
}
.stat-card {
.stat-content {
display: flex;
align-items: center;
gap: 20px;
.stat-icon {
width: 60px;
height: 60px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 28px;
}
.stat-info {
flex: 1;
.stat-value {
font-size: 28px;
font-weight: bold;
color: #333;
margin-bottom: 5px;
}
.stat-label {
font-size: 14px;
color: #999;
}
}
}
}
.chart-container {
height: 300px;
}
}
</style>
+142
View File
@@ -0,0 +1,142 @@
<template>
<div class="login-container">
<div class="login-box">
<div class="login-header">
<h2>情绪博物馆管理后台</h2>
<p>Emotion Museum Admin</p>
</div>
<el-form
ref="loginFormRef"
:model="loginForm"
:rules="loginRules"
class="login-form"
@keyup.enter="handleLogin"
>
<el-form-item prop="account">
<el-input
v-model="loginForm.account"
placeholder="请输入账号"
size="large"
prefix-icon="User"
/>
</el-form-item>
<el-form-item prop="password">
<el-input
v-model="loginForm.password"
type="password"
placeholder="请输入密码"
size="large"
prefix-icon="Lock"
show-password
/>
</el-form-item>
<el-form-item>
<el-button
type="primary"
size="large"
:loading="loading"
class="login-button"
@click="handleLogin"
>
登录
</el-button>
</el-form-item>
</el-form>
<div class="login-footer">
<p>默认账号: admin / admin123</p>
</div>
</div>
</div>
</template>
<script setup lang="ts">
import { ref, reactive } from 'vue'
import { useAdminStore } from '@/stores/admin'
import type { FormInstance, FormRules } from 'element-plus'
import { validateAccount, validatePassword } from '@/utils/validate'
const adminStore = useAdminStore()
const loginFormRef = ref<FormInstance>()
const loading = ref(false)
const loginForm = reactive({
account: '',
password: ''
})
const loginRules: FormRules = {
account: [{ required: true, validator: validateAccount, trigger: 'blur' }],
password: [{ required: true, validator: validatePassword, trigger: 'blur' }]
}
const handleLogin = async () => {
if (!loginFormRef.value) return
await loginFormRef.value.validate(async (valid) => {
if (valid) {
loading.value = true
try {
await adminStore.login(loginForm)
} catch (error) {
console.error('登录失败:', error)
} finally {
loading.value = false
}
}
})
}
</script>
<style scoped lang="scss">
.login-container {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.login-box {
width: 400px;
padding: 40px;
background: #fff;
border-radius: 10px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.login-header {
text-align: center;
margin-bottom: 30px;
h2 {
font-size: 24px;
color: #333;
margin-bottom: 10px;
}
p {
font-size: 14px;
color: #999;
}
}
.login-form {
.login-button {
width: 100%;
}
}
.login-footer {
text-align: center;
margin-top: 20px;
p {
font-size: 12px;
color: #999;
}
}
</style>
+45
View File
@@ -0,0 +1,45 @@
<template>
<div class="not-found">
<div class="content">
<h1>404</h1>
<p>页面不存在</p>
<el-button type="primary" @click="goHome">返回首页</el-button>
</div>
</div>
</template>
<script setup lang="ts">
import { useRouter } from 'vue-router'
const router = useRouter()
const goHome = () => {
router.push('/')
}
</script>
<style scoped lang="scss">
.not-found {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #f0f2f5;
.content {
text-align: center;
h1 {
font-size: 120px;
color: #409eff;
margin-bottom: 20px;
}
p {
font-size: 24px;
color: #666;
margin-bottom: 30px;
}
}
}
</style>
+318
View File
@@ -0,0 +1,318 @@
<template>
<div class="admin-list">
<h2 class="page-title">管理员列表</h2>
<el-card class="search-card">
<el-form :model="searchForm" :inline="true">
<el-form-item label="账号">
<el-input v-model="searchForm.account" placeholder="请输入账号" clearable />
</el-form-item>
<el-form-item label="姓名">
<el-input v-model="searchForm.username" placeholder="请输入姓名" clearable />
</el-form-item>
<el-form-item label="角色">
<el-select v-model="searchForm.role" placeholder="请选择角色" clearable>
<el-option label="超级管理员" value="super_admin" />
<el-option label="管理员" value="admin" />
<el-option label="运营" value="operator" />
</el-select>
</el-form-item>
<el-form-item>
<el-button type="primary" @click="handleSearch">查询</el-button>
<el-button @click="handleReset">重置</el-button>
</el-form-item>
</el-form>
</el-card>
<el-card class="table-card">
<template #header>
<div class="card-header">
<span>管理员列表</span>
<el-button type="primary" @click="handleAdd">新增管理员</el-button>
</div>
</template>
<el-table :data="tableData" v-loading="loading" stripe>
<el-table-column prop="account" label="账号" />
<el-table-column prop="username" label="姓名" />
<el-table-column prop="email" label="邮箱" />
<el-table-column prop="phone" label="手机号" />
<el-table-column prop="role" label="角色">
<template #default="{ row }">
<el-tag v-if="row.role === 'super_admin'" type="danger">超级管理员</el-tag>
<el-tag v-else-if="row.role === 'admin'" type="primary">管理员</el-tag>
<el-tag v-else type="info">运营</el-tag>
</template>
</el-table-column>
<el-table-column prop="status" label="状态">
<template #default="{ row }">
<el-tag :type="row.status === 1 ? 'success' : 'danger'">
{{ row.status === 1 ? '正常' : '禁用' }}
</el-tag>
</template>
</el-table-column>
<el-table-column prop="createTime" label="创建时间" />
<el-table-column label="操作" width="200" fixed="right">
<template #default="{ row }">
<el-button type="primary" link @click="handleEdit(row)">编辑</el-button>
<el-button type="danger" link @click="handleDelete(row)">删除</el-button>
</template>
</el-table-column>
</el-table>
<el-pagination
v-model:current-page="pagination.current"
v-model:page-size="pagination.size"
:total="pagination.total"
:page-sizes="[10, 20, 50, 100]"
layout="total, sizes, prev, pager, next, jumper"
@size-change="fetchData"
@current-change="fetchData"
class="pagination"
/>
</el-card>
<!-- 新增/编辑对话框 -->
<el-dialog
v-model="dialogVisible"
:title="dialogTitle"
width="600px"
@close="handleDialogClose"
>
<el-form
ref="formRef"
:model="formData"
:rules="formRules"
label-width="100px"
>
<el-form-item label="账号" prop="account">
<el-input v-model="formData.account" :disabled="isEdit" />
</el-form-item>
<el-form-item label="密码" prop="password" v-if="!isEdit">
<el-input v-model="formData.password" type="password" show-password />
</el-form-item>
<el-form-item label="姓名" prop="username">
<el-input v-model="formData.username" />
</el-form-item>
<el-form-item label="邮箱" prop="email">
<el-input v-model="formData.email" />
</el-form-item>
<el-form-item label="手机号" prop="phone">
<el-input v-model="formData.phone" />
</el-form-item>
<el-form-item label="角色" prop="role">
<el-select v-model="formData.role" style="width: 100%">
<el-option label="超级管理员" value="super_admin" />
<el-option label="管理员" value="admin" />
<el-option label="运营" value="operator" />
</el-select>
</el-form-item>
<el-form-item label="部门" prop="department">
<el-input v-model="formData.department" />
</el-form-item>
<el-form-item label="职位" prop="position">
<el-input v-model="formData.position" />
</el-form-item>
<el-form-item label="状态" prop="status" v-if="isEdit">
<el-radio-group v-model="formData.status">
<el-radio :label="1">正常</el-radio>
<el-radio :label="0">禁用</el-radio>
</el-radio-group>
</el-form-item>
</el-form>
<template #footer>
<el-button @click="dialogVisible = false">取消</el-button>
<el-button type="primary" @click="handleSubmit" :loading="submitLoading">
确定
</el-button>
</template>
</el-dialog>
</div>
</template>
<script setup lang="ts">
import { ref, reactive, onMounted } from 'vue'
import { ElMessage, ElMessageBox, type FormInstance, type FormRules } from 'element-plus'
import { getAdminPage, createAdmin, updateAdmin, deleteAdmin } from '@/api/admin'
import type { Admin, AdminPageRequest } from '@/types/admin'
import { validateAccount, validatePassword, validateEmail, validatePhone } from '@/utils/validate'
const loading = ref(false)
const submitLoading = ref(false)
const dialogVisible = ref(false)
const isEdit = ref(false)
const formRef = ref<FormInstance>()
const searchForm = reactive<AdminPageRequest>({
current: 1,
size: 10
})
const pagination = reactive({
current: 1,
size: 10,
total: 0
})
const tableData = ref<Admin[]>([])
const formData = reactive({
id: '',
account: '',
password: '',
username: '',
email: '',
phone: '',
role: 'admin',
department: '',
position: '',
status: 1
})
const formRules: FormRules = {
account: [{ required: true, validator: validateAccount, trigger: 'blur' }],
password: [{ required: true, validator: validatePassword, trigger: 'blur' }],
username: [{ required: true, message: '请输入姓名', trigger: 'blur' }],
email: [{ validator: validateEmail, trigger: 'blur' }],
phone: [{ validator: validatePhone, trigger: 'blur' }],
role: [{ required: true, message: '请选择角色', trigger: 'change' }]
}
const dialogTitle = ref('新增管理员')
const fetchData = async () => {
loading.value = true
try {
const params = {
...searchForm,
current: pagination.current,
size: pagination.size
}
const res = await getAdminPage(params)
tableData.value = res.data.records
pagination.total = res.data.total
} catch (error) {
console.error('获取管理员列表失败:', error)
} finally {
loading.value = false
}
}
const handleSearch = () => {
pagination.current = 1
fetchData()
}
const handleReset = () => {
Object.assign(searchForm, {
current: 1,
size: 10,
account: '',
username: '',
role: ''
})
fetchData()
}
const handleAdd = () => {
isEdit.value = false
dialogTitle.value = '新增管理员'
dialogVisible.value = true
}
const handleEdit = (row: Admin) => {
isEdit.value = true
dialogTitle.value = '编辑管理员'
Object.assign(formData, row)
dialogVisible.value = true
}
const handleDelete = (row: Admin) => {
ElMessageBox.confirm('确定要删除该管理员吗?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(async () => {
try {
await deleteAdmin(row.id)
ElMessage.success('删除成功')
fetchData()
} catch (error) {
console.error('删除失败:', error)
}
})
}
const handleSubmit = async () => {
if (!formRef.value) return
await formRef.value.validate(async (valid) => {
if (valid) {
submitLoading.value = true
try {
if (isEdit.value) {
await updateAdmin(formData)
ElMessage.success('更新成功')
} else {
await createAdmin(formData)
ElMessage.success('创建成功')
}
dialogVisible.value = false
fetchData()
} catch (error) {
console.error('提交失败:', error)
} finally {
submitLoading.value = false
}
}
})
}
const handleDialogClose = () => {
formRef.value?.resetFields()
Object.assign(formData, {
id: '',
account: '',
password: '',
username: '',
email: '',
phone: '',
role: 'admin',
department: '',
position: '',
status: 1
})
}
onMounted(() => {
fetchData()
})
</script>
<style scoped lang="scss">
.admin-list {
.page-title {
margin-bottom: 20px;
font-size: 24px;
color: #333;
}
.search-card {
margin-bottom: 20px;
}
.table-card {
.card-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.pagination {
margin-top: 20px;
justify-content: flex-end;
}
}
}
</style>
+206
View File
@@ -0,0 +1,206 @@
<template>
<div class="user-list">
<h2 class="page-title">用户列表</h2>
<el-card class="search-card">
<el-form :model="searchForm" :inline="true">
<el-form-item label="账号">
<el-input v-model="searchForm.account" placeholder="请输入账号" clearable />
</el-form-item>
<el-form-item label="用户名">
<el-input v-model="searchForm.username" placeholder="请输入用户名" clearable />
</el-form-item>
<el-form-item label="手机号">
<el-input v-model="searchForm.phone" placeholder="请输入手机号" clearable />
</el-form-item>
<el-form-item label="状态">
<el-select v-model="searchForm.status" placeholder="请选择状态" clearable>
<el-option label="正常" :value="1" />
<el-option label="禁用" :value="0" />
</el-select>
</el-form-item>
<el-form-item>
<el-button type="primary" @click="handleSearch">查询</el-button>
<el-button @click="handleReset">重置</el-button>
</el-form-item>
</el-form>
</el-card>
<el-card class="table-card">
<template #header>
<span>用户列表</span>
</template>
<el-table :data="tableData" v-loading="loading" stripe>
<el-table-column prop="account" label="账号" />
<el-table-column prop="username" label="用户名" />
<el-table-column prop="nickname" label="昵称" />
<el-table-column prop="phone" label="手机号" />
<el-table-column prop="email" label="邮箱" />
<el-table-column prop="memberLevel" label="会员等级">
<template #default="{ row }">
<el-tag v-if="row.memberLevel === 'vip'" type="warning">VIP</el-tag>
<el-tag v-else type="info">普通</el-tag>
</template>
</el-table-column>
<el-table-column prop="status" label="状态">
<template #default="{ row }">
<el-tag :type="row.status === 1 ? 'success' : 'danger'">
{{ row.status === 1 ? '正常' : '禁用' }}
</el-tag>
</template>
</el-table-column>
<el-table-column prop="createTime" label="注册时间" />
<el-table-column label="操作" width="200" fixed="right">
<template #default="{ row }">
<el-button type="primary" link @click="handleView(row)">查看</el-button>
<el-button
:type="row.status === 1 ? 'warning' : 'success'"
link
@click="handleToggleStatus(row)"
>
{{ row.status === 1 ? '禁用' : '启用' }}
</el-button>
</template>
</el-table-column>
</el-table>
<el-pagination
v-model:current-page="pagination.current"
v-model:page-size="pagination.size"
:total="pagination.total"
:page-sizes="[10, 20, 50, 100]"
layout="total, sizes, prev, pager, next, jumper"
@size-change="fetchData"
@current-change="fetchData"
class="pagination"
/>
</el-card>
<!-- 用户详情对话框 -->
<el-dialog v-model="detailVisible" title="用户详情" width="600px">
<el-descriptions :column="2" border v-if="currentUser">
<el-descriptions-item label="账号">{{ currentUser.account }}</el-descriptions-item>
<el-descriptions-item label="用户名">{{ currentUser.username }}</el-descriptions-item>
<el-descriptions-item label="昵称">{{ currentUser.nickname }}</el-descriptions-item>
<el-descriptions-item label="手机号">{{ currentUser.phone }}</el-descriptions-item>
<el-descriptions-item label="邮箱">{{ currentUser.email }}</el-descriptions-item>
<el-descriptions-item label="会员等级">{{ currentUser.memberLevel }}</el-descriptions-item>
<el-descriptions-item label="使用天数">{{ currentUser.totalDays }}</el-descriptions-item>
<el-descriptions-item label="状态">
<el-tag :type="currentUser.status === 1 ? 'success' : 'danger'">
{{ currentUser.status === 1 ? '正常' : '禁用' }}
</el-tag>
</el-descriptions-item>
<el-descriptions-item label="注册时间" :span="2">{{ currentUser.createTime }}</el-descriptions-item>
<el-descriptions-item label="最后活跃" :span="2">{{ currentUser.lastActiveTime }}</el-descriptions-item>
</el-descriptions>
</el-dialog>
</div>
</template>
<script setup lang="ts">
import { ref, reactive, onMounted } from 'vue'
import { ElMessage, ElMessageBox } from 'element-plus'
import { getUserPage, updateUserStatus } from '@/api/user'
import type { User, UserPageRequest } from '@/types/user'
const loading = ref(false)
const detailVisible = ref(false)
const currentUser = ref<User | null>(null)
const searchForm = reactive<UserPageRequest>({
current: 1,
size: 10
})
const pagination = reactive({
current: 1,
size: 10,
total: 0
})
const tableData = ref<User[]>([])
const fetchData = async () => {
loading.value = true
try {
const params = {
...searchForm,
current: pagination.current,
size: pagination.size
}
const res = await getUserPage(params)
tableData.value = res.data.records
pagination.total = res.data.total
} catch (error) {
console.error('获取用户列表失败:', error)
} finally {
loading.value = false
}
}
const handleSearch = () => {
pagination.current = 1
fetchData()
}
const handleReset = () => {
Object.assign(searchForm, {
current: 1,
size: 10,
account: '',
username: '',
phone: '',
status: undefined
})
fetchData()
}
const handleView = (row: User) => {
currentUser.value = row
detailVisible.value = true
}
const handleToggleStatus = (row: User) => {
const action = row.status === 1 ? '禁用' : '启用'
ElMessageBox.confirm(`确定要${action}该用户吗?`, '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(async () => {
try {
await updateUserStatus(row.id, row.status === 1 ? 0 : 1)
ElMessage.success(`${action}成功`)
fetchData()
} catch (error) {
console.error(`${action}失败:`, error)
}
})
}
onMounted(() => {
fetchData()
})
</script>
<style scoped lang="scss">
.user-list {
.page-title {
margin-bottom: 20px;
font-size: 24px;
color: #333;
}
.search-card {
margin-bottom: 20px;
}
.table-card {
.pagination {
margin-top: 20px;
justify-content: flex-end;
}
}
}
</style>