This commit is contained in:
3321822538@qq.com 2025-01-19 21:19:51 +08:00
parent 98883d3017
commit 393acf49a2
9 changed files with 1942 additions and 2 deletions

View File

@ -695,8 +695,8 @@
console.log(e, '蓝牙信息')
const deviceId = e.deviceId
this.deviceId = e.deviceId
this.Bluetoothmac = e.localName.slice(-12) // mac
console.log(this.Bluetoothmac, '11111');
// this.Bluetoothmac = e.localName.slice(-12) // mac
// console.log(this.Bluetoothmac, '11111');
let name = e.name;
console.log('点击了蓝牙准备连接的deviceId:' + e.deviceId);
xBlufi.notifyConnectBle({

145
page_geren/addhuiyuan.vue Normal file
View File

@ -0,0 +1,145 @@
<template>
<view>
<u-navbar title="新增会员卡" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
height='45'></u-navbar>
<view class="box">
<view class="ul">
<view class="name">
会员卡名称
</view>
<input type="text" placeholder="请输入会员卡名称"/>
</view>
<view class="ul">
<view class="name">
会员卡原价/
</view>
<input type="text" placeholder="请输入会员卡原价"/>
</view>
<view class="ul">
<view class="name">
会员卡现价/
</view>
<input type="text" placeholder="请输入会员卡现价"/>
</view>
<view class="ul">
<view class="name">
会员卡期限/
</view>
<input type="text" placeholder="请输入会员卡期限"/>
</view>
<view class="ul">
<view class="name">
会员卡折扣/
</view>
<input type="text" placeholder="请输入会员卡折扣"/>
</view>
<view class="ul">
<view class="name">
会员卡使用次数/
</view>
<input type="text" placeholder="请输入会员卡使用次数"/>
</view>
<view class="ul">
<view class="name">
上限次数/
</view>
<view class="sx">
<input type="text"/>/ 上限<input type="text"/>/
</view>
</view>
</view>
<view class="anniu">
<view class="qx">
取消
</view>
<view class="qd">
新增
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: '#fff'
},
}
},
onLoad() {
},
methods: {
getQiniuToken() {
this.$u.get("/common/qiniu/uploadInfo").then((res) => {
if (res.code == 200) {
this.token = res.token
}
})
},
}
}
</script>
<style lang="less">
.anniu{
width: 100%;
display: flex;
justify-content: space-between;
padding: 0 60rpx;
box-sizing: border-box;
.qx{
width: 300rpx;
height: 80rpx;
border-radius: 50rpx;
text-align: center;
line-height: 80rpx;
background-color: #ccc;
}
}
.box{
width: 680rpx;
margin: auto;
margin-top: 40rpx;
border-radius: 30rpx;
box-sizing: border-box;
background-color: #fff;
.ul{
display: flex;
justify-content: space-between;
width: 100%;
height: 120rpx;
line-height: 120rpx;
padding: 0 20rpx;
box-sizing: border-box;
border-bottom: 1px solid #efefef;
.sx{
max-width: 460rpx;
display: flex;
align-items: center;
input{
width: 60rpx;
height: 30rpx;
border-bottom: 1px solid #efefef;
text-align: right;
margin-left: 20rpx;
margin-right: 20rpx;
}
}
.name{
font-size: 28rpx;
}
input{
height: 120rpx;
line-height: 120rpx;
text-align: right;
}
}
}
</style>

350
page_geren/buyCard.vue Normal file
View File

