# 教学项目uniapp **Repository Path**: casepro/uniapp ## Basic Information - **Project Name**: 教学项目uniapp - **Description**: 教学项目uniapp + 小程序 + H5 家政服务 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2022-06-07 - **Last Updated**: 2023-04-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 教学项目uniapp 家政服务 ## 项目搭建 > 拉取项目到本地 ```git git clone https://gitee.com/douzhipro/uniapp.git ``` > 下载依赖,有二种方式安装,二选一 ```sh npm install || yarn install ``` > 运行H5项目 ```sh npm run serve || yarn serve ``` > 打包H5项目 ```sh npm run build || yarn build ``` > 修改H5接口地址 ./vue.config.js ```js module.exports = { transpileDependencies: ['uview-ui'], // 以下为接口代理设 devServer: { proxy: { '/api': { target: 'http://www.tp6.com/',// 接口地址 // 如果接口跨域,需要进行这个参数配置 changeOrigin: true, pathRewrite: { '^api': '' } } }, } } ```