From 6a77ecb6ba557215205a127e68750425cbdc7f04 Mon Sep 17 00:00:00 2001
From: wuhui_zzw <1760308791@qq.com>
Date: Wed, 17 Jan 2024 13:33:15 +0800
Subject: [PATCH] =?UTF-8?q?=E6=96=87=E5=AD=97=E6=9B=BF=E6=8D=A2=EF=BC=9A?=
=?UTF-8?q?=E9=A2=9D=E5=BA=A6=E6=94=B9=E4=B8=BA=E9=85=92=E5=8D=A1=E9=A2=9D?=
=?UTF-8?q?=E5=BA=A6?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
config/app.js | 8 ++++----
pages/users/online_payment/exchange/index.vue | 6 +++---
2 files changed, 7 insertions(+), 7 deletions(-)
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;