@ -0,0 +1,350 @@
<template>
<view class="page">
<u-navbar title="会员卡列表" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
height='45'></u-navbar>
<view class="cont">
<view class="card2" v-for="(item,index) in 3" :key="index">
<view class="card3" style="margin-top: 20rpx;" >
<view class="top">
<view class="tit1">
一月30次
</view>
<view class="tit2">
30<span style="font-size: 28rpx;"></span>
</view>
</view>
<view class="middle">
<view class="tit3" >
每周最多用7次
</view>
<view class="tit4">
原价40
</view>
</view>
<view class="bot">
<view class="bot_left">
<view class="txt3">
每次享折扣7折
</view>
</view>
</view>
</view>
</view>
</view>
<view class="anniu" @click="btnadd">
新增会员卡
</view>
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: '#fff'
},
}
},
onShow() {
},
methods: {
//
btnadd(){
uni.navigateTo({
url:'/page_geren/addhuiyuan'
})
}
}
}
</script>
<style lang="scss">
page {
background-color: #fff;
}
.anniu{
width: 680rpx;
height: 120rpx;
border-radius: 50rpx;
background-color: #8883F0;
font-size: 38rpx;
font-weight: 600;
text-align: center;
line-height: 120rpx;
position: fixed;
left: 50%;
transform: translateX(-50%);
bottom: 50rpx;
color: #fff;
}
.page {
width: 750rpx;
.buy_box {
padding: 0 46rpx;
position: fixed;
bottom: 0rpx;
left: 0rpx;
width: 750rpx;
height: 780rpx !important;
background: #FDFDFD;
border-radius: 0rpx 0rpx 0rpx 0rpx;
z-index: 101;
// position: relative;
.tit_txt {
padding-top: 114rpx; /* 使用 padding-top 或者增加 overflow: hidden 来防止 margin 合并 */
font-weight: 600;
font-size: 28rpx;
color: #3D3D3D;
overflow: hidden; /* 防止 margin 合并 */
span {
color: #64B6A7;
}
}
.text {
margin-top: 16rpx;
font-weight: 400;
font-size: 28rpx;
color: #3D3D3D;
}
.taocan {
padding: 46rpx 40rpx;
position: absolute;
top: -140rpx;
left: 36rpx;
width: 680rpx;
height: 204rpx;
background: #fff;
border-radius: 20rpx;
z-index: 102;
box-shadow: 0rpx 10rpx 64rpx 0rpx rgba(0, 0, 0, 0.08), 0rpx 10rpx 64rpx 0rpx rgba(0, 0, 0, 0.08);
.top {
display: flex;
align-items: center;
justify-content: space-between;
.tit1 {
font-weight: 500;
font-size: 32rpx;
color: #2F3240;
}
.tit2 {
font-weight: 500;
font-size: 40rpx;
color: #E46666;
}
}
.bot_left {
margin-top: 20rpx;
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
.txt3 {
padding: 4rpx 12rpx;
background: linear-gradient(90deg, rgba(228, 102, 102, 0.42) 0%, rgba(228, 102, 102, 0) 100%);
border-radius: 6rpx;
font-weight: 400;
font-size: 24rpx;
color: #E46666;
width: 100%;
}
.txt4 {
font-weight: 500;
font-size: 24rpx;
color: #808080;
}
}
}
.btns_box {
display: flex;
flex-wrap: nowrap;
padding-top: 30rpx;
// align-items: center;
justify-content: space-around;
position: absolute;
bottom: 0;
left: 0;
width: 750rpx;
height: 184rpx;
background: #FFFFFF;
box-shadow: 0rpx 10rpx 64rpx 0rpx rgba(0, 0, 0, 0.08), 0rpx 10rpx 64rpx 0rpx rgba(0, 0, 0, 0.08);
z-index: 200;
.btn1{
display: flex;
align-items: center;
justify-content: center;
width: 338rpx;
height: 90rpx;
border-radius: 45rpx 45rpx 45rpx 45rpx;
border: 2rpx solid #808080;
font-weight: 500;
font-size: 36rpx;
color: #808080;
}
.btn2{
display: flex;
align-items: center;
justify-content: center;
width: 338rpx;
height: 90rpx;
background: #64B6A7;
border-radius: 45rpx 45rpx 45rpx 45rpx;
font-weight: 500;
font-size: 36rpx;
color: #FFFFFF;
}
}
}
.cont {
flex-wrap: wrap;
height: 80vh;
width: 100%;
margin: auto;
overflow: scroll;
padding-bottom: 240rpx;
box-sizing: border-box;
.card1{
display: flex;
flex-wrap: nowrap;
justify-content: space-between;
align-items: center;
padding: 28rpx;
width: 680rpx;
margin: auto;
height: 106rpx;
background: rgba(100,182,167,0.25);
box-shadow: 0rpx 10rpx 64rpx 0rpx rgba(0,0,0,0.08);
border-radius: 20rpx 20rpx 20rpx 20rpx;
.txt1{
font-weight: 600;
font-size: 32rpx;
color: #3D3D3D;
span{
color: #E46666;
}
}
.txt2{
font-weight: 400;
font-size: 24rpx;
color: #2F3240;
image{
margin-left: 16rpx;
width: 8rpx;
height: 16rpx;
}
}
}
.card3{
margin-top: 16rpx;
padding: 20rpx 40rpx;
width: 680rpx;
margin: auto;
height: 200rpx;
background: #FFFFFF;
box-shadow: 0rpx 10rpx 64rpx 0rpx rgba(0,0,0,0.08);
border-radius: 20rpx 20rpx 20rpx 20rpx;
.top{
display: flex;
flex-wrap: nowrap;
align-items: center;
justify-content: space-between;
.tit1{
font-weight: 500;
font-size: 32rpx;
color: #2F3240;
}
.tit2{
font-weight: 500;
font-size: 40rpx;
color: #E46666;
}
}
.middle{
margin-top: 10rpx;
display: flex;
flex-wrap: nowrap;
align-items: center;
justify-content: space-between;
.tit3{
font-weight: 500;
font-size: 24rpx;
color: #808080;
}
.tit4{
font-weight: 400;
font-size: 24rpx;
color: #808080;
text-decoration: line-through;
}
}
.bot{
margin-top: 10rpx;
display: flex;
flex-wrap: nowrap;
align-items: center;
justify-content: space-between;
.bot_left{
display: flex;
flex-wrap: nowrap;
align-items: center;
width: 100%;
.txt3{
padding: 4rpx 12rpx;
background: linear-gradient( 90deg, rgba(228,102,102,0.42) 0%, rgba(228,102,102,0) 100%);
border-radius: 6rpx 6rpx 6rpx 6rpx;
font-weight: 400;
font-size: 24rpx;
color: #E46666;
width: 100%;
}
.txt4{
margin-left: 16rpx;
padding: 4rpx 8rpx;
border-radius: 6rpx 6rpx 6rpx 6rpx;
border: 1rpx solid #808080;
font-weight: 400;
font-size: 24rpx;
color: #808080;
}
}
.btn{
display: flex;
flex-wrap: nowrap;
align-items: center;
justify-content: center;
width: 144rpx;
height: 52rpx;
background: #E46666;
border-radius: 26rpx 26rpx 26rpx 26rpx;
font-weight: 500;
font-size: 28rpx;
color: #FFFFFF;
}
}
}
.card2{
margin-top: 16rpx;
width: 680rpx;
height: 210rpx;
margin: auto;
}
}
}
</style>

