# miniprogram-template **Repository Path**: codergzh/miniprogram-template ## Basic Information - **Project Name**: miniprogram-template - **Description**: 微信小程序基础模板 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-09-23 - **Last Updated**: 2021-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # uniapp-template ### 介绍 微信小程序项目基础模版,会持续更新。。。 ### 安装教程 使用微信开发者工具打开 ### 项目结构 ``` bash ├── components // 公共组件 │   └── demo.vue // 组件模版 ├── pages // 项目页面 │   ├── index │ ├── └── index.js │ ├── └── index.json │ ├── └── index.wxml │ ├── └── index.wxss │   ├── logs │ ├── └── logs.js │ ├── └── logs.json │ ├── └── logs.wxml │ └── └── logs.wxss ├── services // 网络服务 │   ├── api // 存放项目api │ ├── └── user.js // 引入api │ ├── url // 存放项目接口url │ ├── └── user.js // 引入url │   └── request.js // wx.request封装 ├── static // 公共资源 │   ├── images // 图片 ├── style // 样式目录 │ ├── common.wxss // 公共样式 │ ├── iconfont.wxss // 字体图标样式 │ └── weui.wxss // ui库 ├── utils // 工具目录 │   ├── utils.js // 工具文件 │ └── goToPage.js // 封装的页面跳转 ├── app.js // 入口文件 ├── app.json // 配置文件 ├── app.wxss // 全局的样式文件 ├── project.config.json // 保存开发工具配置项 ├── sitemap.json // 网站地图,可以对小程序进行seo优化,让搜索排名靠前 └── README.md // 项目介绍文件 ``` ### End