feat: 搭建后台管理端

- 初始化 Vue 3 + TypeScript + Vite 管理端工程

- 增加登录、租户、组织、用户、名片与系统页面

- 补充路由、状态管理、接口封装与基础样式体系
This commit is contained in:
2026-03-20 12:43:53 +08:00
parent 9ef50288e9
commit 86c321e832
47 changed files with 9387 additions and 0 deletions

13
frontend_admin/index.html Normal file
View File

@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<title>Easycard 管理后台</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>