diff --git a/config/app.js b/config/app.js index e76d97b..6a45260 100644 --- a/config/app.js +++ b/config/app.js @@ -6,13 +6,13 @@ let VUE_APP_WS_URL = `ws://${location.hostname}?type=user` let openPlantGrass = '-openPlantGrass-' // 网络接口修改此字符 小程序域名要求https -let httpApi = 'https://bt.test.cdlfjy.com/' // 开发 -// let httpApi = 'https://mp.scwmbh.cn/' // 生产 +// let httpApi = 'https://bt.test.cdlfjy.com/' // 开发 +let httpApi = 'https://mp.scwmbh.cn/' // 生产 // 聊天接口修改此字符 小程序聊天要求wss 例如: -let wsApi = 'wss://bt.test.cdlfjy.com' -// let wsApi = 'wss://mp.scwmbh.cn' +// let wsApi = 'wss://bt.test.cdlfjy.com' +let wsApi = 'wss://mp.scwmbh.cn' module.exports = { diff --git a/pages/users/online_payment/exchange/index.vue b/pages/users/online_payment/exchange/index.vue index 51986cb..c2f7733 100644 --- a/pages/users/online_payment/exchange/index.vue +++ b/pages/users/online_payment/exchange/index.vue @@ -38,7 +38,7 @@ - 剩余额度 + 剩余酒卡额度 {{ pointUserInfo.available }} @@ -212,10 +212,10 @@ export default { handler(val) { let totalMoney = this.pay_info.total_money.toFixed(2); console.log('总价值', totalMoney) - // 判断额度是否足够 + // 判断酒卡额度是否足够 if(Number(totalMoney) > Number(this.pointUserInfo.available)){ this.$util.Tips({ - title: '总价值不能超过剩余额度' + title: '总价值不能超过剩余酒卡额度' }); this.pay_info.total_money = 0; return false;