108 lines
6.0 KiB
HTML
108 lines
6.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>宇之然内容创作平台 - 用户管理</title>
|
|
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
|
|
<link rel="stylesheet" href="https://unpkg.com/element-plus@2.4.3/dist/index.css">
|
|
<script src="https://unpkg.com/element-plus@2.4.3/dist/index.full.min.js"></script>
|
|
|
|
<style>
|
|
.card { background: white; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); padding: 24px; margin-bottom: 24px; }
|
|
aside button { width: 100%; text-align: left; border: none; background: transparent; border-radius: 8px; margin-bottom: 4px; }
|
|
aside button:hover { background-color: #f3f4f6; }
|
|
@media (max-width: 768px) { main { padding-bottom: 70px; } }
|
|
.nav-title { text-align: center; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
<nav class="bg-gradient-to-r from-blue-600 to-blue-700 text-white shadow-lg">
|
|
<div class="container mx-auto px-6 py-4 flex justify-between items-center">
|
|
<h1 class="text-2xl font-bold nav-title">宇之然内容创作平台 - 用户管理</h1>
|
|
</div>
|
|
</nav>
|
|
|
|
<div class="page flex gap-6">
|
|
<aside class="w-40 flex-shrink-0 hidden md:block">
|
|
<button @click="currentPage = 'overview'" :class="['px-4 py-2 rounded-lg', currentPage === 'overview' ? 'bg-blue-50 text-blue-600 font-semibold' : 'text-gray-600']">📊 系统概览</button>
|
|
<button @click="currentPage = 'topics'" :class="['px-4 py-2 rounded-lg', currentPage === 'topics' ? 'bg-blue-50 text-blue-600 font-semibold' : 'text-gray-600']">📋 选题管理</button>
|
|
<button @click="currentPage = 'logs'" :class="['px-4 py-2 rounded-lg', currentPage === 'logs' ? 'bg-blue-50 text-blue-600 font-semibold' : 'text-gray-600']">📄 系统日志</button>
|
|
<button v-if="isAdmin" @click="currentPage = 'users'" :class="['px-4 py-2 rounded-lg', currentPage === 'users' ? 'bg-blue-50 text-blue-600 font-semibold' : 'text-gray-600']">👥 用户管理</button>
|
|
</aside>
|
|
|
|
<main class="flex-1">
|
|
<div class="card" style="padding: 20px; margin-top: 20px;">
|
|
<h2 class="text-2xl font-bold text-gray-800 mb-6">👥 用户管理</h2>
|
|
|
|
<div class="flex justify-between items-center mb-4">
|
|
<h3 class="text-lg font-bold">用户列表</h3>
|
|
<el-button type="primary" @click="addUser">+ 新建用户</el-button>
|
|
</div>
|
|
|
|
<el-table :data="users" stripe>
|
|
<el-table-column prop="id" label="ID" width="70"></el-table-column>
|
|
<el-table-column prop="username" label="用户名"></el-table-column>
|
|
<el-table-column prop="role" label="角色" width="100">
|
|
<template #default="scope">
|
|
<el-tag :type="scope.row.role === 'admin' ? 'danger' : 'info'">{{ scope.row.role === 'admin' ? '管理员' : '编辑' }}</el-tag>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column prop="created_at" label="创建时间" width="180"><template #default="scope">{{ formatDate(scope.row.created_at) }}</template></el-table-column>
|
|
<el-table-column label="操作" width="150">
|
|
<template #default="scope">
|
|
<el-button size="small" type="danger" @click="deleteUser(scope.row.id)" :disabled="scope.row.role === 'admin'">删除</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
const UsersApp = {
|
|
data() {
|
|
return {
|
|
isLoggedIn: true,
|
|
currentUser: { username: 'admin' },
|
|
isAdmin: true,
|
|
currentPage: 'users',
|
|
users: [
|
|
{ id: 'admin', username: '管理员', role: 'admin', created_at: '2026-04-01 09:00' },
|
|
{ id: 'editor1', username: '编辑小王', role: 'editor', created_at: '2026-04-05 14:30' },
|
|
{ id: 'editor2', username: '编辑小李', role: 'editor', created_at: '2026-04-10 10:15' }
|
|
]
|
|
}
|
|
},
|
|
methods: {
|
|
addUser() {
|
|
const newId = 'user' + Date.now();
|
|
this.users.push({ id: newId, username: '新用户', role: 'editor', created_at: new Date().toISOString().slice(0, 16).replace('T', ' ') });
|
|
this.$message.success('添加用户成功')
|
|
},
|
|
deleteUser(id) {
|
|
if (id === 'admin') {
|
|
this.$message.warning('不能删除管理员用户')
|
|
return
|
|
}
|
|
this.$confirm('确定删除该用户?', '提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' })
|
|
.then(() => {
|
|
this.users = this.users.filter(u => u.id !== id)
|
|
this.$message.success('删除用户成功')
|
|
}).catch(() => {})
|
|
},
|
|
formatDate(dateStr) {
|
|
if (!dateStr) return '-'
|
|
return new Date(dateStr.replace(' ', 'T')).toLocaleString('zh-CN', { year: 'numeric', month: '2-digit', day: '2-digit', hour: '2-digit', minute: '2-digit' })
|
|
}
|
|
}
|
|
}
|
|
|
|
Vue.createApp(UsersApp).mount('#app')
|
|
</script>
|
|
</body>
|
|
</html> |