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

View File

@@ -0,0 +1,20 @@
{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"baseUrl": ".",
"paths": {
"@/*": [
"./src/*"
]
},
"types": [
"vite/client"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue"
]
}