diff --git a/common/config.js b/common/config.js index 313c899..2874e7a 100644 --- a/common/config.js +++ b/common/config.js @@ -1,7 +1,7 @@ // APP -// const ROOTPATH1 = "https://dj-api.hnsiyao.cn/czg/"; // -// const ROOTPATH = "https://dj-api.hnsiyao.cn/czg/"; //后台服务域名 -// const ROOTPATH2 = "https://dj-h5.hnsiyao.cn"; //后台服务域名 +const ROOTPATH1 = "https://dj-api.hnsiyao.cn/czg/"; // +const ROOTPATH = "https://dj-api.hnsiyao.cn/czg/"; //后台服务域名 +const ROOTPATH2 = "https://dj-h5.hnsiyao.cn"; //后台服务域名 // const ROOTPATH1 = "https://video.hnsiyao.cn/czg/"; // // const ROOTPATH = "https://video.hnsiyao.cn/czg/"; //后台服务域名 @@ -12,9 +12,9 @@ // const ROOTPATH = "https://web.hnsiyao.cn/czg/"; //后台服务域名 // const ROOTPATH2 = "https://dj-h5.hnsiyao.cn"; //后台服务域名 -const ROOTPATH1 = "https://web-api.hnsiyao.cn/czg/"; // -const ROOTPATH = "https://web-api.hnsiyao.cn/czg/"; //后台服务域名 -const ROOTPATH2 = "https://video-h5.hnsiyao.cn"; //后台服务域名 +// const ROOTPATH1 = "https://web-api.hnsiyao.cn/czg/"; // +// const ROOTPATH = "https://web-api.hnsiyao.cn/czg/"; //后台服务域名 +// const ROOTPATH2 = "https://video-h5.hnsiyao.cn"; //后台服务域名 // const ROOTPATH1 = "http://192.168.1.41:8100/czg/"; // // const ROOTPATH = "http://192.168.1.41:8100/czg/"; //后台服务域名 diff --git a/manifest.json b/manifest.json index 83042e1..d605929 100644 --- a/manifest.json +++ b/manifest.json @@ -2,8 +2,8 @@ "name" : "斯耀短剧", "appid" : "__UNI__E0B05B1", "description" : "", - "versionName" : "1.1.8", - "versionCode" : 118, + "versionName" : "1.1.9", + "versionCode" : 119, "transformPx" : false, /* 5+App特有相关 */ "app-plus" : { diff --git a/me/detail/detail.nvue b/me/detail/detail.nvue index 2a9af73..19b6ff1 100644 --- a/me/detail/detail.nvue +++ b/me/detail/detail.nvue @@ -832,8 +832,8 @@ } else { uni.hideLoading() uni.showToast({ - icon: res.msg, - title: '支付失败!' + icon: "none", + title: res.msg }); } diff --git a/me/invite/cashDetail.vue b/me/invite/cashDetail.vue index 1e330b8..fce77d8 100644 --- a/me/invite/cashDetail.vue +++ b/me/invite/cashDetail.vue @@ -57,9 +57,9 @@ 实名认证 - + 红包明细 diff --git a/me/invite/realName.vue b/me/invite/realName.vue index e4801d5..133e86a 100644 --- a/me/invite/realName.vue +++ b/me/invite/realName.vue @@ -9,10 +9,10 @@ - 请正确填写收款人的银行卡号和真实的收款人姓名 - 手机号需是银行卡银行卡预留手机号 + 手机号需是银行卡预留手机号 银行卡号需与收款人姓名一致 身份证信息仅可使用一次 否则将无法正常收款,请须知 @@ -32,6 +32,7 @@ mobile: '', certNum: '', accountNo: '', + user: {}, logining: false } }, @@ -41,16 +42,15 @@ if (userId) { this.$u.api.userinfo().then(res => { if (res.code === 0) { + this.user = res.data if (res.data.certName) { this.certName = res.data.certName; } if (res.data.mobile) { this.mobile = res.data.mobile; } - if (res.data.certNo) { - this.certNum = res.data.certNo; - } if (res.data.accountNo) { + this.certNum = res.data.certNo; this.accountNo = res.data.accountNo; } @@ -77,7 +77,7 @@ }) } else if (!this.mobile) { uni.showToast({ - title: '请输入手机号号', + title: '请输入手机号', icon: 'none' }) } else if (!this.certNum) {