# 汽修帝 **Repository Path**: newbie-xie/auto-repair-emperor ## Basic Information - **Project Name**: 汽修帝 - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-10-08 - **Last Updated**: 2024-10-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # scrolling-software ## 介绍 刷题软件-微信小程序 and APP ## 使用 - 安装依赖 ```bash pnpm install ``` - 运行 ```bash pnpm dev:mp-weixin ``` - 打包 ```bash pnpm build:mp-weixin ``` ## 分包说明 ### pages 主包,主要存放基础页面(首页、登录、我的。。。) ### pagesBusiness 业务包,应用所有业务功能页 ## 目录结构 ```bash ├── src # 主目录 │ ├── api # 接口文件 │ ├── colorui # colorui第三方插件 │ │ ├── components # colorui 组件文件夹 │ ├── common # 常见包 │ │ ├── styles # css文件 覆盖一些主题色 │ │ ├── test.ts # 常见的一些检验库 │ ├── components # 公共组件 │ │ ├── radio-and-checkbox # 单选、多选组件 │ │ ├── resultPop # 刷题结果组件 │ │ ├── UploadImg # 图片上传组件 │ │ ├── loginPopup # 微信小程序登录弹窗组件 │ │ ├── xzg-loading # 自定义的toast提示组件 │ ├── enum # 全局枚举 │ ├── hooks # 常用的hook集合 │ │ ├── useUpdateMPWX # 检查小程序更新 │ ├── pages # 主包页面 │ │ ├── account # 个人中心 │ │ ├── index # 首页 │ │ ├── inlet # 入口文件 │ │ ├── login # 登录 │ │ ├── register # 注册 │ │ ├── searchView # 搜索页 │ ├── pagesBusiness # 分包页面 │ │ ├── components # 分包公共组件 │ │ │ ├── case-analysis # 案例分析组件 │ │ │ ├── judge # 判断题组件 │ │ │ ├── noun-interpretation # 名词解释、简答、论述组件 │ │ │ ├── scantron # 刷题结果组件 2 │ │ ├── authentication # 教师资格认证 │ │ ├── book-details # 系统题库详情 │ │ ├── down-history # 下载历史 │ │ ├── feedback # 反馈建议 │ │ ├── importTest # 导入题库 │ │ ├── my-info # 个人信息 │ │ ├── my-setting # 设置 │ │ ├── radio-and-checkbox-shuati # 刷题入口页面 │ │ ├── reset-password # 重置密码 │ │ ├── test-details # 设置试卷题目与分数 │ │ ├── test-details-chapter # 题目章节页面 │ │ ├── test-preview # 试卷导出预览 │ │ ├── user-agreement # 用户隐私协议 │ │ ├── word-details # 文档详情、文档预览 │ │ ├── wrong-and-collect # 错题收藏 │ ├── static # 静态资源 │ │ ├── iconfont # 阿里巴巴iconfont图标库集成 │ │ ├── icons # 本地icons资源 │ │ ├── tabbar # 本地tabbar图标资源 │ ├── store # pinia大菠萝状态管理仓库 │ ├── uni_modules # uniapp组件 │ ├── utils # 工具库 │ │ ├── http # uni-ajax请求封装 │ │ ├── date.ts # 常用时间格式化方法库 │ │ ├── form.ts # 常用表单格式化方法库 ```