category.md 2.02 KB

目录结构

│  .env.development // 本地开发环境配置
│  .env.production // 线上部署正式环境配置
│  .env.staging // 线上部署测试环境配置
│  .gitignore // 不上传git的文件配置
│  ie.html // IE浏览器拦截提示页面
│  index.html // 入口html
│  package-lock.json // 资源包
│  package.json // 资源包
│  README.md // 项目说明
│  tsconfig.json // typescript配置文档
│  vite.config.ts // vite配置文档
├─.vscode
├─public 静态资源
└─src
    ├─@type
    │  └─module // ts module 定义
    ├─api // 接口请求
    │  ├─community // 小区
    │  ├─event // 公益活动
    │  ├─housekeeper // 楼宇
    │  ├─notify // 公告
    │  ├─ownerManagement // 居民
    │  ├─property // 服务
    │  └─user // 用户
    │      ├─login // 登录
    │      ├─permission // 权限
    │      ├─role // 角色
    │      └─user // 用户
    ├─assets // 静态资源
    │  └─404_images // 404页面装饰图
    ├─components // 公共组件
    │  ├─FileUpload // 单文件上传
    │  ├─Pagination // 分页
    │  └─Uploader // 单图片上传
    ├─layout // 公共布局
    ├─pinia // 状态管理
    │  └─modules
    ├─router // 路由
    │  └─modules
    ├─style // 样式
    ├─utils // 全局方法、变量
    └─views // 页面视图
        ├─column 
        ├─community
        │  ├─housekeeper 
        │  ├─houses 
        │  └─residence 
        ├─dashboard
        ├─error
        ├─event
        │  ├─category
        │  └─handwork
        ├─housekeeper
        │  └─buildinMganager
        ├─maintain
        ├─notify
        ├─ownerManagement
        │  └─owner
        ├─permission
        ├─property
        ├─repair
        ├─role
        ├─serviceman
        ├─system
        └─user