kaiguan-zfb/page_components/fuwu/index.vue

387 lines
8.3 KiB
Vue
Raw Normal View History

2024-05-10 17:37:36 +08:00
<template>
<view class="page">
2024-05-24 18:02:56 +08:00
<u-navbar title="充值" :border-bottom="false" :background="bgc" title-color='#fff' back-icon-color="#fff"
2024-06-03 16:47:25 +08:00
title-size='36' height='50'></u-navbar>
2024-05-10 17:37:36 +08:00
<view class="title">
设备名称{{deviceobj.deviceName}}
</view>
<view class="box">
<view class="tit">
选择服务
</view>
<view style="display: flex;justify-content: space-between;flex-wrap: wrap;">
<view :class="indexactive == item.suitId ? 'active':''"
style="width: 304rpx;height: 122rpx;background: #fff;box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42,130,228,0.1);border-radius: 30rpx;display: flex;justify-content: space-between;padding: 20rpx 34rpx;box-sizing: border-box;margin-top: 20rpx;"
v-for="(item,index) in deviceobj.suitList" :key="index" @click="btnactive(item)">
<view class="lt">
<view class="tc">
{{item.name}}
</view>
<view class="date">
{{item.value}}分钟
</view>
</view>
<view class="rt">
{{item.price}}
</view>
</view>
</view>
<view class="shuom" v-for="(item,index) in deviceobj.suitList" :key="index"
v-if="indexactive == item.suitId">
<view class="tits">
套餐说明
</view>
<view class="wz">
该设备还剩余时长{{expireTimeStr}}分钟
</view>
<view class="">
2024-06-04 14:50:30 +08:00
{{item.description == null ? '无' : item.description}}
2024-05-10 17:37:36 +08:00
</view>
<view class="wz">
联系客服2562356565
</view>
</view>
<view class="tongyi">
<u-checkbox-group>
<u-checkbox v-model="checked" @change="checkboxChange" active-color="#8883F0 ">我已同意
2024-06-04 14:50:30 +08:00
</u-checkbox><text></text>
2024-05-10 17:37:36 +08:00
</u-checkbox-group>
<view class="zf" @click="btnzhifu">
立即支付
</view>
</view>
2024-05-24 18:02:56 +08:00
2024-05-10 17:37:36 +08:00
</view>
</view>
</template>
<script>
export default {
data() {
return {
indexactive: 0,
checked: false,
deviceobj: {},
2024-05-24 18:02:56 +08:00
deviceid: '',
2024-05-10 17:37:36 +08:00
timer: null,
expireTimeStr: '',
zfobj: {},
2024-05-21 15:07:11 +08:00
orderno: '',
2024-05-24 18:02:56 +08:00
id: '',
czflag: false,
sytime: 0,
datetime: 0
2024-05-10 17:37:36 +08:00
}
},
2024-05-21 15:07:11 +08:00
onLoad(option) {
2024-05-24 18:02:56 +08:00
if (option.q) {
function getQueryParam(url, paramName) {
let regex = new RegExp(`[?&]${paramName}=([^&]*)`);
let results = regex.exec(url);
return results ? decodeURIComponent(results[1].replace(/\+/g, ' ')) : null;
}
let sceneValue = option.q
let decodedValue = decodeURIComponent(sceneValue);
2024-05-30 17:24:10 +08:00
this.id = getQueryParam(decodedValue, 's')
2024-05-24 18:02:56 +08:00
console.log(this.id)
this.startTimer()
this.gettaoc()
} else {
this.id = option.id
this.startTimer()
this.gettaoc()
}
2024-05-10 17:37:36 +08:00
},
computed: {
2024-05-24 16:48:42 +08:00
},
onShow() {
2024-05-24 18:02:56 +08:00
if (this.orderno) {
this.gethuidaio()
}
2024-05-10 17:37:36 +08:00
},
methods: {
startTimer() {
this.timer = setInterval(() => {
this.gettaoc(); // 每隔30秒请求一次数据
}, 30000); // 30秒
},
gettaoc() {
2024-05-21 15:07:11 +08:00
this.$u.get(`/app/device/${this.id}/withSuitList`).then((res) => {
2024-05-10 17:37:36 +08:00
if (res.code == 200) {
this.deviceobj = res.data;
this.indexactive = res.data.suitList[0].suitId;
this.zfobj = res.data.suitList[0]
let targetDateStr = this.deviceobj.expireTime
let targetParts = targetDateStr.split(/[- :]/);
let targetDate = new Date(targetParts[0], targetParts[1] - 1, targetParts[2], targetParts[
3], targetParts[4], targetParts[5]);
let now = new Date();
let differenceInMs = targetDate - now;
let differenceInMinutes = Math.floor(differenceInMs / (1000 * 60));
this.expireTimeStr = parseInt(differenceInMinutes) <= 0 ? '0' : differenceInMinutes
}
});
},
btnzhifu() {
if (this.checked == false) {
uni.showToast({
title: '请勾选用户服务协议 !',
icon: 'none',
duration: 1000
});
} else {
let data = {
2024-05-21 15:07:11 +08:00
deviceNo: this.id,
2024-05-10 17:37:36 +08:00
suitId: this.zfobj.suitId,
money: this.zfobj.price,
suitTime: this.zfobj.value
}
this.$u.post('/app/bill/recharge', data).then((res) => {
if (res.code == 200) {
this.orderno = res.data
this.$u.get(`/app/pay/wx/${this.orderno}`).then((res) => {
if (res.code == 200) {
uni.requestPayment({
provider: 'wxpay',
timeStamp: res.data.timeStamp,
nonceStr: res.data.nonceStr,
package: res.data.packageVal,
signType: res.data.signType,
paySign: res.data.paySign,
2024-05-24 18:02:56 +08:00
success: (res) => {
console.log(res, '支付成功');
2024-05-24 16:48:42 +08:00
if (this.timer) {
clearInterval(this.timer);
this.timer = null;
}
2024-05-10 17:37:36 +08:00
// 支付成功逻辑
2024-05-24 18:02:56 +08:00
uni.reLaunch({
url: '/pages/shouye/index'
})
2024-05-24 16:48:42 +08:00
uni.setStorageSync('time', this.expireTimeStr)
2024-05-10 17:37:36 +08:00
},
fail(err) {
// 支付失败逻辑
uni.showToast({
title: '支付失败',
icon: 'none',
duration: 2000
});
}
});
}
})
2024-05-24 18:02:56 +08:00
} else if (res.code == 401) {
2024-05-13 15:32:48 +08:00
uni.reLaunch({
2024-05-24 18:02:56 +08:00
url: '/pages/login/login'
2024-05-10 17:37:36 +08:00
})
}
})
}
},
2024-05-24 18:02:56 +08:00
2024-05-10 17:37:36 +08:00
btnactive(item) {
2024-05-24 16:48:42 +08:00
this.sytime = item.value
2024-05-10 17:37:36 +08:00
this.zfobj = item
this.indexactive = item.suitId;
},
checkboxChange(e) {
this.checked = e.value
},
onUnload() {
// 页面卸载时
if (this.timer) {
clearInterval(this.timer);
this.timer = null;
}
},
}
}
</script>
<style lang="scss">
2024-05-24 18:02:56 +08:00
/deep/ .u-title {
2024-06-03 16:47:25 +08:00
padding-bottom: 22rpx;
2024-05-24 16:48:42 +08:00
}
2024-06-04 14:50:30 +08:00
/deep/ .u-checkbox__label{
margin-right: 0 !important;
}
2024-05-24 16:48:42 +08:00
// /deep/ .u-icon__icon{
// padding-bottom: 41rpx;
// }
2024-05-10 17:37:36 +08:00
page {
background: linear-gradient(180deg, #8883F0 0%, rgba(255, 255, 255, 0) 100%);
}
.active {
background-color: #8883F0 !important;
color: #fff !important;
}
.page {
width: 750rpx;
position: fixed;
top: 0;
left: 0;
2024-05-24 18:02:56 +08:00
.tip_box {
2024-05-24 16:48:42 +08:00
position: fixed;
left: 72rpx;
top: 700rpx;
width: 610rpx;
// height: 282rpx;
background: #F7FAFE;
border-radius: 30rpx 30rpx 30rpx 30rpx;
z-index: 10000000;
2024-05-24 18:02:56 +08:00
.top {
2024-05-24 16:48:42 +08:00
padding: 52rpx 38rpx 42rpx 36rpx;
2024-05-24 18:02:56 +08:00
.txt {
2024-05-24 16:48:42 +08:00
width: 100%;
text-align: center;
font-weight: 500;
font-size: 32rpx;
color: #3D3D3D;
}
}
2024-05-24 18:02:56 +08:00
.bot {
border-top: 2rpx solid #D8D8D8;
2024-05-24 16:48:42 +08:00
display: flex;
flex-wrap: nowrap;
height: 100%;
2024-05-24 18:02:56 +08:00
.bot_left {
2024-05-24 16:48:42 +08:00
width: 50%;
height: 98rpx;
display: flex;
align-items: center;
justify-content: center;
font-weight: 500;
font-size: 36rpx;
color: #3D3D3D;
}
2024-05-24 18:02:56 +08:00
.bot_right {
2024-05-24 16:48:42 +08:00
width: 50%;
height: 98rpx;
display: flex;
align-items: center;
justify-content: center;
2024-05-24 18:02:56 +08:00
border-left: 2rpx solid #D8D8D8;
2024-05-24 16:48:42 +08:00
font-weight: 500;
font-size: 36rpx;
color: #8883F0;
2024-05-24 18:02:56 +08:00
2024-05-24 16:48:42 +08:00
}
2024-05-24 18:02:56 +08:00
2024-05-24 16:48:42 +08:00
}
}
2024-05-10 17:37:36 +08:00
.title {
margin-top: 40rpx;
padding-left: 32rpx;
2024-06-04 14:50:30 +08:00
font-weight: 600;
2024-05-10 17:37:36 +08:00
font-size: 40rpx;
color: #383838;
margin-bottom: 30rpx;
}
.box {
width: 750rpx;
height: 1440rpx;
background: #F4F5F7;
border-radius: 0rpx 0rpx 0rpx 0rpx;
padding: 36rpx 54rpx;
box-sizing: border-box;
.tongyi {
width: 590rpx;
position: fixed;
bottom: 50rpx;
left: 50%;
transform: translateX(-50%);
text {
color: #638DFF;
2024-06-04 14:50:30 +08:00
height: 50rpx;
line-height: 50rpx;
2024-05-10 17:37:36 +08:00
}
.zf {
width: 590rpx;
height: 84rpx;
background: #8883F0;
filter: blur(0px);
border-radius: 50rpx;
text-align: center;
line-height: 84rpx;
font-size: 36rpx;
color: #FFFFFF;
margin-top: 10rpx;
}
}
.shuom {
width: 648rpx;
height: 286rpx;
background: #FFFFFF;
box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42, 130, 228, 0.1);
filter: blur(0px);
border-radius: 30rpx;
margin: auto;
margin-top: 36rpx;
padding: 20rpx 36rpx;
box-sizing: border-box;
.tits {
font-size: 32rpx;
font-weight: 600;
margin-top: 30rpx;
}
.wz {
font-size: 28rpx;
color: #383838;
margin-top: 30rpx;
}
}
.list_val {
.tc {
font-weight: 500;
font-size: 34rpx;
color: #525252;
}
.date {
font-size: 24rpx;
color: #525252;
margin-top: 10rpx;
}
.rt {
font-size: 40rpx;
color: #525252;
padding-top: 20rpx;
}
}
.tit {
font-size: 40rpx;
color: #383838;
font-weight: 600;
margin-bottom: 32rpx;
}
}
}
</style>