860
page_geren/index.vue Normal file
View File

@ -0,0 +1,860 @@
<template>
<view class="page">
<view class="">
<u-navbar title="会员中心" :border-bottom="false" :background="background" title-color='#000' title-size='36'
back-icon-color='#000' height='45'></u-navbar>
</view>
<!-- <view class="vip_box" @click="btnkt(1)">
<view class="txt1">会员卡</view>
<view class="txt2" > 仅需10可享30天折扣权益
</view>
</view> -->
<view class="vip_box1">
<view class="txt1">会员卡</view>
<view class="txt2"> 会员卡25天后到期</view>
<view class="btn">
已开通
</view>
<view class="btn" v-if="false">
未开通
</view>
</view>
<view class="vipcard">
<view class="card_top">
<view class="name">
17795402553
</view>
</view>
<view class="card_bot">
<view class="txts">
开通立享超值会员特权
</view>
<view class="txts" v-if="flase">
会员卡23天后到期
</view>
<view class="topage" @click="topage">
购买记录 >
</view>
</view>
</view>
<image class="mc" src="https://lxnapi.ccttiot.com/bike/img/static/uCIpavkHbM18al7gpxH8" mode=""></image>
<view class="" style="background-color: #fff;">
<view class="cont_box">
<view class="cont_li" v-for="(item,index) in 3" :key="index" @click="choose(item,index)" :class="chooseidx==index?'act1':''">
<view class="tit">
会员卡
</view>
<view class="tips">
40天享7折
</view>
<view class="money">
36.66
</view>
<view class="tips" style="text-decoration: line-through; ">
30.66
</view>
<view class="tips">
立省6.00
</view>
</view>
</view>
<view class="txt">
该卡只能用于付费享折扣
</view>
</view>
<view class="pay_btn" @click="buy()">
38.88立即开通
</view>
</view>
</template>
<script>
export default {
data() {
return {
background: {
backgroundColor: '#fff'
},
userinfo:{},
chooseInfo:{},
chooseidx:0,
}
},
onLoad() {
},
onShow() {
},
methods: {
//
btnkt(num){
if(num == 1){ //
uni.navigateTo({
url:'/page_geren/kaitonghuiyuan'
})
}else{ //
uni.navigateTo({
url:'/page_geren/kaitonghuiyuan'
})
}
},
topage(){
uni.navigateTo({
url:'/page_geren/vip_his'
})
},
tobuy(){
uni.navigateTo({
url:'/page_geren/buyCard'
})
},
choose(itm,idx){
this.chooseInfo=itm
this.chooseidx=idx
},
buy(){
let data={
userId:this.userinfo.userId,
couponId:this.chooseInfo.couponId
}
let that=this
that.$u.get("/appVerify/coupon/buy?",data ).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,
success(res) {
//
setTimeout(()=>{
},500)
},
fail(err) {
//
uni.showToast({
title: '支付失败',
icon: 'none',
duration: 2000
});
}
});
}
});
},
}
}
</script>
<style lang="scss">
/deep/ .uni-navbar {
background: transparent !important; // 使 !important
}
page {
background-color: #F4F4F4;
}
.custom-select {
.mask {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
z-index: 999;
}
.select-content {
position: fixed;
left: 0;
right: 0;
bottom: 0;
background: #fff;
border-radius: 20rpx 20rpx 0 0;
z-index: 1000;
height: 50vh; //
// min-height: 400rpx; //
display: flex;
flex-direction: column;
padding-bottom: 20rpx;
.select-header {
padding: 20rpx 30rpx;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid #eee;
.close {
font-size: 40rpx;
color: #999;
}
}
.search-box {
padding: 15rpx 20rpx;
border-bottom: 1px solid #eee;
input {
width: 100%;
height: 60rpx;
background: #f5f5f5;
border-radius: 30rpx;
padding: 0 30rpx;
font-size: 28rpx;
}
}
.select-list {
flex: 1;
max-height: calc(50vh - 140rpx);
min-height: 260rpx; //
.select-item {
display: flex;
// flex-direction: column;
justify-content: space-between;
align-items: center;
padding: 20rpx 30rpx;
border-bottom: 1px solid #eee;
font-size: 28rpx;
&.highlight {
background-color: #f0f9ff;
color: #2d8cf0;
}
&:active {
background: #f5f5f5;
}
}
}
}
}
.page {
.fee_box {
margin-top: 18rpx;
position: relative;
margin-left: 38rpx;
width: 680rpx;
height: 288rpx;
background-image: url('https://lxnapi.ccttiot.com/bike/img/static/ugciMYClSGgJxP8HYoRU');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
.auto_box::-webkit-scrollbar {
display: none;
}
.auto_box {
padding-left: 24rpx;
display: flex;
overflow-x: auto; /* 允许横向滚动 */
flex-wrap: nowrap; /* 禁止换行,保持所有元素在一行 */
position: absolute;
top: 90rpx;
width: 100%; /* 根据需要调整宽度 */
height: auto; /* 根据内容自动调整高度 */
.auto_li {
position: relative;
padding: 24rpx 28rpx;
margin-right: 22rpx;
width: 408rpx;
height: 176rpx;
flex-shrink: 0; /* 防止子元素被压缩 */
background-image: url('https://lxnapi.ccttiot.com/bike/img/static/ui88NWy9R1j2zFGojdHU');
background-size: cover;
background-position: center;
.txt1{
width: 100%;
font-weight: 600;
font-size: 32rpx;
color: #495E74;
}
.txt2{
font-weight: 400;
font-size: 24rpx;
color: #495E74;
}
.buy_btn{
position: absolute;
right: 26rpx;
bottom: 38rpx;
display: flex;
align-items: center;
justify-content: center;
width: 132rpx;
height: 50rpx;
background: #495E74;
border-radius: 25rpx 25rpx 25rpx 25rpx;
font-weight: 500;
font-size: 28rpx;
color: #FFF3DB;
}
}
}
}
.fixed {
z-index: 999;
position: fixed;
top: 0;
}
.tipss{
margin-left: 40rpx;
font-weight: 500;
font-size: 36rpx;
color: #3D3D3D;
}
.vipcard {
padding: 36rpx ;
position: fixed;
top: 428rpx;
left: 38rpx;
width: 680rpx;
height: 244rpx;
z-index: 1;
background-image: url('https://lxnapi.ccttiot.com/bike/img/static/u78FEc5oHRKzdvopQpZE');
background-size: cover;
/* 背景图片等比缩放以覆盖整个容器 */
background-position: center;
/* 背景图片居中显示 */
background-repeat: no-repeat;
.card_top{
display: flex;
flex-wrap: nowrap;
align-items: center;
.name{
font-weight: 500;
font-size: 44rpx;
color: #B07C1E;
}
.type{
margin-left: 30rpx;
padding: 4rpx 18rpx;
font-weight: 400;
font-size: 24rpx;
color: #B07C1E;
border-radius: 35rpx 35rpx 35rpx 35rpx;
border: 1rpx solid #B07C1E;
}
}
.card_bot{
margin-top: 20rpx;
display: flex;
flex-wrap: nowrap;
align-items: center;
.txts{
font-weight: 400;
font-size: 28rpx;
color: #B07C1E;
}
.topage{
margin-left: auto;
font-weight: 400;
font-size: 28rpx;
color: #B07C1E;
}
}
}
.pay_btn{
display: flex;
align-items: center;
justify-content: center;
margin: 20rpx auto ;
width: 680rpx;
height: 104rpx;
background: linear-gradient( 90deg, rgba(255,201,87,0.84) 0%, rgba(255,224,158,0.58) 100%);
border-radius: 58rpx 58rpx 58rpx 58rpx;
font-weight: 500;
font-size: 44rpx;
color: #B07C1E;
position: fixed;
left: 50%;
transform: translateX(-50%);
bottom: 100rpx;
}
.backimg {
position: fixed;
width: 750rpx;
height: 670rpx;
top: 0;
left: 0;
z-index: -1; //
}
.txt{
margin: 56rpx 48rpx;
font-weight: 400;
font-size: 24rpx;
color: #64B6A7;
padding-bottom: 50rpx;
box-sizing: border-box;
}
.cont_box {
display: flex;
flex-wrap: nowrap;
padding: 0 38rpx;
margin-top: 280rpx;
padding-top: 50rpx;
box-sizing: border-box;
z-index: 10;
overflow-x: auto; //
white-space: nowrap; //
-webkit-overflow-scrolling: touch; // 使
//
::-webkit-scrollbar {
display: none; // WebKit ( Safari Chrome)
height: 0; // 0
}
scrollbar-width: none; // Firefox
-ms-overflow-style: none; // Internet Explorer Edge
.act1{
background: #FFFBF1;
}
.cont_li {
width: 218rpx;
height: 256rpx;
background: rgba(255, 224, 158, 0.15) #FFFFFF;
border-radius: 20rpx;
border: 1rpx solid rgba(176, 124, 30, 0.56);
z-index: 10;
flex-shrink: 0; //
margin-right: 20rpx; //
.tit{
width: 100%;
text-align: center;
font-weight: 500;
font-size: 32rpx;
color: #B07C1E;
}
.money{
width: 100%;
text-align: center;
margin-top: 10rpx;
font-weight: 600;
font-size: 32rpx;
color: #E46666;
}
.tips{
margin-top: 10rpx;
width: 100%;
text-align: center;
font-weight: 400;
font-size: 24rpx;
color: #979797;
}
}
}
.cont_box::-webkit-scrollbar {
display: none;
}
.mc {
position: fixed;
top: 611rpx;
left: 0rpx;
width: 750rpx;
height: 107.29rpx;
z-index: 2;
}
}
.page {
width: 750rpx;
.fee_box {
margin-top: 40rpx;
position: relative;
margin-left: 38rpx;
width: 680rpx;
height: 288rpx;
background-image: url('https://lxnapi.ccttiot.com/bike/img/static/ugciMYClSGgJxP8HYoRU');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
.auto_box::-webkit-scrollbar {
display: none;
}
.auto_box {
padding-left: 24rpx;
display: flex;
overflow-x: auto;
/* 允许横向滚动 */
flex-wrap: nowrap;
/* 禁止换行,保持所有元素在一行 */
position: absolute;
top: 90rpx;
width: 100%;
/* 根据需要调整宽度 */
height: auto;
/* 根据内容自动调整高度 */
.auto_li {
position: relative;
padding: 24rpx 28rpx;
margin-right: 22rpx;
width: 408rpx;
height: 176rpx;
flex-shrink: 0;
/* 防止子元素被压缩 */
background-image: url('https://lxnapi.ccttiot.com/bike/img/static/ui88NWy9R1j2zFGojdHU');
background-size: cover;
background-position: center;
.txt1 {
width: 100%;
font-weight: 600;
font-size: 32rpx;
color: #495E74;
}
.txt2 {
font-weight: 400;
font-size: 24rpx;
color: #495E74;
}
.buy_btn {
position: absolute;
right: 26rpx;
bottom: 38rpx;
display: flex;
align-items: center;
justify-content: center;
width: 132rpx;
height: 50rpx;
background: #495E74;
border-radius: 25rpx 25rpx 25rpx 25rpx;
font-weight: 500;
font-size: 28rpx;
color: #FFF3DB;
}
}
}
}
.vip_box1 {
position: relative;
margin-left: 38rpx;
width: 680rpx;
height: 158rpx;
background-image: url('https://lxnapi.ccttiot.com/bike/img/static/uiaiNkMy7221n3bk2ta0');
background-size: cover;
/* 背景图片等比缩放以覆盖整个容器 */
background-position: center;
/* 背景图片居中显示 */
background-repeat: no-repeat;
margin-top: 40rpx;
.txt1 {
top: 20rpx;
left: 171rpx;
position: absolute;
font-weight: 500;
font-size: 39rpx;
color: #B07C1E;
}
.txt2 {
position: absolute;
left: 171rpx;
bottom: 20rpx;
font-weight: 400;
font-size: 25rpx;
color: #B07C1E;
}
.btn {
display: flex;
align-items: center;
justify-content: center;
position: absolute;
top: 18rpx;
right: 23rpx;
width: 150rpx;
height: 43rpx;
border-radius: 31rpx 31rpx 31rpx 31rpx;
border: 1rpx solid #B07C1E;
font-weight: 400;
font-size: 25rpx;
color: #B07C1E;
}
}
.vip_box {
position: relative;
margin-left: 38rpx;
width: 680rpx;
height: 158rpx;
background-image: url('https://lxnapi.ccttiot.com/bike/img/static/uw6bYgjn1bS1ayNm6VI9');
background-size: cover;
/* 背景图片等比缩放以覆盖整个容器 */
background-position: center;
/* 背景图片居中显示 */
background-repeat: no-repeat;
margin-top: 40rpx;
.txt1 {
top: 20rpx;
left: 100rpx;
position: absolute;
font-weight: 500;
font-size: 44rpx;
color: #FFE09E;
}
.txt2 {
position: absolute;
right: 74rpx;
bottom: 10rpx;
font-weight: 400;
font-size: 24rpx;
color: #FFE09E;
}
}
.btns {
display: flex;
align-items: center;
justify-content: center;
width: 680rpx;
height: 90rpx;
background: #64B6A7;
color: #fff;
font-size: 36rpx;
border-radius: 20rpx;
margin: 40rpx auto;
}
.fixed {
z-index: 999;
position: fixed;
top: 0;
}
.backimg-container {
position: fixed;
top: -7px;
left: 0;
width: 100%;
height: 564rpx;
z-index: 0;
.backimg {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}
}
.topbg {
width: 750rpx;
// background: #fff;
height: 184rpx;
.topbox {
width: 750rpx;
// background: #fff;
height: 184rpx;
border-radius: 0 0 100rpx 0;
.info {
padding-top: 40rpx;
margin-left: 100rpx;
display: flex;
flex-wrap: nowrap;
align-items: center;
image {
width: 90rpx;
height: 90rpx;
border-radius: 50%;
}
.cont {
margin-left: 40rpx;
width: 70%;
.name {
font-weight: 400;
font-size: 32rpx;
color: #FFFFFF;
width: 100%;
text-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}
.phone {
margin-top: 4rpx;
width: 100%;
font-weight: 400;
font-size: 20rpx;
color: #FFFFFF;
text-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}
}
}
}
}
.type_cont {
width: 680rpx;
padding: 58rpx 54rpx;
// height: 608rpx;
background: #FFFFFF;
border-radius: 20rpx 20rpx 20rpx 20rpx;
margin: 0 auto;
margin-top: 30rpx;
.type_li {
width: 100%;
display: flex;
align-items: center;
flex-wrap: nowrap;
font-weight: 400;
font-size: 32rpx;
color: #2F3240;
image {
width: 44rpx;
height: 44rpx;
margin-right: 20rpx;
}
.icon-xiangyou1 {
margin-left: auto;
color: #2F3240;
font-size: 36rpx;
}
}
}
.tocont {
display: flex;
flex-wrap: nowrap;
align-items: center;
justify-content: space-around;
margin: 0 auto;
margin-top: 100rpx;
width: 680rpx;
height: 176rpx;
background: #fff;
border-radius: 20rpx 20rpx 20rpx 20rpx;
z-index: 10;
position: relative;
.cont_li {
width: 112rpx;
display: flex;
flex-wrap: wrap;
justify-content: center;
image {
margin-top: 10rpx;
width: 44rpx;
height: 44rpx;
}
.txt {
width: 112rpx;
text-align: center;
font-weight: 400;
font-size: 28rpx;
color: #2F3240;
}
}
}
.btnbg {
width: 750rpx;
// background: #4C97E7;
.btnbox {
padding-top: 36rpx;
width: 750rpx;
background: #fff;
border-radius: 100rpx 0 0 0;
.btncard {
padding: 0 54rpx;
margin: 0 auto;
width: 680rpx;
// height: 438rpx;
padding: 0 56rpx;
background: #FFFFFF;
box-shadow: 0rpx 10rpx 64rpx 0rpx rgba(0, 0, 0, 0.08);
border-radius: 34rpx 34rpx 34rpx 34rpx;
.card_li {
padding-top: 18rpx;
width: 100%;
display: flex;
flex-wrap: nowrap;
align-items: center;
justify-content: space-between;
border-bottom: 2rpx solid #D8D8D8;
padding-bottom: 26rpx;
.card_left {
// width: 100%;
display: flex;
flex-wrap: nowrap;
// align-items: center;
image {
margin-right: 28rpx;
width: 40rpx;
height: 40rpx;
}
.text {
margin-right: 24rpx;
font-weight: 400;
font-size: 28rpx;
color: #3D3D3D;
}
.tip {
display: flex;
align-items: center;
justify-content: center;
width: 80rpx;
height: 28rpx;
background: #FFEFEF;
border-radius: 17rpx 17rpx 17rpx 17rpx;
font-weight: 400;
font-size: 16rpx;
color: #FA5F5F;
}
}
.icon-xiangyou1 {
font-size: 42rpx;
color: #3D3D3D;
}
}
}
}
}
}
</style>

