Files
dvcp_v2_wechat_app/src/project/fengdu/AppRedemptionPoints/AppRedemptionPoints.vue

326 lines
9.1 KiB
Vue
Raw Normal View History

2023-04-11 09:30:41 +08:00
<template>
<div class="AppRedemptionPoints">
<div class="fixed-top">
<div class="header">
<div class="num">
<p>积分余额</p>
2023-04-13 16:26:56 +08:00
<h3>{{total}}</h3>
2023-04-11 09:30:41 +08:00
</div>
<div class="btn" @click="toMyOrder">我的订单</div>
</div>
<div class="search">
<u-tabs :list="tabList" :is-scroll="false" :current="currentTabs" height="76" font-size="28" bg-color="#fff" inactive-color="#8891A1"
active-color="#1D2229 " :bar-style="barStyle" @change="changeTab" ></u-tabs>
<div class="type-select">
<div :class="currentType == index ? 'item active' : 'item'" v-for="(item, index) in typeList" :key="index" @click="typeClick(index)">
{{item}}
<span v-if="index == 1" class="down-icon"></span>
</div>
</div>
<div class="point-select" v-if="currentType == 1">
<u-tabs :list="pointTypeList" :is-scroll="true" :current="currentPoint" height="80" font-size="24" bg-color="#fff" inactive-color="#666666"
active-color="#4181FF" bar-width="0" :bold="false" @change="pointClick" ></u-tabs>
</div>
</div>
</div>
2023-04-14 14:49:34 +08:00
<div class="list-content">
2023-04-17 17:56:50 +08:00
<div class="list-info" v-for="(item, index) in goodsList" :key="index" v-if="goodsList.length">
<div class="item" @click="toProductDetail(item)">
<img :src="item.picUrl" alt="">
<div class="type" :class="`type`+item.type">{{ $dict.getLabel('integralSGType', item.type) }}</div>
<div class="content">
<p class="text">{{item.title}}</p>
<div class="item-money">
<h3>{{item.integralPrice}}积分</h3>
<p v-if="item.type == 1">+{{item.payMoney}}</p>
<span v-if="item.type == 1">兑换后再付</span>
2023-04-11 09:30:41 +08:00
</div>
2023-04-17 17:56:50 +08:00
<div class="btn" :class="total >= item.integralPrice ? 'btn1' : 'btn0'" @click.stop="toOrder(item)" v-if="item.status == 1 && item.stock > 0">{{total >= item.integralPrice ? '去兑换' : '积分不足'}}</div>
<div class="btn btn0" :class="`btn`+item.status" v-else>商品缺货</div>
2023-04-11 09:30:41 +08:00
</div>
2023-04-17 17:56:50 +08:00
</div>
</div>
<AiEmpty v-else></AiEmpty>
2023-04-11 09:30:41 +08:00
</div>
</div>
</template>
<script>
import {mapState} from "vuex";
export default {
name: 'AppRedemptionPoints',
appName: '积分兑换',
data() {
return {
tabList: [{name: '全部'}, {name: '免费兑'}, {name: '京东低价商品'}],
currentTabs: 0,
barStyle: {
'width': '20px',
'height': '3px',
'border-radius': '2px',
'bottom': '-3px',
'background': '#2D7DFF'
},
typeList: ['最新上架', '积分', '我可兑换的'],
2023-04-11 10:58:33 +08:00
currentType: 0,
2023-04-11 09:30:41 +08:00
pointTypeList: [{name: '全部'}, {name: '50分以下'}, {name: '100分以下'}, {name: '200分以下'}, {name: '5000分以下'}],
currentPoint: 0,
2023-04-13 16:26:56 +08:00
goodsList: [],
2023-04-17 14:51:56 +08:00
total: 0,
current: 1
2023-04-11 09:30:41 +08:00
}
},
computed: {
...mapState(['user']),
},
onLoad() {
2023-04-14 14:31:29 +08:00
this.getTotal()
2023-04-12 18:01:32 +08:00
this.$dict.load(['integralSGType']).then(() => {
this.getList()
})
2023-04-11 09:30:41 +08:00
},
2023-04-14 14:31:29 +08:00
onShow() {
this.getTotal()
},
2023-04-11 09:30:41 +08:00
methods: {
2023-04-14 14:31:29 +08:00
getTotal() {
2023-04-13 16:26:56 +08:00
this.$instance.post(`/app/appintegraluser/integralUserInfoFD`).then(res => {
if (res?.data) {
this.total = res.data.integral || 0
}
})
},
2023-04-12 11:30:21 +08:00
getListInit() {
2023-04-13 16:26:56 +08:00
this.goodsList = []
this.current = 1
2023-04-17 17:29:41 +08:00
this.getList()
2023-04-12 11:30:21 +08:00
},
getList() {
2023-04-13 16:26:56 +08:00
this.$instance.post(`/app/appintegralsupermarketshop/goodsListXCX`, null, {
params: {
goodsType: this.currentTabs, //商品类型0全部、1免费兑、2京东低价商品默认0
orderType: this.currentType == 0 ? 1 : 0, //排序类型0积分升序、1上架时间倒序默认0
filterIntegral: this.currentType == 2 ? true : false, //过滤我可兑换的默认false
integralRange: this.currentType == 1 ? this.currentPoint : '', //积分区间类型0全部、150分以下、2:100分以下、3200分以下、45000分以下默认0
current: this.current
}
}).then(res => {
2023-04-12 11:30:21 +08:00
if (res.code === 0) {
2023-04-13 16:26:56 +08:00
this.goodsList = this.current == 1 ? res.data.records : [...this.goodsList, ...res.data.records]
2023-04-12 11:30:21 +08:00
}
})
},
2023-04-11 09:30:41 +08:00
changeTab(index) {
this.currentTabs = index
2023-04-13 16:26:56 +08:00
this.getListInit()
2023-04-11 09:30:41 +08:00
},
typeClick(index) {
this.currentType = index
2023-04-13 16:26:56 +08:00
this.getListInit()
2023-04-11 09:30:41 +08:00
},
pointClick(index) {
this.currentPoint = index
2023-04-13 16:26:56 +08:00
this.getListInit()
2023-04-11 09:30:41 +08:00
},
2023-04-12 18:01:32 +08:00
toProductDetail(item) {
2023-04-13 16:26:56 +08:00
uni.navigateTo({url: `./productDetails?shopGoodsId=${item.shopGoodsId}&total=${this.total}`})
2023-04-11 09:30:41 +08:00
},
toMyOrder() {
uni.navigateTo({url: './myOrderList'})
2023-04-13 16:26:56 +08:00
},
toOrder(item) {
if(this.total >= item.integralPrice && item.stock > 0) {
uni.navigateTo({url: `./placeOrder?shopGoodsId=${item.shopGoodsId}&total=${this.total}&backLevel=2`})
}
},
2023-04-11 09:30:41 +08:00
},
onReachBottom() {
2023-04-17 17:29:41 +08:00
this.current ++
2023-04-13 16:26:56 +08:00
this.getList()
2023-04-11 09:30:41 +08:00
},
}
</script>
<style lang="scss" scoped>
.AppRedemptionPoints {
.fixed-top {
background-color: #f3f6f9;
position: fixed;
top: 0;
left: 0;
z-index: 2;
}
.header {
display: flex;
justify-content: space-between;
padding: 32px 24px;
background-color: #fff;
margin-bottom: 24px;
.num {
p {
font-family: PingFangSC-Regular;
font-weight: 400;
font-size: 24px;
color: #999;
line-height: 34px;
}
h3 {
font-family: PingFangSC-SNaNpxibold;
font-weight: 600;
font-size: 66px;
color: #FF6900;
line-height: 92px;
}
}
.btn {
width: 168px;
height: 64px;
border: 1px solid #4181FF;
line-height: 62px;
border-radius: 44px;
box-sizing: border-box;
text-align: center;
font-family: PingFangSC-Medium;
font-weight: 500;
font-size: 26px;
color: #4181FF;
margin-top: 28px;
}
}
.search {
background-color: #fff;
.type-select {
display: flex;
border-top: 1px solid #D8D8D8;
line-height: 84px;
.item {
flex: 1;
text-align: center;
font-family: PingFangSC-Regular;
font-size: 26px;
color: #8891A1;
.down-icon {
display: inline-block;
margin-left: 8px;
transition: all 0.3s ease-in-out;
transform: rotate(0deg);
}
}
.active {
color: #4181FF;
.down-icon {
transform: rotate(180deg);
}
}
}
}
.list-content {
2023-04-11 10:58:33 +08:00
padding: 396px 0 24px 24px;
2023-04-11 09:30:41 +08:00
background-color: #f3f6f9;
2023-04-17 17:56:50 +08:00
overflow: hidden;
.list-info {
width: 50%;
float: left;
}
2023-04-11 09:30:41 +08:00
.item {
width: calc(100% - 24px);
background-color: #fff;
border-radius: 20px;
position: relative;
margin-bottom: 24px;
img {
width: 100%;
height: 340px;
2023-04-13 16:26:56 +08:00
border-top-left-radius: 20px;
border-top-right-radius: 20px;
2023-04-11 09:30:41 +08:00
}
.type {
padding: 8px 16px;
font-family: PingFangSC-Regular;
font-size: 20px;
line-height: 28px;
color: #FFF;
border-top-right-radius: 20px;
border-bottom-left-radius: 20px;
position: absolute;
top: 0;
right: 0;
}
2023-04-12 18:01:32 +08:00
.type1 {
2023-04-11 09:30:41 +08:00
background-color: #E64E39;
}
2023-04-12 18:01:32 +08:00
.type0 {
2023-04-11 09:30:41 +08:00
background-color: #FF6900;
}
.content {
padding: 16px 16px 24px;
position: relative;
2023-04-11 10:58:33 +08:00
background-color: #fff;
2023-04-11 09:30:41 +08:00
.text {
font-family: PingFangSC-SNaNpxibold;
font-weight: 600;
font-size: 26px;
color: #222;
line-height: 38px;
text-overflow: -o-ellipsis-lastline;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
margin-bottom: 12px;
}
.item-money {
width: calc(100% - 160px);
h3 {
font-family: PingFangSC-SNaNpxibold;
font-weight: 600;
font-size: 34px;
color: #FF6900;
line-height: 48px;
}
p {
font-family: PingFangSC;
font-weight: 600;
font-size: 26px;
color: #4181FF;
}
span {
display: inline-block;
font-family: PingFangSC-Regular;
font-weight: 400;
2023-04-11 10:58:33 +08:00
font-size: 20px;
2023-04-11 09:30:41 +08:00
color: #4181FF;
line-height: 22px;
}
}
.btn {
padding: 14px 32px;
font-family: PingFangSC-Medium;
font-weight: 500;
font-size: 22px;
line-height: 28px;
border-radius: 44px;
position: absolute;
bottom: 24px;
right: 16px;
}
2023-04-13 16:26:56 +08:00
.btn1 {
2023-04-11 09:30:41 +08:00
background-color: #2D7DFF;
color: #FFF;
}
2023-04-13 16:26:56 +08:00
.btn0 {
2023-04-11 09:30:41 +08:00
background-color: #E2E2E2;
color: #666;
}
}
}
.item:nth-of-type(2n-1) {
margin-right: 22px;
}
}
}
</style>