完善功能
This commit is contained in:
@ -4,56 +4,56 @@
|
||||
|
||||
<view class="card-box">
|
||||
<view class="card-item">
|
||||
<image src="@/static/bjk.png" class="card-img" alt="" />
|
||||
<image src="https://xh.stnav.com/uploads/sport/byk.png" class="card-img" alt="" />
|
||||
|
||||
<view class="card-title">白金卡</view>
|
||||
<view class="card-balance">¥1602.00</view>
|
||||
<view class="card-title">白银卡</view>
|
||||
<view class="card-balance">¥{{ userBalance.balance1 }}</view>
|
||||
<view class="card-discount">
|
||||
<text class="card-discount1">9.5</text>
|
||||
<text class="card-discount1">{{ balance.discount1 }}</text>
|
||||
<text class="card-discount2">折</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="card-item">
|
||||
<image src="@/static/bjk.png" class="card-img" alt="" />
|
||||
<image src="https://xh.stnav.com/uploads/sport/hjk.png" class="card-img" alt="" />
|
||||
|
||||
<view class="card-title">白金卡</view>
|
||||
<view class="card-balance">¥1602.00</view>
|
||||
<view class="card-title">黄金卡</view>
|
||||
<view class="card-balance">¥{{ userBalance.balance2 }}</view>
|
||||
<view class="card-discount">
|
||||
<text class="card-discount1">9.5</text>
|
||||
<text class="card-discount1">{{ balance.discount2 }}</text>
|
||||
<text class="card-discount2">折</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="card-item">
|
||||
<image src="@/static/bjk.png" class="card-img" alt="" />
|
||||
<image src="https://xh.stnav.com/uploads/sport/bjk.png" class="card-img" alt="" />
|
||||
|
||||
<view class="card-title">白金卡</view>
|
||||
<view class="card-balance">¥1602.00</view>
|
||||
<view class="card-title">铂金卡</view>
|
||||
<view class="card-balance">¥{{ userBalance.balance3 }}</view>
|
||||
<view class="card-discount">
|
||||
<text class="card-discount1">9.5</text>
|
||||
<text class="card-discount1">{{ balance.discount3 }}</text>
|
||||
<text class="card-discount2">折</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="card-item">
|
||||
<image src="@/static/bjk.png" class="card-img" alt="" />
|
||||
<image src="https://xh.stnav.com/uploads/sport/zsk.png" class="card-img" alt="" />
|
||||
|
||||
<view class="card-title">白金卡</view>
|
||||
<view class="card-balance">¥1602.00</view>
|
||||
<view class="card-title">钻石卡</view>
|
||||
<view class="card-balance">¥{{ userBalance.balance4 }}</view>
|
||||
<view class="card-discount">
|
||||
<text class="card-discount1">9.5</text>
|
||||
<text class="card-discount1">{{ balance.discount4 }}</text>
|
||||
<text class="card-discount2">折</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="card-item">
|
||||
<image src="@/static/bjk.png" class="card-img" alt="" />
|
||||
<image src="https://xh.stnav.com/uploads/sport/zzk.png" class="card-img" alt="" />
|
||||
|
||||
<view class="card-title">白金卡</view>
|
||||
<view class="card-balance">¥1602.00</view>
|
||||
<view class="card-title">至尊卡</view>
|
||||
<view class="card-balance">¥{{ userBalance.balance5 }}</view>
|
||||
<view class="card-discount">
|
||||
<text class="card-discount1">9.5</text>
|
||||
<text class="card-discount1">{{ balance.discount5 }}</text>
|
||||
<text class="card-discount2">折</text>
|
||||
</view>
|
||||
</view>
|
||||
@ -69,7 +69,37 @@
|
||||
},
|
||||
|
||||
data() {
|
||||
return {}
|
||||
return {
|
||||
balance: {},
|
||||
userBalance: {}
|
||||
}
|
||||
},
|
||||
|
||||
onLoad() {
|
||||
let self = this;
|
||||
uni.showLoading({
|
||||
title: '加载中'
|
||||
});
|
||||
// 获取充值
|
||||
self._post(
|
||||
'ground.ground/groundSetting',
|
||||
{
|
||||
app_id: self.getAppId(),
|
||||
},
|
||||
function(res) {
|
||||
self.balance = res.data.lists.balance;
|
||||
}
|
||||
)
|
||||
|
||||
// 获取充值
|
||||
self._post('user.index/detail', {
|
||||
source: self.getPlatform()
|
||||
}, function(res) {
|
||||
console.log("🚀 ~ res:", res)
|
||||
self.userBalance = res.data.userInfo;
|
||||
self.loadding = false;
|
||||
uni.hideLoading();
|
||||
});
|
||||
},
|
||||
|
||||
methods: {
|
||||
|
||||
@ -8,87 +8,18 @@
|
||||
<view class="r-desc2">充值金额只能消费,不能提现</view>
|
||||
</view>
|
||||
|
||||
<view class="bg-white card" @click="selectCard">
|
||||
<view class="bg-white card">
|
||||
<view>
|
||||
<view class="card-item">
|
||||
<view class="card-item" :class="currentType == i + 1 ? 'active' : ''" v-for="i in 5" :key="i" @click="selectCard(i + 1)">
|
||||
<view class="d-f a-i-c">
|
||||
<view class="icon-box d-c-c card-checkout"><span class="icon iconfont icon-xuanze"></span></view>
|
||||
<view class="card-balance">充值1000</view>
|
||||
<view class="card-balance">充值{{ balance['balance' + (i + 1)] }}</view>
|
||||
</view>
|
||||
|
||||
<view class="d-f a-i-c">
|
||||
<view class="d-f a-i-c">
|
||||
<view class="sale">
|
||||
<text>预存享</text>
|
||||
<text class="discount">9.5</text>
|
||||
<text>折</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="card-item">
|
||||
<view class="d-f a-i-c">
|
||||
<view class="icon-box d-c-c card-checkout"><span class="icon iconfont icon-xuanze"></span></view>
|
||||
<view class="card-balance">充值1000</view>
|
||||
</view>
|
||||
|
||||
<view class="d-f a-i-c">
|
||||
<view class="d-f a-i-c">
|
||||
<view class="sale">
|
||||
<text>预存享</text>
|
||||
<text class="discount">9.5</text>
|
||||
<text>折</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="card-item">
|
||||
<view class="d-f a-i-c">
|
||||
<view class="icon-box d-c-c card-checkout"><span class="icon iconfont icon-xuanze"></span></view>
|
||||
<view class="card-balance">充值1000</view>
|
||||
</view>
|
||||
|
||||
<view class="d-f a-i-c">
|
||||
<view class="d-f a-i-c">
|
||||
<view class="sale">
|
||||
<text>预存享</text>
|
||||
<text class="discount">9.5</text>
|
||||
<text>折</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="card-item">
|
||||
<view class="d-f a-i-c">
|
||||
<view class="icon-box d-c-c card-checkout"><span class="icon iconfont icon-xuanze"></span></view>
|
||||
<view class="card-balance">充值1000</view>
|
||||
</view>
|
||||
|
||||
<view class="d-f a-i-c">
|
||||
<view class="d-f a-i-c">
|
||||
<view class="sale">
|
||||
<text>预存享</text>
|
||||
<text class="discount">9.5</text>
|
||||
<text>折</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="card-item active">
|
||||
<view class="d-f a-i-c">
|
||||
<view class="icon-box d-c-c card-checkout"><span class="icon iconfont icon-xuanze"></span></view>
|
||||
<view class="card-balance">充值1000</view>
|
||||
</view>
|
||||
|
||||
<view class="d-f a-i-c">
|
||||
<view class="d-f a-i-c">
|
||||
<view class="sale">
|
||||
<text>预存享</text>
|
||||
<text class="discount">9.5</text>
|
||||
<text class="discount">{{ balance['discount' + (i + 1)] }}</text>
|
||||
<text>折</text>
|
||||
</view>
|
||||
</view>
|
||||
@ -104,32 +35,158 @@
|
||||
</view>
|
||||
|
||||
<view class="card-btn" @click="confirmCard">确定</view>
|
||||
|
||||
</view>
|
||||
|
||||
<!-- 会员卡选择弹窗 -->
|
||||
<!-- <Popup :show="cardPopup" :width='750' :padding="0" type="bottom" backgroundColor="#fff" radius="32rpx 32rpx 0 0">
|
||||
<view class="notice-popup">
|
||||
<view class="title">提示</view>
|
||||
<view class="desc">
|
||||
<view class="rule">是否充值该</view>
|
||||
</view>
|
||||
<view class="btn">
|
||||
<view class="btn1" @click="cancelReservePopup = false">取消</view>
|
||||
<view class="btn2" @click="cancelReserveOrder">确定</view>
|
||||
</view>
|
||||
</view>
|
||||
</Popup> -->
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import navbar from '@/components/navbar.vue';
|
||||
import Popup from '@/components/uni-popup.vue';
|
||||
|
||||
export default {
|
||||
components: {
|
||||
navbar,
|
||||
Popup
|
||||
},
|
||||
|
||||
data() {
|
||||
return {}
|
||||
return {
|
||||
cardPopup: false,
|
||||
currentType: -1,
|
||||
balance: {}
|
||||
}
|
||||
},
|
||||
|
||||
onLoad() {
|
||||
let self = this;
|
||||
// 获取充值卡
|
||||
self._post(
|
||||
'ground.ground/groundSetting',
|
||||
{
|
||||
app_id: self.getAppId(),
|
||||
},
|
||||
function(res) {
|
||||
self.balance = res.data.lists.balance;
|
||||
console.log("🚀 ~ res:", self.balance)
|
||||
}
|
||||
)
|
||||
},
|
||||
|
||||
methods: {
|
||||
// 选择会员卡
|
||||
selectCard() {
|
||||
console.log("选择会员卡");
|
||||
selectCard(index) {
|
||||
this.currentType = index;
|
||||
},
|
||||
|
||||
// 确认选择
|
||||
confirmCard() {
|
||||
console.log("确认选择");
|
||||
}
|
||||
if (this.currentType == -1) {
|
||||
uni.showToast({
|
||||
title: '请选择充值金额',
|
||||
icon: 'none'
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
this.wxPay()
|
||||
},
|
||||
|
||||
// 微信支付
|
||||
wxPay() {
|
||||
let self = this;
|
||||
uni.showLoading({
|
||||
title: '加载中'
|
||||
});
|
||||
|
||||
try {
|
||||
self._post(
|
||||
'user.groundOrder/recharge',
|
||||
{
|
||||
app_id: self.getAppId(),
|
||||
type: this.currentType
|
||||
},
|
||||
function(res) {
|
||||
if (res.code) {
|
||||
const data = res.data
|
||||
console.log("🚀 ~ pay data:", data)
|
||||
uni.requestPayment({
|
||||
provider: 'wxpay',
|
||||
timeStamp: data.payment.timeStamp,
|
||||
nonceStr: data.payment.nonceStr,
|
||||
package: 'prepay_id=' + data.payment.prepay_id,
|
||||
signType: 'MD5',
|
||||
paySign: data.payment.paySign,
|
||||
success: res => {
|
||||
self.result = 'success'
|
||||
console.log("🚀 ~ pay success res:", res)
|
||||
uni.showToast({
|
||||
title: '支付成功',
|
||||
icon: 'none'
|
||||
});
|
||||
self.loadding = false;
|
||||
|
||||
setTimeout(() => {
|
||||
uni.redirectTo({
|
||||
url: '/bundle/recharge/card'
|
||||
});
|
||||
}, 500);
|
||||
},
|
||||
fail: res => {
|
||||
console.log("🚀 ~ pay error res:", res)
|
||||
self.result = 'fail'
|
||||
self.loadding = false;
|
||||
|
||||
uni.showToast({
|
||||
title: '支付失败',
|
||||
icon: 'none'
|
||||
});
|
||||
|
||||
|
||||
setTimeout(() => {
|
||||
uni.redirectTo({
|
||||
url: '/bundle/recharge/card'
|
||||
});
|
||||
}, 500);
|
||||
},
|
||||
});
|
||||
} else {
|
||||
self.loadding = false;
|
||||
uni.showToast({
|
||||
title: '创建订单失败',
|
||||
icon: 'none'
|
||||
});
|
||||
return
|
||||
}
|
||||
}
|
||||
)
|
||||
} catch (error) {
|
||||
console.log("🚀 ~ pay error res:", res)
|
||||
self.result = 'fail'
|
||||
self.loadding = false;
|
||||
|
||||
uni.showToast({
|
||||
title: '支付失败',
|
||||
icon: 'none'
|
||||
});
|
||||
setTimeout(() => {
|
||||
uni.navigateBack({delta: 1})
|
||||
}, 500);
|
||||
}
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
@ -227,4 +284,39 @@
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
.notice-popup {
|
||||
padding: 20rpx 0;
|
||||
width: 100%;
|
||||
|
||||
.title {
|
||||
font-size: 36rpx;
|
||||
color: #303133;
|
||||
line-height: 50rpx;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.desc {
|
||||
margin-top: 48rpx;
|
||||
font-weight: 400;
|
||||
font-size: 32rpx;
|
||||
color: #303133;
|
||||
line-height: 52rpx;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.rule {
|
||||
margin-bottom: 18rpx;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.rule1 {
|
||||
font-weight: 400;
|
||||
font-size: 32rpx;
|
||||
color: #303133;
|
||||
line-height: 44rpx;
|
||||
text-align: left;
|
||||
margin-bottom: 10rpx;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
@ -56,8 +56,7 @@
|
||||
<view class="title1 d-b-c">
|
||||
<view>折扣优惠</view>
|
||||
<view>
|
||||
<text style="margin-right: 6rpx;color: #FA2B21;"> - </text>
|
||||
<price-format color="#FA2B21" :subscript-size="30" :first-size="30" :second-size="30" :price="bill.dis"></price-format>
|
||||
<price-format color="#FA2B21" :subscript-size="30" :first-size="30" :second-size="30" :price="bill.dis" :showSubscript="false"></price-format>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
@ -77,7 +76,7 @@
|
||||
<view class="d-f d-c j-c-b">
|
||||
<view>
|
||||
合计: <price-format color="#FF5951" :subscript-size="26" :first-size="40" :second-size="40" :price="bill.total"></price-format>
|
||||
<text style="margin-left: 10rpx;color: #FA2B21;font-size: 26rpx;">8折</text>
|
||||
<text style="margin-left: 10rpx;color: #FA2B21;font-size: 26rpx;">{{ userDiscount }}折</text>
|
||||
</view>
|
||||
<view class="d-f j-c-c a-i-c" style="margin-top: 10rpx;" @click="closeBillPopup">
|
||||
<view class="price-detail">费用明细</view>
|
||||
@ -99,24 +98,91 @@
|
||||
<text class="f34 fb">会员卡选择</text>
|
||||
</view>
|
||||
|
||||
<view class="bg-white card" @click="selectCard">
|
||||
<view class="card-item">
|
||||
<view class="bg-white card">
|
||||
<view class="card-item" :class="currentType == 1 ? 'active' : ''" @click="currentType = 1">
|
||||
<view class="d-f a-i-c">
|
||||
<view class="card-title">白金会员卡</view>
|
||||
<view class="card-title">白银会员卡</view>
|
||||
<view class="d-f a-i-c">
|
||||
<view class="discount">享</view>
|
||||
<view class="sale">
|
||||
<text>9.5</text>
|
||||
<text>{{ balance.discount1 }}</text>
|
||||
<text>折</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="d-f a-i-c">
|
||||
<view class="card-balance">¥212.00</view>
|
||||
<view class="card-balance">¥{{ userBalance.balance1 }}</view>
|
||||
<view class="icon-box d-c-c card-checkout"><span class="icon iconfont icon-xuanze"></span></view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="card-item" :class="currentType == 2 ? 'active' : ''" @click="currentType = 2">
|
||||
<view class="d-f a-i-c">
|
||||
<view class="card-title">黄金会员卡</view>
|
||||
<view class="d-f a-i-c">
|
||||
<view class="discount">享</view>
|
||||
<view class="sale">
|
||||
<text>{{ balance.discount2 }}</text>
|
||||
<text>折</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="d-f a-i-c">
|
||||
<view class="card-balance">¥{{ userBalance.balance2 }}</view>
|
||||
<view class="icon-box d-c-c card-checkout"><span class="icon iconfont icon-xuanze"></span></view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="card-item" :class="currentType == 3 ? 'active' : ''" @click="currentType = 3">
|
||||
<view class="d-f a-i-c">
|
||||
<view class="card-title">铂金会员卡</view>
|
||||
<view class="d-f a-i-c">
|
||||
<view class="discount">享</view>
|
||||
<view class="sale">
|
||||
<text>{{ balance.discount3 }}</text>
|
||||
<text>折</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="d-f a-i-c">
|
||||
<view class="card-balance">¥{{ userBalance.balance3 }}</view>
|
||||
<view class="icon-box d-c-c card-checkout"><span class="icon iconfont icon-xuanze"></span></view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="card-item" :class="currentType == 4 ? 'active' : ''" @click="currentType = 4">
|
||||
<view class="d-f a-i-c">
|
||||
<view class="card-title">钻石会员卡</view>
|
||||
<view class="d-f a-i-c">
|
||||
<view class="discount">享</view>
|
||||
<view class="sale">
|
||||
<text>{{ balance.discount4 }}</text>
|
||||
<text>折</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="d-f a-i-c">
|
||||
<view class="card-balance">¥{{ userBalance.balance4 }}</view>
|
||||
<view class="icon-box d-c-c card-checkout"><span class="icon iconfont icon-xuanze"></span></view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="card-item" :class="currentType == 5 ? 'active' : ''" @click="currentType = 5">
|
||||
<view class="d-f a-i-c">
|
||||
<view class="card-title">至尊会员卡</view>
|
||||
<view class="d-f a-i-c">
|
||||
<view class="discount">享</view>
|
||||
<view class="sale">
|
||||
<text>{{ balance.discount5 }}</text>
|
||||
<text>折</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="d-f a-i-c">
|
||||
<view class="card-balance">¥{{ userBalance.balance5 }}</view>
|
||||
<view class="icon-box d-c-c card-checkout"><span class="icon iconfont icon-xuanze"></span></view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="card-btn" @click="confirmCard">确定</view>
|
||||
</view>
|
||||
</view>
|
||||
@ -208,15 +274,15 @@
|
||||
</view>
|
||||
<view class="icon-box d-c-c"><span class="icon iconfont icon-xuanze"></span></view>
|
||||
</view>
|
||||
<view :class="payType == 'balance' ? 'item active' : 'item'" @tap="payTypeFunc('balance')">
|
||||
<view :class="payType >= 1 ? 'item active' : 'item'" @tap="payTypeFunc('balance')">
|
||||
<view class="d-s-c">
|
||||
<view class="icon-box d-c-c mr10"><span class="icon iconfont icon-yue"></span></view>
|
||||
<text class="key">平台余额</text>
|
||||
</view>
|
||||
<view class="d-f a-i-c">
|
||||
<view class="mr10 dis" v-if="balance > 0">
|
||||
<view class="mr10 dis" v-if="userAccount > 0">
|
||||
<!-- <text class="key">余额支付:(剩余:{{balance}})</text> -->
|
||||
铂金会员卡 <text style="color: #FF5951;">9.3</text>折
|
||||
{{ cardType() }} <text style="color: #FF5951;">{{ userDiscount }}</text>折
|
||||
</view>
|
||||
<view class="icon-box d-c-c"><span class="icon iconfont icon-xuanze"></span></view>
|
||||
</view>
|
||||
@ -280,13 +346,16 @@
|
||||
total: 0 // 总价
|
||||
},
|
||||
payType: 'wxpay', // 支付方式 wxpay\balance
|
||||
balance: 0,
|
||||
order: {},
|
||||
result: '',
|
||||
loadding: true,
|
||||
_submitting: false,
|
||||
balancePopup: false,
|
||||
balance: 0
|
||||
balance: {},
|
||||
userBalance: {},
|
||||
currentType: '', // 选择的会员卡类型
|
||||
userAccount: 0,
|
||||
userDiscount: 0
|
||||
};
|
||||
},
|
||||
|
||||
@ -298,6 +367,7 @@
|
||||
this.basketballDate = args.date || null; // 篮球场预约时间
|
||||
console.log("🚀 ~ this.date:", this.date)
|
||||
this.getData();
|
||||
this.getRecharge()
|
||||
},
|
||||
|
||||
onUnload() {
|
||||
@ -312,6 +382,10 @@
|
||||
|
||||
|
||||
methods: {
|
||||
// 判断 payType 是否为整数
|
||||
isPayTypeInt() {
|
||||
return Number.isInteger(Number(this.payType));
|
||||
},
|
||||
getData() {
|
||||
let self = this;
|
||||
uni.showLoading({
|
||||
@ -394,6 +468,7 @@
|
||||
|
||||
},
|
||||
|
||||
// 计算费用明细
|
||||
countPrice() {
|
||||
let self = this;
|
||||
uni.showLoading({
|
||||
@ -476,7 +551,7 @@
|
||||
};
|
||||
oldWxPay.call(this);
|
||||
setTimeout(finish, 3000); // 兜底3秒自动解锁
|
||||
} else if (this.payType == 'balance') {
|
||||
} else if (this.payType >= 1) {
|
||||
const oldBalancePay = this.balancePay;
|
||||
this.balancePay = (...args) => {
|
||||
oldBalancePay.apply(this, args);
|
||||
@ -571,7 +646,8 @@
|
||||
'ground.ground/yuePay',
|
||||
{
|
||||
app_id: self.getAppId(),
|
||||
order_id: this.orderId
|
||||
order_id: this.orderId,
|
||||
pay_type: this.currentType
|
||||
},
|
||||
function(res) {
|
||||
if (res.code == 1) {
|
||||
@ -613,6 +689,47 @@
|
||||
}
|
||||
},
|
||||
|
||||
getRecharge() {
|
||||
let self = this;
|
||||
uni.showLoading({
|
||||
title: '加载中'
|
||||
});
|
||||
// 获取充值
|
||||
self._post(
|
||||
'ground.ground/groundSetting',
|
||||
{
|
||||
app_id: self.getAppId(),
|
||||
},
|
||||
function(res) {
|
||||
self.balance = res.data.lists.balance;
|
||||
}
|
||||
)
|
||||
|
||||
// 获取充值
|
||||
self._post('user.index/detail', {
|
||||
source: self.getPlatform()
|
||||
}, function(res) {
|
||||
console.log("🚀 ~ res:", res)
|
||||
self.userBalance = res.data.userInfo;
|
||||
self.loadding = false;
|
||||
uni.hideLoading();
|
||||
});
|
||||
},
|
||||
|
||||
cardType() {
|
||||
if (this.currentType == 1) {
|
||||
return '白银会员卡'
|
||||
} else if (this.currentType == 2) {
|
||||
return '黄金会员卡'
|
||||
} else if (this.currentType == 3) {
|
||||
return '铂金会员卡'
|
||||
} else if (this.currentType == 4) {
|
||||
return '钻石会员卡'
|
||||
} else if (this.currentType == 5) {
|
||||
return '至尊会员卡'
|
||||
}
|
||||
},
|
||||
|
||||
// 选择会员卡
|
||||
selectCard() {
|
||||
this.balance = 200; // 模拟选择会员卡后的余额
|
||||
@ -620,6 +737,18 @@
|
||||
|
||||
// 确认选择
|
||||
confirmCard() {
|
||||
if (this.userBalance['balance' + this.currentType] <= 0) {
|
||||
uni.showToast({
|
||||
title: '余额不足,请选择其他会员卡',
|
||||
icon: 'none'
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
this.userAccount = this.userBalance['balance' + this.currentType];
|
||||
this.userDiscount = this.balance['discount' + this.currentType];
|
||||
this.payType = this.currentType;
|
||||
this.countPrice();
|
||||
this.balancePopup = false;
|
||||
}
|
||||
}
|
||||
|
||||
@ -365,8 +365,8 @@ export default {
|
||||
// 处理导航
|
||||
handleLocation() {
|
||||
uni.openLocation({
|
||||
latitude: this.venue.latitude,
|
||||
longitude: this.venue.longitude,
|
||||
latitude: Number(this.venue.latitude),
|
||||
longitude: Number(this.venue.longitude),
|
||||
name: this.venue.name,
|
||||
address: this.venue.address,
|
||||
scale: 18
|
||||
@ -437,7 +437,6 @@ export default {
|
||||
// 篮球场-立即预约
|
||||
toReserve() {
|
||||
let self = this
|
||||
|
||||
// 一进来就锁定,彻底防止高频点击
|
||||
if (self.typeId == 1) {
|
||||
if (self.selectedReserveTime.length === 0) {
|
||||
@ -459,7 +458,8 @@ export default {
|
||||
app_id: self.getAppId(),
|
||||
ground_id: self.id,
|
||||
room_list: JSON.stringify(self.selectedReserveTime),
|
||||
type: this.typeId
|
||||
type: this.typeId,
|
||||
start_end: self.selectedReserveTime[0].start_time + '-' + self.selectedReserveTime[self.selectedReserveTime.length -1].end_time
|
||||
},
|
||||
function(res) {
|
||||
self.loadding = false;
|
||||
@ -515,54 +515,6 @@ export default {
|
||||
},
|
||||
|
||||
handleSelectTime(title, time, status) {
|
||||
// if (status == 1) {
|
||||
// return;
|
||||
// }
|
||||
// // 多选逻辑,selectedTime为对象,按title区分
|
||||
// if (!this.selectedTime[title]) {
|
||||
// this.$set(this.selectedTime, title, []);
|
||||
// }
|
||||
// const idx = this.selectedTime[title].indexOf(time);
|
||||
// if (idx > -1) {
|
||||
// // 已选中则取消
|
||||
// this.selectedTime[title].splice(idx, 1);
|
||||
// } else {
|
||||
// // 未选中则添加
|
||||
// this.selectedTime[title].push(time);
|
||||
// }
|
||||
|
||||
// this.countSelectedTime = Object.values(this.selectedTime).reduce((acc, times) => acc + times.length, 0);
|
||||
// this.totalPrice()
|
||||
|
||||
// // 生成 room_list 数组格式weekList[this.currentWeek]?.value?.join('') || '';
|
||||
// const day_title = this.weekList[this.currentWeek]?.day || '';
|
||||
// // 遍历所有已选时间,生成 room_list
|
||||
// const room_list = [];
|
||||
// Object.keys(this.selectedTime).forEach(roomTitle => {
|
||||
// const rid = this.cdList.find(cd => cd.title === roomTitle)?.id || 1;
|
||||
// this.selectedTime[roomTitle].forEach(t => {
|
||||
// // t 可能是 '09:00-10:00' 或 '09:00', 需拆分
|
||||
// let start_time = t, end_time = '';
|
||||
// if (t.includes('-')) {
|
||||
// [start_time, end_time] = t.split('-');
|
||||
// } else {
|
||||
// start_time = t;
|
||||
// // 假设每个时间段为1小时,自动+1小时
|
||||
// const [h, m] = t.split(':');
|
||||
// const nextH = (parseInt(h, 10) + 1).toString().padStart(2, '0');
|
||||
// end_time = `${nextH}:${m}`;
|
||||
// }
|
||||
// room_list.push({
|
||||
// room_id: rid,
|
||||
// // day_time,
|
||||
// // day_title,
|
||||
// start_time,
|
||||
// end_time,
|
||||
// hours: '1'
|
||||
// });
|
||||
// });
|
||||
// });
|
||||
// this.selectedReserveTime = room_list;
|
||||
if (status == 1) {
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user