View File

@ -0,0 +1,366 @@
<template>
<view class="page">
<view class="fixed">
<u-navbar title="开通会员" :border-bottom="false" :background="background" title-color='#fff' title-size='36'
back-icon-color='#fff' height='45'></u-navbar>
</view>
<image class="backimg" src="https://lxnapi.ccttiot.com/bike/img/static/u3NgziRzuV79XdIE8cCn" mode=""></image>
<view class="vipcard">
<view class="card_top">
<view class="name">
17795402553
</view>
<view class="type">
未开通
</view>
<view class="type" v-if="false">
已开通
</view>
</view>
<view class="card_bot">
<view class="txts">
开通立享超值会员特权
</view>
<view class="txts" v-if="flase">
会员卡23天后到期
</view>
<view class="topage" @click="topage">
购买记录 >
</view>
</view>
</view>
<image class="mc" src="https://lxnapi.ccttiot.com/bike/img/static/uCIpavkHbM18al7gpxH8" mode=""></image>
<view class="cont_box">
<view class="cont_li" v-for="(item,index) in 3" :key="index" @click="choose(item,index)" :class="chooseidx==index?'act1':''">
<view class="tit">
会员卡
</view>
<view class="tips">
40天享7折
</view>
<view class="money">
36.66
</view>
<view class="tips" style="text-decoration: line-through; ">
30.66
</view>
<view class="tips">
立省6.00
</view>
</view>
</view>
<view class="txt">
该卡只能用于付费享折扣
</view>
<view class="pay_btn" @click="buy()">
38.88立即开通
</view>
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: '#fff'
},
userinfo:{},
chooseInfo:{},
chooseidx:0,
}
},
onShow() {
},
methods: {
topage(){
uni.navigateTo({
url:'/page_geren/vip_his'
})
},
tobuy(){
uni.navigateTo({
url:'/page_geren/buyCard'
})
},
choose(itm,idx){
this.chooseInfo=itm
this.chooseidx=idx
},
buy(){
let data={
userId:this.userinfo.userId,
couponId:this.chooseInfo.couponId
}
let that=this
that.$u.get("/appVerify/coupon/buy?",data ).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,
success(res) {
//
setTimeout(()=>{
},500)
},
fail(err) {
//
uni.showToast({
title: '支付失败',
icon: 'none',
duration: 2000
});
}
});
}
});
},
}
}
</script>
<style lang="scss">
page {
background-color: #fff;
}
.page {
width: 750rpx;
.fee_box {
margin-top: 18rpx;
position: relative;
margin-left: 38rpx;
width: 680rpx;
height: 288rpx;
background-image: url('https://lxnapi.ccttiot.com/bike/img/static/ugciMYClSGgJxP8HYoRU');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
.auto_box::-webkit-scrollbar {
display: none;
}
.auto_box {
padding-left: 24rpx;
display: flex;
overflow-x: auto; /* 允许横向滚动 */
flex-wrap: nowrap; /* 禁止换行,保持所有元素在一行 */
position: absolute;
top: 90rpx;
width: 100%; /* 根据需要调整宽度 */
height: auto; /* 根据内容自动调整高度 */
.auto_li {
position: relative;
padding: 24rpx 28rpx;
margin-right: 22rpx;
width: 408rpx;
height: 176rpx;
flex-shrink: 0; /* 防止子元素被压缩 */
background-image: url('https://lxnapi.ccttiot.com/bike/img/static/ui88NWy9R1j2zFGojdHU');
background-size: cover;
background-position: center;
.txt1{
width: 100%;
font-weight: 600;
font-size: 32rpx;
color: #495E74;
}
.txt2{
font-weight: 400;
font-size: 24rpx;
color: #495E74;
}
.buy_btn{
position: absolute;
right: 26rpx;
bottom: 38rpx;
display: flex;
align-items: center;
justify-content: center;
width: 132rpx;
height: 50rpx;
background: #495E74;
border-radius: 25rpx 25rpx 25rpx 25rpx;
font-weight: 500;
font-size: 28rpx;
color: #FFF3DB;
}
}
}
}
.fixed {
z-index: 999;
position: fixed;
top: 0;
}
.tipss{
margin-left: 40rpx;
font-weight: 500;
font-size: 36rpx;
color: #3D3D3D;
}
.vipcard {
padding: 36rpx ;
position: fixed;
top: 428rpx;
left: 38rpx;
width: 680rpx;
height: 244rpx;
z-index: 1;
background-image: url('https://lxnapi.ccttiot.com/bike/img/static/u78FEc5oHRKzdvopQpZE');
background-size: cover;
/* 背景图片等比缩放以覆盖整个容器 */
background-position: center;
/* 背景图片居中显示 */
background-repeat: no-repeat;
.card_top{
display: flex;
flex-wrap: nowrap;
align-items: center;
.name{
font-weight: 500;
font-size: 44rpx;
color: #B07C1E;
}
.type{
margin-left: 30rpx;
padding: 4rpx 18rpx;
font-weight: 400;
font-size: 24rpx;
color: #B07C1E;
border-radius: 35rpx 35rpx 35rpx 35rpx;
border: 1rpx solid #B07C1E;
}
}
.card_bot{
margin-top: 20rpx;
display: flex;
flex-wrap: nowrap;
align-items: center;
.txts{
font-weight: 400;
font-size: 28rpx;
color: #B07C1E;
}
.topage{
margin-left: auto;
font-weight: 400;
font-size: 28rpx;
color: #B07C1E;
}
}
}
.pay_btn{
display: flex;
align-items: center;
justify-content: center;
margin: 20rpx auto ;
width: 680rpx;
height: 104rpx;
background: linear-gradient( 90deg, rgba(255,201,87,0.84) 0%, rgba(255,224,158,0.58) 100%);
border-radius: 58rpx 58rpx 58rpx 58rpx;
font-weight: 500;
font-size: 44rpx;
color: #B07C1E;
position: fixed;
left: 50%;
transform: translateX(-50%);
bottom: 100rpx;
}
.backimg {
position: fixed;
width: 750rpx;
height: 670rpx;
top: 0;
left: 0;
z-index: -1; //
}
.txt{
margin: 56rpx 48rpx;
font-weight: 400;
font-size: 24rpx;
color: #64B6A7;
}
.cont_box {
display: flex;
flex-wrap: nowrap;
padding: 0 38rpx;
margin-top: 690rpx;
z-index: 10;
overflow-x: auto; //
white-space: nowrap; //
-webkit-overflow-scrolling: touch; // 使
//
::-webkit-scrollbar {
display: none; // WebKit ( Safari Chrome)
height: 0; // 0
}
scrollbar-width: none; // Firefox
-ms-overflow-style: none; // Internet Explorer Edge
.act1{
background: #FFFBF1;
}
.cont_li {
width: 218rpx;
height: 256rpx;
background: rgba(255, 224, 158, 0.15) #FFFFFF;
border-radius: 20rpx;
border: 1rpx solid rgba(176, 124, 30, 0.56);
z-index: 10;
flex-shrink: 0; //
margin-right: 20rpx; //
.tit{
width: 100%;
text-align: center;
font-weight: 500;
font-size: 32rpx;
color: #B07C1E;
}
.money{
width: 100%;
text-align: center;
margin-top: 10rpx;
font-weight: 600;
font-size: 32rpx;
color: #E46666;
}
.tips{
margin-top: 10rpx;
width: 100%;
text-align: center;
font-weight: 400;
font-size: 24rpx;
color: #979797;
}
}
}
.cont_box::-webkit-scrollbar {
display: none;
}
.mc {
position: fixed;
top: 611rpx;
left: 0rpx;
width: 750rpx;
height: 107.29rpx;
z-index: 2;
}
}
</style>

