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-08-16 10:35:12 +08:00
|
|
|
|
|
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>
|
2022-04-19 10:40:46 +08:00
|
|
|
|
<text class="pcolor">{{ pointData.totalPoint || 0 }}</text>
|
2021-05-13 11:03:32 +08:00
|
|
|
|
</u-col>
|
|
|
|
|
<u-col span="6" class="portrait-box2-col">
|
2022-04-19 10:40:46 +08:00
|
|
|
|
<text>剩余积分:</text>
|
|
|
|
|
<text class="pcolor">{{ pointData.point || 0 }}</text>
|
2021-05-13 11:03:32 +08:00
|
|
|
|
</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>
|
2023-01-17 16:14:12 +08:00
|
|
|
|
<view :class="[item.pointType == 'INCREASE' ? 'plus' : 'reduce']"><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;
|
|
|
|
|
}
|
2023-01-17 16:14:12 +08:00
|
|
|
|
.plus{
|
|
|
|
|
color: $light-color;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
.reduce{
|
|
|
|
|
color: $weChat-color;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
2021-05-13 11:03:32 +08:00
|
|
|
|
|
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 {
|
2023-01-17 16:14:12 +08:00
|
|
|
|
color: $light-color;
|
2021-05-13 11:03:32 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.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;
|
2023-01-17 16:14:12 +08:00
|
|
|
|
background: linear-gradient(91deg, $light-color 1%, $aider-light-color 99%);
|
2021-05-13 11:03:32 +08:00
|
|
|
|
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>
|