# 项目集 **Repository Path**: zou-xichen-cc/program ## Basic Information - **Project Name**: 项目集 - **Description**: 可展示的项目作品 - **Primary Language**: Unknown - **License**: MulanPSL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-04-17 - **Last Updated**: 2026-05-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ``` program ├─ backend-admin │ ├─ .dockerignore │ ├─ .env │ ├─ auto-imports.d.ts │ ├─ components.d.ts │ ├─ Dockerfile │ ├─ index.html │ ├─ nginx.conf │ ├─ package-lock.json │ ├─ package.json │ ├─ public │ │ └─ vite.svg │ ├─ README.md │ ├─ src │ │ ├─ api │ │ │ └─ parse.ts │ │ ├─ App.vue │ │ ├─ assets │ │ │ └─ vue.svg │ │ ├─ components │ │ │ ├─ ContarctFileUpload.vue │ │ │ ├─ ContractFileFormDialog.vue │ │ │ ├─ ContractFormDialog.vue │ │ │ ├─ ContractPagination.vue │ │ │ ├─ ContractTable.vue │ │ │ ├─ Header.vue │ │ │ ├─ Main.vue │ │ │ ├─ Menu.vue │ │ │ ├─ Select.vue │ │ │ ├─ StageFile.vue │ │ │ ├─ UserFormDialog.vue │ │ │ ├─ UserPagination.vue │ │ │ └─ UserTable.vue │ │ ├─ main.ts │ │ ├─ modules │ │ │ ├─ contract │ │ │ │ ├─ index.ts │ │ │ │ ├─ models │ │ │ │ │ └─ Contract.ts │ │ │ │ ├─ services │ │ │ │ │ └─ ContractService.ts │ │ │ │ ├─ stores │ │ │ │ │ └─ ContractStore.ts │ │ │ │ └─ types │ │ │ │ └─ contractTypes.ts │ │ │ ├─ department │ │ │ │ ├─ index.ts │ │ │ │ ├─ models │ │ │ │ │ └─ Department.ts │ │ │ │ ├─ services │ │ │ │ │ └─ DepartmentService.ts │ │ │ │ ├─ stores │ │ │ │ │ └─ DepartmentStore.ts │ │ │ │ └─ types │ │ │ │ └─ departmentTypes.ts │ │ │ ├─ role │ │ │ │ ├─ index.ts │ │ │ │ ├─ models │ │ │ │ │ └─ Role.ts │ │ │ │ ├─ services │ │ │ │ │ └─ RoleService.ts │ │ │ │ ├─ stores │ │ │ │ │ └─ RoleStore.ts │ │ │ │ └─ types │ │ │ │ └─ roleTypes.ts │ │ │ └─ user │ │ │ ├─ index.ts │ │ │ ├─ models │ │ │ │ └─ User.ts │ │ │ ├─ services │ │ │ │ └─ UserService.ts │ │ │ ├─ stores │ │ │ │ └─ UserStore.ts │ │ │ └─ types │ │ │ └─ userTypes.ts │ │ ├─ router │ │ │ ├─ index.ts │ │ │ ├─ permissionGuard.ts │ │ │ └─ routes.ts │ │ ├─ stores │ │ │ ├─ layout.ts │ │ │ └─ permission.ts │ │ ├─ style.css │ │ ├─ types │ │ │ └─ vue-router.d.ts │ │ └─ view │ │ ├─ 404 │ │ │ └─ index.vue │ │ ├─ layout │ │ │ ├─ contract │ │ │ │ ├─ editContract │ │ │ │ │ └─ index.vue │ │ │ │ └─ index.vue │ │ │ ├─ home │ │ │ │ ├─ dashboard │ │ │ │ │ └─ index.vue │ │ │ │ └─ index.vue │ │ │ ├─ index.vue │ │ │ └─ user │ │ │ ├─ editUser │ │ │ │ └─ index.vue │ │ │ └─ index.vue │ │ └─ login │ │ └─ index.vue │ ├─ tsconfig.json │ ├─ tsconfig.tsbuildinfo │ └─ vite.config.ts ├─ cloud │ └─ main.js ├─ dashboard-config.json ├─ docker-compose.yml ├─ nginx-proxy │ ├─ conf.d │ │ └─ parse-proxy.conf │ ├─ logs │ │ ├─ access.log │ │ ├─ error.log │ │ ├─ parse_access.log │ │ └─ parse_error.log │ └─ ssl │ └─ server │ ├─ server.crt │ └─ server.key ├─ parse-logs ├─ README.md ├─ 启动路径.md └─ 项目表结构信息.MD ```