154
page_geren/vip_his.vue Normal file
View File

@ -0,0 +1,154 @@
<template>
<view class="page">
<u-navbar title="购买记录" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
height='45'></u-navbar>
<view class="cont">
<view class="vip_card" v-for="(item,index) in 3" :key="index">
<view class="top">
<image src="https://lxnapi.ccttiot.com/bike/img/static/uac2wTu5kmOGPkonvNcl" mode=""></image>
会员卡
</view>
<view class="bot">
<view class="left">
<image src=" https://lxnapi.ccttiot.com/bike/img/static/uvGHCob7uexyCsuMCt2c" mode=""></image>
</view>
<view class="right">
<view class="tit">
购买时长20
</view>
<view class="data">
有效期 2025-01-21至2025-04-21
</view>
<view class="data">
支付时间 2025-01-21
</view>
</view>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: '#fff'
},
sn: '',
istrue: false,
CouponLists:[]
}
},
onShow() {
// this.getinfo()
},
methods: {
getinfo() {
this.$u.get("/getAppInfo").then((res) => {
if (res.code == 200) {
this.$store.commit('SET_USERID', res.user.userId);
this.userinfo = res.user
this.getcard()
} else {
}
});
},
getcard(){
let data={
userId:this.userinfo.userId,
typeList:'1'
}
this.$u.get("/appVerify/couponBuyRecord?",data ).then((res) => {
if (res.code == 200) {
this.CouponLists = res.data
}
})
}
}
}
</script>
<style lang="scss">
page {
background-color: #fff;
}
.page {
width: 750rpx;
.cont {
display: flex;
justify-content: center;
flex-wrap: wrap;
.tit1 {
font-weight: 500;
font-size: 32rpx;
color: #FFFFFF;
}
.tit2 {
margin-top: 10rpx;
font-weight: 500;
font-size: 24rpx;
color: #FFFFFF;
}
.vip_card{
margin-top: 20rpx;
// margin: 0 auto;
width: 680rpx;
padding: 16rpx 24rpx;
background: #FFFFFF;
box-shadow: 0rpx 10rpx 64rpx 0rpx rgba(0,0,0,0.08);
border-radius: 20rpx 20rpx 20rpx 20rpx;
.top{
display: flex;
flex-wrap: nowrap;
align-items: center;
font-weight: 900;
font-size: 40rpx;
color: #3B3838;
image{
margin-right: 24rpx;
width: 58rpx;
height: 58rpx;
}
}
.bot{
margin-top: 20rpx;
display: flex;
flex-wrap: nowrap;
.left{
margin-right: 24rpx;
image{
width: 194rpx;
height: 194rpx;
}
}
.right{
.tit{
width: 100%;
font-weight: 600;
font-size: 32rpx;
color: #2F3240;
}
.data{
margin-top: 16rpx;
width: 100%;
font-weight: 400;
font-size: 28rpx;
color: #808080;
}
}
}
}
}
}
</style>

