lilishop-uniapp/pages/mine/point/myPoint.vue

217 lines
4.6 KiB
Vue
Raw Normal View History

2021-05-13 11:03:32 +08:00
<template>
<view class="content">
<view class="portrait-box">
<image src="/static/pointTrade/point_bg_1.png" mode=""></image>
<image class="point-img" src="/static/pointTrade/tradehall.png" />
<view class="position-point">
2021-05-13 11:03:32 +08:00
</view>
</view>
<u-row class="portrait-box2">
<u-col span="6" class="portrait-box2-col" :gutter="16">
<text>累计获得</text>
<text class="pcolor">{{ pointData.point || 0 }}</text>
</u-col>
<u-col span="6" class="portrait-box2-col">
<text>未使用</text>
<text class="pcolor">{{ pointData.variablePoint || 0 }}</text>
</u-col>
</u-row>
2021-05-14 17:31:40 +08:00
<div class="point-list">
<view class="point-item" v-for="(item, index) in pointList" :key="index">
<view>
<view>{{ item.content }}</view>
<view>{{ item.createTime}}</view>
</view>
2021-07-28 09:53:41 +08:00
<view><span>{{item.pointType == "INCREASE" ? '+' : '-'}}</span>{{ item.variablePoint }}</view>
2021-05-13 11:03:32 +08:00
</view>
2021-05-14 17:31:40 +08:00
<uni-load-more :status="count.loadStatus"></uni-load-more>
</div>
2021-05-13 11:03:32 +08:00
</view>
</template>
<script>
2021-05-14 17:31:40 +08:00
import { getPointsData } from "@/api/members.js";
2021-05-13 11:03:32 +08:00
import { getMemberPointSum } from "@/api/members.js";
export default {
data() {
return {
count: {
loadStatus: "more",
},
2021-05-14 17:31:40 +08:00
pointList: [], //积分数据集合
2021-05-13 11:03:32 +08:00
params: {
pageNumber: 1,
pageSize: 10,
},
2021-05-14 17:31:40 +08:00
pointData: {}, //累计获取 未输入 集合
2021-05-13 11:03:32 +08:00
};
},
2021-05-14 17:31:40 +08:00
2021-05-13 11:03:32 +08:00
onLoad() {
2021-05-14 17:31:40 +08:00
this.initPointData();
2021-05-13 11:03:32 +08:00
this.getList();
},
2021-05-14 17:31:40 +08:00
/**
* 触底加载
*/
2021-05-13 11:03:32 +08:00
onReachBottom() {
this.params.pageNumber++;
this.getList();
},
methods: {
2021-05-14 17:31:40 +08:00
/**
* 获取积分数据
*/
2021-05-13 11:03:32 +08:00
getList() {
let params = this.params;
uni.showLoading({
title: "加载中",
});
getPointsData(params).then((res) => {
uni.hideLoading();
if (res.data.success) {
let data = res.data.result.records;
if (data.length < 10) {
this.$set(this.count, "loadStatus", "noMore");
2021-05-14 17:31:40 +08:00
this.pointList.push(...data);
2021-05-13 11:03:32 +08:00
} else {
2021-05-14 17:31:40 +08:00
this.pointList.push(...data);
2021-05-13 11:03:32 +08:00
if (data.length < 10) this.$set(this.count, "loadStatus", "noMore");
}
}
});
},
2021-05-14 17:31:40 +08:00
/**
2021-05-17 18:19:26 +08:00
* 获得累计积分使用
2021-05-14 17:31:40 +08:00
*/
initPointData() {
2021-05-13 11:03:32 +08:00
getMemberPointSum().then((res) => {
this.pointData = res.data.result;
});
},
},
};
</script>
<style lang="scss" scoped>
2021-05-17 18:19:26 +08:00
.point-list{
margin-top: 50rpx;
}
2021-05-13 11:03:32 +08:00
.title {
height: 80rpx;
text-align: center;
line-height: 80rpx;
font-size: 32rpx;
font-weight: bold;
}
2021-05-14 17:31:40 +08:00
.point-item {
2021-05-13 11:03:32 +08:00
width: 100%;
height: 130rpx;
padding: 0 20rpx;
background: #ffffff;
font-size: $font-sm;
border-bottom: 1px solid $border-color-light;
display: flex;
justify-content: end;
align-items: center;
> view:nth-child(1) {
flex: 1;
line-height: 40rpx;
view {
color: #666666;
}
:last-child {
color: #999;
}
}
> view:nth-child(2) {
width: 100rpx;
text-align: center;
}
}
.portrait-box2 {
height: 100rpx;
background: #ffffff;
border-radius: 0 0 20rpx 20rpx;
margin: 0 20rpx;
font-size: 26rpx;
/deep/ .u-col {
text-align: center !important;
}
/deep/ .u-col:first-child {
border-right: 1px solid $border-color-light;
}
.pcolor {
color: #4ebb9d;
}
}
.content {
background: #f9f9f9;
}
.more {
text-align: right;
color: $u-tips-color;
font-size: 24rpx;
padding-right: 40rpx !important;
}
.portrait-box {
background-color: $main-color;
height: 250rpx;
background: linear-gradient(134deg, #28d094 2%, #1abc9c 98%);
border-radius: 20rpx 20rpx 0 0;
margin: 20rpx 20rpx 0;
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: #ffffff;
> image:first-child {
width: 263rpx;
height: 250rpx;
position: absolute;
left: 0;
bottom: 0;
transform: rotateY(180deg);
}
.position-point {
position: absolute;
right: -2rpx;
top: 0;
.apply-point {
margin-top: 30rpx;
text-align: center;
line-height: 40rpx;
font-size: $font-sm;
color: #ffffff;
width: 142rpx;
height: 40rpx;
background: rgba(#ffffff, 0.2);
border-radius: 20rpx 0px 0px 20rpx;
}
}
.point-img {
height: 108rpx;
width: 108rpx;
margin-bottom: 30rpx;
}
.point {
font-size: 56rpx;
}
}
</style>