From 008415f584ca31b50bfbae1dd370c1a8bd9442d7 Mon Sep 17 00:00:00 2001 From: gaoxs Date: Mon, 16 Mar 2020 16:10:12 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0git=E5=BF=BD=E7=95=A5?= =?UTF-8?q?=E6=96=87=E4=BB=B6,=E5=A2=9E=E5=8A=A0=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E5=9F=BA=E6=9C=AC=E6=8F=8F=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 13 +++++++++++++ README.md | 22 ++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1622bc4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +.DS_Store +node_modules/ +dist/ +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Editor directories and files +.idea +*.suo +*.ntvs* +*.njsproj +*.sln diff --git a/README.md b/README.md new file mode 100644 index 0000000..a8e0b6d --- /dev/null +++ b/README.md @@ -0,0 +1,22 @@ +# 使用说明 + +## 安装步骤 +- 先从私服上clone下来项目 +- 下载uni的开发者工具 https://www.dcloud.io/hbuilderx.html +- 登录微信开发者工具打开 菜单 > 设置 > 安全设置 勾选服务端口为开启 +- 命令行进入项目所在的目录,点击 hbuilderx > 菜单 > 运行 > 运行到小程序模拟器 > 微信开发者工具 +- uni会自动打开微信开发者工具并且打开uni的项目 + +## 注意事项 +- manifest.json 中可以配置uni项目的一些信息 +- 打开manifest.json可配置小程序的 appid +- 由于需要兼容app,公共样式由 main.js 迁移到了 App.vue,公共样式请在App.vue中进行编辑 +- 由于需要兼容app,尺寸单位由之前的rem改为rpx,由于修改样式工作量太大并且容易出错,已将.css更改为.less并在其中以之前rem的单位*100,获得新的rpx单位 +- 如需修改样式问题,请编辑.less的文件,请勿编辑.css的文件 + +## 声明 +- 此阶段的uni项目app端只是可以运行界面,还无法进行正常的登录以及分享和支付操作 +- 小程序端暂时90%的功能及界面正常,相关代码后面兼容app时会做一些调整 +- 运行app项目ios需要安装xcode,安卓需要装安卓的sdk以及安卓模拟器,建议安卓安装genymotion https://www.genymotion.com/ 登录时可选择私人使用,勾选后无需付费 + +