# insurance **Repository Path**: windole0321/insurance ## Basic Information - **Project Name**: insurance - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-08-03 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 基本用法 ``` bash $ npm install $ npm run dev ``` # 目录结构 ``` |____build webpack打包的环境代码 |____config webpack打包的配置文件 |____node_modules 项目运行依赖的npm包 |____src 项目代码文件夹 |__components 自定义组件 |__pages 页面组件 |__plugins vue插件 |__ibox |__index.js vue插件的注册,包含接口请求及工具utils |__utils.js 工具类及共用方法注册js |__router 小程序的page.json的配置 |__flyio |__apiUrl 接口请求地址管理 |__config 接口请求配置管理 |__interceptors.js 接口请求拦截器 |__request 接口请求封装(包括loading及toast,接口的定制化配置及默认配置) |__modules store的管理文件 |__index.js 实现store对modules文件下的自动注册 |__store vuex状态管理 |__App.vue 小程序的App页面 |__main.js 小程序app.json配置 |____static 静态资源文件夹 |____.babelrc es6语法转换配置文件 |____.editorconfig 编辑器配置 |____.eslintignore eslint的忽略配置 |____.eslintrc.js eslint配置 |____.gitignore git push忽略配置 |____.postcssrc.js postcss插件的配置文件 |____index.html SPA的index页面 |____package.json npm包配置文件 |____README.md readme文档 ```