12345678910111213141516171819202122232425262728 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>角色管理</title>
- <link rel="stylesheet" href="../role/role.css">
- </head>
- <body>
- <h2>角色管理页面</h2>
- <div id="roles-container" class="role-info-cards-container">
-
- </div>
-
- <button id="createRoleButton" class="role-info-create-role-button" style="display: none;">创建角色</button>
-
- <div id="role-action-menu" class="role-info-modal" style="display: none;">
-
- </div>
- <script src="role.js"></script>
- </body>
- </html>
|