sadjv3_user/my/hongbao/youhuijuanList.vue

382 lines
8.2 KiB
Vue
Raw Normal View History

<template>
2024-07-12 13:51:45 +08:00
<view>
<t-refresh ref="refresh" style="height:100vh !important;" v-if="hongbao.length>0" @refresh="refresh" @loadMore="loadMore" :loadingType="loadingType" :tPadding="0">
2024-07-02 20:57:04 +08:00
<template slot="content">
<checkbox-group @change="checkboxChange">
<view class="youhui-weiyong youhui-list" v-if="priceDd>=item.minMoney" v-for="(item,index) in hongbao" :key="index">
<view class="youhui-view-left">
<view class="youhui-view-left-yuan">
<span class="youhui-view-left-num">{{item.money}}</span>
<span class="youhui-view-left-text"></span>
</view>
<view class="youhui-view-left-bottom">
{{item.minMoney}}元可用
</view>
</view>
<view class="youhui-view-right">
<view class="youhui-view-right-top">
<view class="youhui-view-right-title">{{item.couponName}}</view>
<view class="time-money" style="margin-top: 10px;">
<view class="youhui-view-right-time">{{item.createTime.substring(0,10)}} ~ </view>
<view class="youhui-view-right-time" style="margin-left: 3px;"> {{item.expirationTime.substring(0,10)}}</view>
</view>
</view>
<label class="tui-radio">
2024-07-12 13:51:45 +08:00
<checkbox style="border-radius:50%;" activeBackgroundColor="#029d88" color="#029d88" :value="item.id.toString()" :checked="checkbox"/>
2024-07-02 20:57:04 +08:00
</label>
2024-06-27 20:04:31 +08:00
</view>
</view>
2024-07-02 20:57:04 +08:00
</checkbox-group>
</template>
</t-refresh>
2024-06-27 20:04:31 +08:00
<view @tap="queding()" class="queding">
<span class="que-btn">确定</span>
</view>
2024-07-12 13:51:45 +08:00
<empty v-if="hongbao.length==0"></empty>
</view>
</template>
<script>
import empty from '@/components/empty.vue'
2024-07-02 20:57:04 +08:00
import tRefresh from "@/components/t-refresh/t-refresh.vue"
export default {
components:{
2024-07-02 20:57:04 +08:00
empty,
tRefresh
},
data() {
return {
checkbox:false,
tab: [{
name: '可使用',
state: 0
}, {
name: '已使用',
state: 1
}, {
name: '已失效',
state: 2
}],
tabIndex: 0,
hongbao: [],
2024-07-12 13:51:45 +08:00
page:1,
limit:10,
loadingType: 0,
scrollTop: false,
contentText: {
contentdown: '上拉显示更多',
contentrefresh: '正在加载...',
contentnomore: '没有更多数据了'
},
2024-06-27 20:04:31 +08:00
couponId:'',
2024-06-27 21:51:20 +08:00
content:'',
2024-06-30 09:49:59 +08:00
priceDd:'',
}
},
2024-06-27 20:04:31 +08:00
onLoad(e) {
if(e){
2024-06-27 21:51:20 +08:00
this.priceDd=e.price
2024-06-27 20:04:31 +08:00
this.content=e.text
}
this.getMyList();
},
2024-07-02 20:57:04 +08:00
onPullDownRefresh: function() {
this.page = 1;
this.getMyList('Refresh');
},
methods: {
2024-07-02 20:57:04 +08:00
// 加载更多
loadMore: async function() {
//loadingType: 0.数据未加载完 1.数据全部加载完了 2.数据加载中
if(this.loadingType==0){
2024-07-12 13:51:45 +08:00
uni.showLoading({
title: '加载中...'
});
2024-07-02 20:57:04 +08:00
this.loadingType=2
//模拟数据请求
setTimeout(()=>{
this.page++;
this.loadingType=0;
2024-07-12 13:51:45 +08:00
this.getMyList()
2024-07-02 20:57:04 +08:00
},1000)
}
},
queding(){
this.$queue.setData('youhui',this.couponId);
2024-06-30 09:49:59 +08:00
if(this.content=='套餐'){//返回推荐套餐订单
2024-06-27 20:04:31 +08:00
uni.navigateTo({
url:'/my/order/payModifyTc'
})
2024-06-30 09:49:59 +08:00
}else if(this.content=='支付'){
2024-06-27 20:04:31 +08:00
uni.navigateTo({//返回项目订单
url:'/my/order/payModify'
})
2024-06-30 09:49:59 +08:00
}else if(this.content=='修改'){
uni.navigateTo({//返回项目订单
url:'/my/order/payModifyDzhifu'
})
2024-06-30 19:11:56 +08:00
}else if(this.content=='疗程'){
uni.navigateTo({//返回项目订单
2024-07-01 23:13:43 +08:00
url:'/my/order/payModifyLiao'
2024-06-30 19:11:56 +08:00
})
}else if(this.content=='次卡'){
uni.navigateTo({//返回项目订单
url:'/my/order/payModifyCi'
})
2024-07-02 20:57:04 +08:00
}else if(this.content=='技师支付'){
uni.navigateTo({//返回项目订单
url:'/my/order/payModifyJsDetail'
})
2024-07-22 13:58:35 +08:00
}else if(this.content=='秒杀'){
uni.navigateTo({//返回项目订单
url:'/my/order/payModifyMs'
})
2024-06-27 20:04:31 +08:00
}
},
checkboxChange(e){
this.couponId=e.detail.value.join(",")
},
shiYong(){
uni.switchTab({
url:'/pages/index/index'
})
},
getMyList() {
2024-07-12 13:51:45 +08:00
2024-06-27 20:04:31 +08:00
var data={
page:this.page,
2024-07-12 13:51:45 +08:00
limit:this.limit,
2024-06-27 20:04:31 +08:00
status:this.tabIndex,
2024-07-04 22:45:05 +08:00
minMoney:this.priceDd
2024-06-27 20:04:31 +08:00
}
this.$Request.getT('/app/coupon/selectUserCouponList',data).then(res => {
if (res.code == 0) {
2024-07-12 13:51:45 +08:00
if (res.data) {
if (this.page == 1) this.hongbao = []; //如果是第一页需手动制空列表
this.hongbao = [...this.hongbao, ...res.data.list]; //追加新数据
uni.stopPullDownRefresh()
uni.hideLoading();
}
}
});
},
bindTab(index) {
this.tabIndex = index
this.hongbao = [];
this.page = 1;
this.getMyList();
}
},
2024-07-02 20:57:04 +08:00
}
</script>
<style scoped>
2024-06-27 20:04:31 +08:00
.que-btn{
display: inline-block;
width: 90%;
text-align: center;
background: linear-gradient(90deg, #019C88, #28BA92, #35C495);
2024-06-28 17:43:02 +08:00
height: 80rpx;
2024-06-27 20:04:31 +08:00
border-radius: 28px;
color: #ffffff;
2024-06-28 17:43:02 +08:00
line-height: 80rpx;
margin-top: 10rpx;
2024-07-03 14:10:49 +08:00
font-size: 34rpx;
2024-06-27 20:04:31 +08:00
}
.queding{
2024-06-28 17:43:02 +08:00
width: 100%;
height:100rpx;
2024-06-27 20:04:31 +08:00
background-color: #fff;
position: fixed;
bottom: 0px;
display: flex;
flex-direction: column;
align-items: center;
2024-07-13 13:49:16 +08:00
z-index: 666;
2024-06-28 17:43:02 +08:00
}
2024-06-27 20:04:31 +08:00
.time-money{
width: 100%;
display: flex;
flex-direction: row;
align-items: center;
}
2024-07-12 13:51:45 +08:00
/deep/uni-page-refresh{
display: none !important;
}
/deep/.uni-checkbox-input{
border-radius: 50%;
}
2024-07-12 13:51:45 +08:00
/deep/.uni-scroll-view-content{
width: auto;
height: auto;
}
/deep/.refresh-body {
box-sizing: border-box;
padding-top: 0px !important;
margin-top: 0px;
overflow: scroll;
}
/deep/.refresh-body .content{
height: 100%;
}
.content-view{
height: 100vh;
width: 100%;
overflow: hidden;
2024-06-27 20:02:52 +08:00
}
2024-07-12 13:51:45 +08:00
.you-nav{
background: #FFFFFF;
padding: 14px 25px 0px 25px;
position: fixed;
top: 0;
width: 100%;
z-index: 66;
}
/deep/.refresh-body{
box-sizing: border-box;
height: 830px!important;
padding-top: 0px !important;
/* margin-top: 42px; */
}
/deep/.page-box{
width: 100%;
}
.youhui-img{
width: 111.81rpx;
height: 111.81rpx;
}
.youhui-view-right-btn{
width: 158rpx;
height: 64rpx;
background: linear-gradient(-90deg, #019C88, #2DC48E);
border-radius: 32rpx;
text-align: center;
line-height: 64rpx;
font-weight: 400;
2024-07-12 13:51:45 +08:00
font-size: 26rpx;
color: #FFFFFF;
text-shadow: 0rpx 2rpx 4rpx rgba(0,119,104,0.44);
margin-left: 10px;
}
.youhui-view-right-time{
font-weight: 400;
font-size: 22rpx;
color: #999999;
}
.youhui-view-right-title{
2024-07-12 13:51:45 +08:00
width: 260rpx;
font-weight: 400;
2024-07-12 13:51:45 +08:00
font-size: 28rpx;
color: #333333;
}
.youhui-view-right-top{
display: flex;
flex-direction: column;
2024-07-12 13:51:45 +08:00
align-items: center;
}
.youhui-view-right{
width: 502.08rpx;
height: 100%;
display: flex;
flex-direction: row;
align-items: center;
2024-07-12 13:51:45 +08:00
justify-content: center;
}
.youhui-view-left-bottom{
font-weight: 400;
font-size: 22rpx;
color: #FFFFFF;
}
.youhui-view-left-yuan{
display: flex;
flex-direction: row;
align-items: baseline;
color: #FFFFFF;
}
.youhui-view-left-num{
font-weight: bold;
font-size: 89rpx;
}
.youhui-view-left-text{
font-weight: bold;
font-size:24.31rpx;
}
.youhui-view-left{
width: 199rpx;
height: 242rpx;
display: flex;
flex-direction:column;
align-items: center;
justify-content: center;
}
.youhui-yiyong{
background-image: url('../../static/youhuijuan/coupons7.png');
}
.youhui-weiyong{
background-image: url('../../static/youhuijuan/coupons1.png');
}
.youhui-list{
2024-07-12 13:51:45 +08:00
width: 95%;
display: flex;
flex-direction: row;
height: 242rpx;
border-radius: 21rpx;
background-size: 100%;
2024-07-12 13:51:45 +08:00
margin: 10px auto;
justify-content: space-between;
}
.you-nav{
background: #FFFFFF;
padding: 14px 25px 0px 25px;
}
page {
background: #F5F5F5;
}
2024-07-12 13:51:45 +08:00
.bg {
background: #FFFFFF;
}
2024-07-12 13:51:45 +08:00
.box {
width: 128upx;
height: 60upx;
color: #666;
text-align: center;
2024-07-12 13:51:45 +08:00
font-weight: 500;
font-size: 30rpx;
z-index: 1;
}
2024-07-12 13:51:45 +08:00
.line {
width: 48px;
height: 14rpx;
background: linear-gradient(-48deg, #019C88, #2DC48E);
border-radius: 7rpx;
opacity: 0.35;
position: relative;
top: -7px;
z-index: -1;
left: 50%;
transform: translateX(-50%);
}
2024-07-12 13:51:45 +08:00
.tanColor {
color: #019C88;
font-weight: bold;
}
2024-07-12 13:51:45 +08:00
.btn {
width: 140upx;
height: 55upx;
border: 2upx solid #FF130A;
border-radius: 30upx;
text-align: center;
line-height: 55upx;
color: #FF130A;
font-size: 24upx;
}
</style>