修改项目声明
This commit is contained in:
@ -1,6 +1,6 @@
|
|||||||
# 使用说明
|
# 使用说明
|
||||||
|
|
||||||
## 安装步骤
|
## 小程序安装步骤
|
||||||
- 先从私服上clone下来项目
|
- 先从私服上clone下来项目
|
||||||
- 下载uni的开发者工具 https://www.dcloud.io/hbuilderx.html
|
- 下载uni的开发者工具 https://www.dcloud.io/hbuilderx.html
|
||||||
- 登录微信开发者工具打开 菜单 > 设置 > 安全设置 勾选服务端口为开启
|
- 登录微信开发者工具打开 菜单 > 设置 > 安全设置 勾选服务端口为开启
|
||||||
@ -16,8 +16,7 @@
|
|||||||
- 如需修改样式问题,请编辑.less的文件,请勿编辑.css的文件
|
- 如需修改样式问题,请编辑.less的文件,请勿编辑.css的文件
|
||||||
|
|
||||||
## 声明
|
## 声明
|
||||||
- 此阶段的uni项目app端只是可以运行界面,还无法进行正常的登录以及分享和支付操作
|
- app测试版已上,请通过 `https://www.pgyer.com/yRYf` 安装测试。
|
||||||
- 小程序端暂时90%的功能及界面正常,相关代码后面兼容app时会做一些调整
|
|
||||||
- 运行app项目ios需要安装xcode,安卓需要装安卓的sdk以及安卓模拟器,建议安卓安装genymotion https://www.genymotion.com/ 登录时可选择私人使用,勾选后无需付费
|
- 运行app项目ios需要安装xcode,安卓需要装安卓的sdk以及安卓模拟器,建议安卓安装genymotion https://www.genymotion.com/ 登录时可选择私人使用,勾选后无需付费
|
||||||
|
|
||||||
|
|
||||||
|
@ -44,8 +44,7 @@
|
|||||||
<view class="item" v-for="(item, vipCompleteIndex) in vipComplete" :key="vipCompleteIndex">
|
<view class="item" v-for="(item, vipCompleteIndex) in vipComplete" :key="vipCompleteIndex">
|
||||||
<view class="top acea-row row-between-wrapper">
|
<view class="top acea-row row-between-wrapper">
|
||||||
<view class="name">
|
<view class="name">
|
||||||
{{ item.name
|
{{ item.name}}
|
||||||
}}
|
|
||||||
<text class="iconfont icon-wenti" v-if="item.illustrate" @click="showGrow(item)"></text>
|
<text class="iconfont icon-wenti" v-if="item.illustrate" @click="showGrow(item)"></text>
|
||||||
</view>
|
</view>
|
||||||
<view>{{ item.finish ? "已满足条件" : "未满足条件" }}</view>
|
<view>{{ item.finish ? "已满足条件" : "未满足条件" }}</view>
|
||||||
@ -165,7 +164,8 @@ export default {
|
|||||||
},
|
},
|
||||||
err => {
|
err => {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: err.msg || err.response.data.msg|| err.response.data.message,
|
title:
|
||||||
|
err.msg || err.response.data.msg || err.response.data.message,
|
||||||
icon: "none",
|
icon: "none",
|
||||||
duration: 2000
|
duration: 2000
|
||||||
});
|
});
|
||||||
@ -182,7 +182,8 @@ export default {
|
|||||||
},
|
},
|
||||||
err => {
|
err => {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: err.msg || err.response.data.msg|| err.response.data.message,
|
title:
|
||||||
|
err.msg || err.response.data.msg || err.response.data.message,
|
||||||
icon: "none",
|
icon: "none",
|
||||||
duration: 2000
|
duration: 2000
|
||||||
});
|
});
|
||||||
|
Reference in New Issue
Block a user