View File

@ -1041,6 +1041,50 @@
}
}
]
},{
"root": "page_geren",
"pages": [{
"path": "index",
"style": {
"navigationBarTitleText": "",
"navigationBarBackgroundColor": "#8883F0",
"enablePullDownRefresh": false,
"navigationStyle": "custom"
}
},{
"path": "kaitonghuiyuan",
"style": {
"navigationBarTitleText": "",
"navigationBarBackgroundColor": "#8883F0",
"enablePullDownRefresh": false,
"navigationStyle": "custom"
}
},{
"path": "buyCard",
"style": {
"navigationBarTitleText": "",
"navigationBarBackgroundColor": "#8883F0",
"enablePullDownRefresh": false,
"navigationStyle": "custom"
}
},{
"path": "vip_his",
"style": {
"navigationBarTitleText": "",
"navigationBarBackgroundColor": "#8883F0",
"enablePullDownRefresh": false,
"navigationStyle": "custom"
}
},{
"path": "addhuiyuan",
"style": {
"navigationBarTitleText": "",
"navigationBarBackgroundColor": "#8883F0",
"enablePullDownRefresh": false,
"navigationStyle": "custom"
}
}
]
}
],
"tabBar": {

View File

@ -96,6 +96,10 @@
<image src="https://api.ccttiot.com/smartmeter/img/static/uAjP0V10qIEJn4ruztGa" mode="aspectFit"></image>
<view class="txt">代理入口</view>
</view>
<view style="margin-top:40rpx" class="botcard" @click="btnhuiyuan">
<image src="https://api.ccttiot.com/smartmeter/img/static/uAjP0V10qIEJn4ruztGa" mode="aspectFit"></image>
<view class="txt">会员卡</view>
</view>
<view style="margin-top:40rpx" class="botcard" @click="btntuichu">
<image src="https://api.ccttiot.com/smartmeter/img/static/uSBN3RkeyeJLJev5Sk2F" mode="aspectFit"></image>
<view class="txt">退出登录</view>
@ -151,6 +155,12 @@
// })
// },
//
//
btnhuiyuan(){
uni.navigateTo({
url:'/page_geren/buyCard'
})
},
btnbangzhu(){
uni.navigateTo({
url:'/pages/daili/bangzhu'

View File

@ -60,6 +60,11 @@
style="width: 96rpx;height:94rpx;"></image>
<!-- 我的订单 -->
</view>
<view class="gr" @click="btngeren">
<!-- <image src="https://api.ccttiot.com/smartmeter/img/static/u8rWtdPtHabALkII23Zr" mode="aspectFit"
style="width: 96rpx;height:94rpx;"></image> -->
<u-icon name="account" color="#000" size="38"></u-icon>
</view>
<view class="gr" @click="btnindex(3)">
<image src="https://api.ccttiot.com/smartmeter/img/static/uphoDfOVnT6VEyj6glfF" mode="aspectFit"
style="width: 96rpx;height:94rpx;"></image>
@ -263,6 +268,12 @@
},
methods: {
//
btngeren(){
uni.navigateTo({
url:'/page_geren/index'
})
},
//
btntopgg(){
this.$u.get(`/app/notice/${this.announcements.noticeId}`).then(resp =>{