2025-09-06 07:02:17 +00:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
|
<html lang="zh-CN">
|
|
|
|
|
|
<head>
|
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
|
<title>账号权限分配</title>
|
2025-09-07 06:21:06 +00:00
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
|
2025-09-06 07:02:17 +00:00
|
|
|
|
<style>
|
|
|
|
|
|
* {
|
|
|
|
|
|
margin: 0;
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
body {
|
2025-09-07 06:21:06 +00:00
|
|
|
|
font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
|
|
|
|
|
|
background-color: #f5f5f5;
|
2025-09-06 07:02:17 +00:00
|
|
|
|
color: #333;
|
|
|
|
|
|
height: 100vh;
|
|
|
|
|
|
margin: 0;
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.container {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100vh;
|
|
|
|
|
|
margin: 0;
|
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.header {
|
2025-09-07 06:21:06 +00:00
|
|
|
|
background-color: rgb(9, 84, 43);
|
2025-09-06 07:02:17 +00:00
|
|
|
|
color: #fff;
|
|
|
|
|
|
padding: 20px 30px;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.header h1 {
|
|
|
|
|
|
font-size: 1.8rem;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.header-actions {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
gap: 10px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
|
|
padding: 10px 20px;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 5px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btn-primary {
|
2025-09-07 06:21:06 +00:00
|
|
|
|
background-color: #1890ff;
|
2025-09-06 07:02:17 +00:00
|
|
|
|
color: #fff;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btn-primary:hover {
|
2025-09-07 06:21:06 +00:00
|
|
|
|
background-color: #40a9ff;
|
2025-09-06 07:02:17 +00:00
|
|
|
|
transform: translateY(-2px);
|
|
|
|
|
|
}
|
2025-09-07 07:35:21 +00:00
|
|
|
|
|
|
|
|
|
|
.tab-btn {
|
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.tab-btn:not(.active) {
|
|
|
|
|
|
background-color: #f0f0f0;
|
|
|
|
|
|
color: #666;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.tab-btn:not(.active):hover {
|
|
|
|
|
|
background-color: #e0e0e0;
|
|
|
|
|
|
color: #333;
|
|
|
|
|
|
}
|
2025-09-06 07:02:17 +00:00
|
|
|
|
|
|
|
|
|
|
.btn-success {
|
2025-09-07 06:21:06 +00:00
|
|
|
|
background-color: #52c41a;
|
2025-09-06 07:02:17 +00:00
|
|
|
|
color: #fff;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btn-success:hover {
|
2025-09-07 06:21:06 +00:00
|
|
|
|
background-color: #73d13d;
|
2025-09-06 07:02:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btn-warning {
|
2025-09-07 06:21:06 +00:00
|
|
|
|
background-color: #faad14;
|
2025-09-06 07:02:17 +00:00
|
|
|
|
color: #fff;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btn-warning:hover {
|
2025-09-07 06:21:06 +00:00
|
|
|
|
background-color: #ffc53d;
|
2025-09-06 07:02:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 内容区域 */
|
|
|
|
|
|
.content {
|
|
|
|
|
|
padding: 30px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.section {
|
|
|
|
|
|
margin-bottom: 40px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.section-title {
|
|
|
|
|
|
font-size: 1.4rem;
|
|
|
|
|
|
font-weight: 600;
|
2025-09-07 06:21:06 +00:00
|
|
|
|
color: #333;
|
2025-09-06 07:02:17 +00:00
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
padding-bottom: 10px;
|
2025-09-07 06:21:06 +00:00
|
|
|
|
border-bottom: 2px solid #f0f0f0;
|
2025-09-06 07:02:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 账号创建区域 */
|
|
|
|
|
|
.account-form {
|
2025-09-07 06:21:06 +00:00
|
|
|
|
background-color: #fafafa;
|
2025-09-06 07:02:17 +00:00
|
|
|
|
padding: 25px;
|
|
|
|
|
|
border-radius: 8px;
|
2025-09-07 06:21:06 +00:00
|
|
|
|
border: 1px solid #e8e8e8;
|
2025-09-06 07:02:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.form-row {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
gap: 20px;
|
|
|
|
|
|
align-items: end;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.form-group {
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.form-group label {
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
|
font-weight: 500;
|
2025-09-07 06:21:06 +00:00
|
|
|
|
color: #333;
|
2025-09-06 07:02:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.form-group input,
|
|
|
|
|
|
.form-group select {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
padding: 12px 15px;
|
2025-09-07 06:21:06 +00:00
|
|
|
|
border: 1px solid #d9d9d9;
|
|
|
|
|
|
border-radius: 4px;
|
2025-09-06 07:02:17 +00:00
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
transition: border-color 0.3s ease;
|
2025-09-07 06:21:06 +00:00
|
|
|
|
background-color: #fff;
|
2025-09-06 07:02:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.form-group input:focus,
|
|
|
|
|
|
.form-group select:focus {
|
|
|
|
|
|
outline: none;
|
2025-09-07 06:21:06 +00:00
|
|
|
|
border-color: #1890ff;
|
|
|
|
|
|
box-shadow: 0 0 5px rgba(24, 144, 255, 0.3);
|
2025-09-06 07:02:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 权限分配区域 */
|
|
|
|
|
|
.permissions-container {
|
2025-09-07 06:21:06 +00:00
|
|
|
|
background-color: #fafafa;
|
2025-09-06 07:02:17 +00:00
|
|
|
|
padding: 25px;
|
|
|
|
|
|
border-radius: 8px;
|
2025-09-07 06:21:06 +00:00
|
|
|
|
border: 1px solid #e8e8e8;
|
2025-09-06 07:02:17 +00:00
|
|
|
|
max-height: 500px;
|
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.permission-tree {
|
|
|
|
|
|
list-style: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.permission-item {
|
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.permission-node {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
padding: 12px 15px;
|
2025-09-07 06:21:06 +00:00
|
|
|
|
border-radius: 4px;
|
2025-09-06 07:02:17 +00:00
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
background-color: #fff;
|
2025-09-07 06:21:06 +00:00
|
|
|
|
border: 1px solid #e8e8e8;
|
2025-09-06 07:02:17 +00:00
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.permission-node:hover {
|
2025-09-07 06:21:06 +00:00
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
|
|
border-color: #1890ff;
|
|
|
|
|
|
box-shadow: 0 2px 8px rgba(24, 144, 255, 0.15);
|
2025-09-06 07:02:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.permission-node.selected {
|
2025-09-07 06:21:06 +00:00
|
|
|
|
background-color: #e6f7ff;
|
|
|
|
|
|
border-color: #1890ff;
|
2025-09-06 07:02:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.permission-checkbox {
|
|
|
|
|
|
margin-right: 12px;
|
|
|
|
|
|
width: 18px;
|
|
|
|
|
|
height: 18px;
|
|
|
|
|
|
cursor: pointer;
|
2025-09-07 06:21:06 +00:00
|
|
|
|
accent-color: #1890ff;
|
2025-09-06 07:02:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.expand-btn {
|
2025-09-07 06:21:06 +00:00
|
|
|
|
background: #1890ff;
|
2025-09-06 07:02:17 +00:00
|
|
|
|
border: none;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
padding: 2px 8px;
|
|
|
|
|
|
margin-right: 12px;
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
|
min-width: 28px;
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.expand-btn.collapsed {
|
|
|
|
|
|
transform: rotate(-90deg);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.permission-label {
|
|
|
|
|
|
font-size: 14px;
|
2025-09-07 06:21:06 +00:00
|
|
|
|
color: #333;
|
2025-09-06 07:02:17 +00:00
|
|
|
|
user-select: none;
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.permission-children {
|
|
|
|
|
|
margin-left: 35px;
|
|
|
|
|
|
margin-top: 8px;
|
2025-09-07 06:21:06 +00:00
|
|
|
|
border-left: 2px solid #1890ff;
|
2025-09-06 07:02:17 +00:00
|
|
|
|
padding-left: 20px;
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.permission-children::before {
|
|
|
|
|
|
content: '';
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
top: -8px;
|
|
|
|
|
|
height: calc(100% + 16px);
|
|
|
|
|
|
width: 2px;
|
2025-09-07 06:21:06 +00:00
|
|
|
|
background-color: #1890ff;
|
2025-09-06 07:02:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.permission-children.expanded {
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
animation: fadeIn 0.3s ease-in-out;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@keyframes fadeIn {
|
|
|
|
|
|
from { opacity: 0; transform: translateY(-5px); }
|
|
|
|
|
|
to { opacity: 1; transform: translateY(0); }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.permission-item.parent > .permission-node {
|
2025-09-07 06:21:06 +00:00
|
|
|
|
background-color: #f0f9ff;
|
|
|
|
|
|
border-color: #d9f3ff;
|
2025-09-06 07:02:17 +00:00
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.permission-item.child .permission-node {
|
|
|
|
|
|
margin-left: 15px;
|
2025-09-07 06:21:06 +00:00
|
|
|
|
background-color: #fafafa;
|
2025-09-06 07:02:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 操作区域 */
|
|
|
|
|
|
.actions {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
|
gap: 10px;
|
|
|
|
|
|
padding-top: 20px;
|
2025-09-07 06:21:06 +00:00
|
|
|
|
border-top: 1px solid #e8e8e8;
|
2025-09-06 07:02:17 +00:00
|
|
|
|
margin-top: 30px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 响应式设计 */
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
|
.container {
|
|
|
|
|
|
margin: 0;
|
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.header {
|
|
|
|
|
|
padding: 15px 20px;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
gap: 15px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.content {
|
|
|
|
|
|
padding: 20px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.form-row {
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
gap: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|
|
|
|
|
|
</head>
|
|
|
|
|
|
<body>
|
|
|
|
|
|
<div class="container">
|
|
|
|
|
|
<!-- 头部 -->
|
|
|
|
|
|
<div class="header">
|
|
|
|
|
|
<h1>账号权限分配</h1>
|
|
|
|
|
|
<div class="header-actions">
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 内容区域 -->
|
|
|
|
|
|
<div class="content">
|
|
|
|
|
|
<!-- 账号创建区域 -->
|
|
|
|
|
|
<div class="section">
|
|
|
|
|
|
<h2 class="section-title">账号信息</h2>
|
|
|
|
|
|
<div class="account-form">
|
2025-09-07 07:35:21 +00:00
|
|
|
|
<!-- Tab导航 -->
|
2025-09-06 07:02:17 +00:00
|
|
|
|
<div class="form-row">
|
|
|
|
|
|
<div class="form-group">
|
2025-09-07 07:35:21 +00:00
|
|
|
|
<label>账号类型</label>
|
|
|
|
|
|
<div class="tab-container">
|
|
|
|
|
|
<button class="btn btn-primary tab-btn active" onclick="switchTab('sub_merchant')">子经营者</button>
|
|
|
|
|
|
<button class="btn btn-primary tab-btn" onclick="switchTab('merchant')">商户</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="form-row">
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
|
<label for="typeSelect">操作类型 *</label>
|
|
|
|
|
|
<select id="typeSelect" onchange="handleTypeChange()">
|
|
|
|
|
|
<option value="">请选择操作类型</option>
|
|
|
|
|
|
<option value="create">创建新账号</option>
|
|
|
|
|
|
<option value="update">更新账号权限</option>
|
2025-09-06 07:02:17 +00:00
|
|
|
|
</select>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="form-group">
|
2025-09-07 07:35:21 +00:00
|
|
|
|
<label for="account">账号 *</label>
|
|
|
|
|
|
<input type="text" id="account" placeholder="请输入账号">
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 初始密码字段 -->
|
|
|
|
|
|
<div class="form-row" id="passwordRow" style="display: none;">
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
|
<label for="password">初始密码</label>
|
|
|
|
|
|
<span id="password" style="display: block; padding: 12px 15px; border: 1px solid #d9d9d9; border-radius: 4px; background-color: #fafafa;">123456</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 重置密码按钮 -->
|
|
|
|
|
|
<div class="form-row" id="resetPasswordBtnGroup" style="display: none;">
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
|
<label> </label>
|
|
|
|
|
|
<button class="btn btn-warning" onclick="resetPassword()">重置为初始密码</button>
|
2025-09-06 07:02:17 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 权限分配区域 -->
|
|
|
|
|
|
<div class="section">
|
|
|
|
|
|
<h2 class="section-title">权限分配</h2>
|
|
|
|
|
|
<div class="permissions-container">
|
|
|
|
|
|
<ul id="permissionTree" class="permission-tree">
|
|
|
|
|
|
<!-- 权限树将通过JavaScript动态生成 -->
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 操作按钮 -->
|
|
|
|
|
|
<div class="actions">
|
2025-09-07 06:21:06 +00:00
|
|
|
|
<button class="btn btn-warning" onclick="cancelAssignment()">
|
|
|
|
|
|
<i class="fas fa-times"></i> 取消
|
|
|
|
|
|
</button>
|
|
|
|
|
|
<button class="btn btn-success" onclick="saveAssignment()">
|
|
|
|
|
|
<i class="fas fa-save"></i> 保存分配
|
|
|
|
|
|
</button>
|
2025-09-06 07:02:17 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
2025-09-07 07:35:21 +00:00
|
|
|
|
// 账号类型数据
|
|
|
|
|
|
const accountTypes = [
|
2025-09-06 07:02:17 +00:00
|
|
|
|
{ id: 1, name: '子经营者', code: 'sub_merchant' },
|
|
|
|
|
|
{ id: 2, name: '商户', code: 'merchant' }
|
|
|
|
|
|
];
|
2025-09-07 07:35:21 +00:00
|
|
|
|
|
|
|
|
|
|
// 操作类型数据
|
|
|
|
|
|
const operationTypes = [
|
|
|
|
|
|
{ value: 'create', name: '创建新账号' },
|
|
|
|
|
|
{ value: 'update', name: '更新账号权限' }
|
|
|
|
|
|
];
|
2025-09-06 07:02:17 +00:00
|
|
|
|
|
|
|
|
|
|
// 权限数据(从权限编辑页面获取的示例数据)
|
|
|
|
|
|
const permissions = [
|
|
|
|
|
|
{
|
|
|
|
|
|
id: 1,
|
|
|
|
|
|
code: 'SYSTEM',
|
|
|
|
|
|
name: '系统管理',
|
|
|
|
|
|
description: '系统管理模块',
|
|
|
|
|
|
parentCode: '',
|
|
|
|
|
|
type: 'menu'
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
id: 2,
|
|
|
|
|
|
code: 'SYSTEM_USER',
|
|
|
|
|
|
name: '用户管理',
|
|
|
|
|
|
description: '用户管理功能',
|
|
|
|
|
|
parentCode: 'SYSTEM',
|
|
|
|
|
|
type: 'menu'
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
id: 3,
|
|
|
|
|
|
code: 'SYSTEM_USER_ADD',
|
|
|
|
|
|
name: '添加用户',
|
|
|
|
|
|
description: '添加新用户按钮',
|
|
|
|
|
|
parentCode: 'SYSTEM_USER',
|
|
|
|
|
|
type: 'button'
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
id: 4,
|
|
|
|
|
|
code: 'SYSTEM_USER_EDIT',
|
|
|
|
|
|
name: '编辑用户',
|
|
|
|
|
|
description: '编辑用户信息按钮',
|
|
|
|
|
|
parentCode: 'SYSTEM_USER',
|
|
|
|
|
|
type: 'button'
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
id: 5,
|
|
|
|
|
|
code: 'SYSTEM_ROLE',
|
|
|
|
|
|
name: '角色管理',
|
|
|
|
|
|
description: '角色管理功能',
|
|
|
|
|
|
parentCode: 'SYSTEM',
|
|
|
|
|
|
type: 'menu'
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
id: 6,
|
|
|
|
|
|
code: 'CONTENT',
|
|
|
|
|
|
name: '内容管理',
|
|
|
|
|
|
description: '内容管理模块',
|
|
|
|
|
|
parentCode: '',
|
|
|
|
|
|
type: 'menu'
|
|
|
|
|
|
}
|
|
|
|
|
|
];
|
|
|
|
|
|
|
2025-09-07 07:35:21 +00:00
|
|
|
|
let selectedAccountType = null;
|
|
|
|
|
|
let selectedOperationType = null;
|
2025-09-06 07:02:17 +00:00
|
|
|
|
let selectedPermissions = new Set();
|
|
|
|
|
|
|
|
|
|
|
|
// 初始化页面
|
|
|
|
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
|
|
|
|
initPermissionTree();
|
|
|
|
|
|
bindEvents();
|
|
|
|
|
|
});
|
2025-09-07 07:35:21 +00:00
|
|
|
|
|
|
|
|
|
|
// Tab切换功能
|
|
|
|
|
|
function switchTab(tabCode) {
|
|
|
|
|
|
// 更新选中的账号类型
|
|
|
|
|
|
selectedAccountType = accountTypes.find(type => type.code === tabCode);
|
|
|
|
|
|
|
|
|
|
|
|
// 更新tab按钮样式
|
|
|
|
|
|
document.querySelectorAll('.tab-btn').forEach(btn => {
|
|
|
|
|
|
btn.classList.remove('active');
|
|
|
|
|
|
});
|
|
|
|
|
|
event.target.classList.add('active');
|
|
|
|
|
|
|
|
|
|
|
|
console.log('已切换到账号类型:', selectedAccountType);
|
|
|
|
|
|
|
|
|
|
|
|
// 根据操作类型推荐权限
|
|
|
|
|
|
if (selectedOperationType) {
|
|
|
|
|
|
recommendPermissionsForAccountType(selectedAccountType, selectedOperationType);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-09-06 07:02:17 +00:00
|
|
|
|
|
2025-09-07 07:35:21 +00:00
|
|
|
|
// 处理操作类型变化
|
|
|
|
|
|
function handleTypeChange() {
|
|
|
|
|
|
const select = document.getElementById('typeSelect');
|
2025-09-06 07:02:17 +00:00
|
|
|
|
const selectedValue = select.value;
|
|
|
|
|
|
|
|
|
|
|
|
if (selectedValue) {
|
2025-09-07 07:35:21 +00:00
|
|
|
|
selectedOperationType = operationTypes.find(type => type.value === selectedValue);
|
|
|
|
|
|
console.log('已选择操作类型:', selectedOperationType);
|
|
|
|
|
|
|
|
|
|
|
|
// 显示/隐藏密码字段
|
|
|
|
|
|
const passwordRow = document.getElementById('passwordRow');
|
|
|
|
|
|
const resetPasswordBtnGroup = document.getElementById('resetPasswordBtnGroup');
|
|
|
|
|
|
|
|
|
|
|
|
if (selectedValue === 'create') {
|
|
|
|
|
|
passwordRow.style.display = 'flex';
|
|
|
|
|
|
resetPasswordBtnGroup.style.display = 'none';
|
|
|
|
|
|
} else if (selectedValue === 'update') {
|
|
|
|
|
|
passwordRow.style.display = 'none';
|
|
|
|
|
|
resetPasswordBtnGroup.style.display = 'block';
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 根据账号类型和操作类型推荐权限
|
|
|
|
|
|
if (selectedAccountType) {
|
|
|
|
|
|
recommendPermissionsForAccountType(selectedAccountType, selectedOperationType);
|
|
|
|
|
|
}
|
2025-09-06 07:02:17 +00:00
|
|
|
|
} else {
|
2025-09-07 07:35:21 +00:00
|
|
|
|
selectedOperationType = null;
|
2025-09-06 07:02:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-09-07 07:35:21 +00:00
|
|
|
|
// 根据账号类型和操作类型推荐权限
|
|
|
|
|
|
function recommendPermissionsForAccountType(accountType, operationType) {
|
|
|
|
|
|
// 根据不同账号类型和操作类型推荐默认权限
|
2025-09-06 07:02:17 +00:00
|
|
|
|
const recommendedPermissions = [];
|
2025-09-07 07:35:21 +00:00
|
|
|
|
if (accountType.code === 'sub_merchant') {
|
2025-09-06 07:02:17 +00:00
|
|
|
|
// 子经营者推荐基础权限
|
|
|
|
|
|
recommendedPermissions.push('CONTENT');
|
2025-09-07 07:35:21 +00:00
|
|
|
|
} else if (accountType.code === 'merchant') {
|
2025-09-06 07:02:17 +00:00
|
|
|
|
// 商户推荐更多权限
|
|
|
|
|
|
recommendedPermissions.push('SYSTEM', 'CONTENT');
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 自动勾选推荐的权限
|
|
|
|
|
|
recommendedPermissions.forEach(permissionCode => {
|
|
|
|
|
|
const checkbox = document.querySelector(`[data-permission-code="${permissionCode}"]`);
|
|
|
|
|
|
if (checkbox && !checkbox.checked) {
|
|
|
|
|
|
checkbox.checked = true;
|
|
|
|
|
|
selectedPermissions.add(permissionCode);
|
|
|
|
|
|
updatePermissionDisplay();
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-09-07 07:35:21 +00:00
|
|
|
|
// 重置密码功能
|
|
|
|
|
|
function resetPassword() {
|
|
|
|
|
|
if (confirm('确定要将密码重置为初始密码123456吗?')) {
|
|
|
|
|
|
alert('密码已重置为初始密码123456!');
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-09-06 07:02:17 +00:00
|
|
|
|
// 初始化权限树
|
|
|
|
|
|
function initPermissionTree() {
|
|
|
|
|
|
const tree = buildPermissionTree(permissions);
|
|
|
|
|
|
const treeContainer = document.getElementById('permissionTree');
|
|
|
|
|
|
treeContainer.innerHTML = '';
|
|
|
|
|
|
|
|
|
|
|
|
tree.forEach(item => {
|
|
|
|
|
|
treeContainer.appendChild(createPermissionNode(item));
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 构建权限树
|
|
|
|
|
|
function buildPermissionTree(data) {
|
|
|
|
|
|
const map = {};
|
|
|
|
|
|
const roots = [];
|
|
|
|
|
|
|
|
|
|
|
|
// 创建映射
|
|
|
|
|
|
data.forEach(item => {
|
|
|
|
|
|
map[item.code] = { ...item, children: [] };
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
// 构建树结构
|
|
|
|
|
|
data.forEach(item => {
|
|
|
|
|
|
if (item.parentCode && map[item.parentCode]) {
|
|
|
|
|
|
map[item.parentCode].children.push(map[item.code]);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
roots.push(map[item.code]);
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
return roots;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 创建权限节点
|
|
|
|
|
|
function createPermissionNode(item) {
|
|
|
|
|
|
const li = document.createElement('li');
|
|
|
|
|
|
li.className = 'permission-item ' + (item.children.length > 0 ? 'parent' : 'child');
|
|
|
|
|
|
|
|
|
|
|
|
const nodeDiv = document.createElement('div');
|
|
|
|
|
|
nodeDiv.className = 'permission-node';
|
|
|
|
|
|
|
|
|
|
|
|
// 展开/收起按钮
|
|
|
|
|
|
if (item.children.length > 0) {
|
|
|
|
|
|
const expandBtn = document.createElement('button');
|
|
|
|
|
|
expandBtn.className = 'expand-btn';
|
|
|
|
|
|
expandBtn.textContent = '▼';
|
|
|
|
|
|
expandBtn.onclick = (e) => {
|
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
togglePermissionChildren(expandBtn, li);
|
|
|
|
|
|
};
|
|
|
|
|
|
nodeDiv.appendChild(expandBtn);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
// 占位符保持对齐
|
|
|
|
|
|
const placeholder = document.createElement('span');
|
|
|
|
|
|
placeholder.style.width = '28px';
|
|
|
|
|
|
placeholder.style.display = 'inline-block';
|
|
|
|
|
|
nodeDiv.appendChild(placeholder);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 复选框
|
|
|
|
|
|
const checkbox = document.createElement('input');
|
|
|
|
|
|
checkbox.type = 'checkbox';
|
|
|
|
|
|
checkbox.className = 'permission-checkbox';
|
|
|
|
|
|
checkbox.dataset.permissionCode = item.code;
|
|
|
|
|
|
checkbox.onchange = (e) => handlePermissionChange(e, item);
|
|
|
|
|
|
nodeDiv.appendChild(checkbox);
|
|
|
|
|
|
|
|
|
|
|
|
// 权限标签
|
|
|
|
|
|
const label = document.createElement('span');
|
|
|
|
|
|
label.className = 'permission-label';
|
|
|
|
|
|
label.textContent = `${item.name}(${item.description || item.code})`;
|
|
|
|
|
|
label.onclick = () => checkbox.click();
|
|
|
|
|
|
nodeDiv.appendChild(label);
|
|
|
|
|
|
|
|
|
|
|
|
li.appendChild(nodeDiv);
|
|
|
|
|
|
|
|
|
|
|
|
// 子权限
|
|
|
|
|
|
if (item.children.length > 0) {
|
|
|
|
|
|
const childrenContainer = document.createElement('ul');
|
|
|
|
|
|
childrenContainer.className = 'permission-children';
|
|
|
|
|
|
|
|
|
|
|
|
item.children.forEach(child => {
|
|
|
|
|
|
childrenContainer.appendChild(createPermissionNode(child));
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
li.appendChild(childrenContainer);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return li;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 切换权限子节点显示
|
|
|
|
|
|
function togglePermissionChildren(btn, li) {
|
|
|
|
|
|
const children = li.querySelector('.permission-children');
|
|
|
|
|
|
if (!children) return;
|
|
|
|
|
|
|
|
|
|
|
|
const isExpanded = children.classList.contains('expanded');
|
|
|
|
|
|
children.classList.toggle('expanded');
|
|
|
|
|
|
btn.textContent = isExpanded ? '▶' : '▼';
|
|
|
|
|
|
btn.classList.toggle('collapsed', isExpanded);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 处理权限选择变化
|
|
|
|
|
|
function handlePermissionChange(event, permission) {
|
|
|
|
|
|
const checkbox = event.target;
|
|
|
|
|
|
const isChecked = checkbox.checked;
|
|
|
|
|
|
const permissionCode = permission.code;
|
|
|
|
|
|
const node = checkbox.closest('.permission-node');
|
|
|
|
|
|
|
|
|
|
|
|
// 更新节点选中样式
|
|
|
|
|
|
if (node) {
|
|
|
|
|
|
if (isChecked) {
|
|
|
|
|
|
node.classList.add('selected');
|
|
|
|
|
|
} else {
|
|
|
|
|
|
node.classList.remove('selected');
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (isChecked) {
|
|
|
|
|
|
selectedPermissions.add(permissionCode);
|
|
|
|
|
|
// 选中子级权限时,自动选中所有父级权限
|
|
|
|
|
|
selectParentPermissions(permission);
|
|
|
|
|
|
// 如果是父权限,自动选中所有子权限
|
|
|
|
|
|
if (permission.children && permission.children.length > 0) {
|
|
|
|
|
|
selectChildrenPermissions(permission, true);
|
|
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
selectedPermissions.delete(permissionCode);
|
|
|
|
|
|
// 如果是父权限,自动取消所有子权限
|
|
|
|
|
|
if (permission.children && permission.children.length > 0) {
|
|
|
|
|
|
selectChildrenPermissions(permission, false);
|
|
|
|
|
|
}
|
|
|
|
|
|
// 如果是子权限,检查是否需要取消父权限
|
|
|
|
|
|
uncheckParentIfNeeded(permission);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
updatePermissionDisplay();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 选择所有父级权限
|
|
|
|
|
|
function selectParentPermissions(permission) {
|
|
|
|
|
|
if (!permission.parentCode) return;
|
|
|
|
|
|
|
|
|
|
|
|
// 查找父权限
|
|
|
|
|
|
const parent = permissions.find(p => p.code === permission.parentCode);
|
|
|
|
|
|
if (!parent) return;
|
|
|
|
|
|
|
|
|
|
|
|
// 选中父权限
|
|
|
|
|
|
const parentCheckbox = document.querySelector(`[data-permission-code="${parent.code}"]`);
|
|
|
|
|
|
if (parentCheckbox && !parentCheckbox.checked) {
|
|
|
|
|
|
parentCheckbox.checked = true;
|
|
|
|
|
|
selectedPermissions.add(parent.code);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 递归选中上级父权限
|
|
|
|
|
|
selectParentPermissions(parent);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 选择/取消子权限
|
|
|
|
|
|
function selectChildrenPermissions(parent, select) {
|
|
|
|
|
|
if (!parent.children) return;
|
|
|
|
|
|
|
|
|
|
|
|
parent.children.forEach(child => {
|
|
|
|
|
|
const childCheckbox = document.querySelector(`[data-permission-code="${child.code}"]`);
|
|
|
|
|
|
if (childCheckbox) {
|
|
|
|
|
|
childCheckbox.checked = select;
|
|
|
|
|
|
if (select) {
|
|
|
|
|
|
selectedPermissions.add(child.code);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
selectedPermissions.delete(child.code);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 递归处理子权限
|
|
|
|
|
|
selectChildrenPermissions(child, select);
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 检查是否需要取消父权限选择
|
|
|
|
|
|
function uncheckParentIfNeeded(permission) {
|
|
|
|
|
|
if (!permission.parentCode) return;
|
|
|
|
|
|
|
|
|
|
|
|
// 查找父权限
|
|
|
|
|
|
const parent = permissions.find(p => p.code === permission.parentCode);
|
|
|
|
|
|
if (!parent) return;
|
|
|
|
|
|
|
|
|
|
|
|
// 检查父权限的所有子权限是否都未选中
|
|
|
|
|
|
const siblings = permissions.filter(p => p.parentCode === parent.code);
|
|
|
|
|
|
const hasSelectedSibling = siblings.some(sibling => selectedPermissions.has(sibling.code));
|
|
|
|
|
|
|
|
|
|
|
|
if (!hasSelectedSibling) {
|
|
|
|
|
|
const parentCheckbox = document.querySelector(`[data-permission-code="${parent.code}"]`);
|
|
|
|
|
|
if (parentCheckbox) {
|
|
|
|
|
|
parentCheckbox.checked = false;
|
|
|
|
|
|
selectedPermissions.delete(parent.code);
|
|
|
|
|
|
// 递归检查上级父权限
|
|
|
|
|
|
uncheckParentIfNeeded(parent);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 更新权限显示
|
|
|
|
|
|
function updatePermissionDisplay() {
|
|
|
|
|
|
// 这里可以添加一些UI反馈,比如显示已选权限数量等
|
|
|
|
|
|
console.log('已选择权限:', Array.from(selectedPermissions));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 绑定事件
|
|
|
|
|
|
function bindEvents() {
|
2025-09-07 07:35:21 +00:00
|
|
|
|
// 账号输入验证
|
|
|
|
|
|
document.getElementById('account').addEventListener('input', function(e) {
|
|
|
|
|
|
// 可以根据需要添加账号输入验证逻辑
|
|
|
|
|
|
// 目前保持账号输入不限制格式
|
2025-09-06 07:02:17 +00:00
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 重置表单
|
|
|
|
|
|
function resetForm() {
|
|
|
|
|
|
if (confirm('确定要重置所有信息吗?')) {
|
2025-09-07 07:35:21 +00:00
|
|
|
|
// 重置账号类型选择(默认选择第一个tab)
|
|
|
|
|
|
selectedAccountType = accountTypes[0];
|
|
|
|
|
|
document.querySelectorAll('.tab-btn').forEach(btn => {
|
|
|
|
|
|
btn.classList.remove('active');
|
|
|
|
|
|
});
|
|
|
|
|
|
document.querySelector('.tab-btn').classList.add('active');
|
|
|
|
|
|
|
|
|
|
|
|
// 重置操作类型选择
|
|
|
|
|
|
selectedOperationType = null;
|
|
|
|
|
|
document.getElementById('typeSelect').value = '';
|
|
|
|
|
|
|
|
|
|
|
|
// 重置账号
|
|
|
|
|
|
document.getElementById('account').value = '';
|
2025-09-06 07:02:17 +00:00
|
|
|
|
|
2025-09-07 07:35:21 +00:00
|
|
|
|
// 隐藏密码字段和重置密码按钮
|
|
|
|
|
|
document.getElementById('passwordRow').style.display = 'none';
|
|
|
|
|
|
document.getElementById('resetPasswordBtnGroup').style.display = 'none';
|
2025-09-06 07:02:17 +00:00
|
|
|
|
|
|
|
|
|
|
// 重置权限选择
|
|
|
|
|
|
selectedPermissions.clear();
|
|
|
|
|
|
document.querySelectorAll('.permission-checkbox').forEach(checkbox => {
|
|
|
|
|
|
checkbox.checked = false;
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
// 重置权限样式
|
|
|
|
|
|
document.querySelectorAll('.permission-node').forEach(node => {
|
|
|
|
|
|
node.classList.remove('selected');
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 取消分配
|
|
|
|
|
|
function cancelAssignment() {
|
|
|
|
|
|
if (confirm('确定要取消权限分配吗?未保存的更改将丢失。')) {
|
2025-09-07 06:21:06 +00:00
|
|
|
|
// 在实际应用中,这可能需要重定向到其他页面
|
|
|
|
|
|
window.location.reload();
|
2025-09-06 07:02:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 保存权限分配
|
|
|
|
|
|
function saveAssignment() {
|
2025-09-07 07:35:21 +00:00
|
|
|
|
// 验证账号类型选择
|
|
|
|
|
|
if (!selectedAccountType) {
|
|
|
|
|
|
alert('请选择账号类型!');
|
2025-09-06 07:02:17 +00:00
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-09-07 07:35:21 +00:00
|
|
|
|
// 验证操作类型选择
|
|
|
|
|
|
if (!selectedOperationType) {
|
|
|
|
|
|
alert('请选择操作类型!');
|
2025-09-06 07:02:17 +00:00
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-09-07 07:35:21 +00:00
|
|
|
|
// 验证账号
|
|
|
|
|
|
const account = document.getElementById('account').value.trim();
|
|
|
|
|
|
if (!account) {
|
|
|
|
|
|
alert('请输入账号!');
|
2025-09-06 07:02:17 +00:00
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 验证权限选择
|
|
|
|
|
|
if (selectedPermissions.size === 0) {
|
|
|
|
|
|
alert('请至少选择一个权限!');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 构建保存数据
|
|
|
|
|
|
const assignmentData = {
|
2025-09-07 07:35:21 +00:00
|
|
|
|
accountType: selectedAccountType,
|
|
|
|
|
|
operationType: selectedOperationType,
|
|
|
|
|
|
account: account,
|
2025-09-06 07:02:17 +00:00
|
|
|
|
permissions: Array.from(selectedPermissions)
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
console.log('保存权限分配数据:', assignmentData);
|
|
|
|
|
|
|
|
|
|
|
|
// 这里应该调用API保存数据
|
|
|
|
|
|
alert('权限分配保存成功!');
|
|
|
|
|
|
|
|
|
|
|
|
// 可选:保存后重置表单
|
|
|
|
|
|
// resetForm();
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
</body>
|
|
|
|
|
|
</html>
|