mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-uniapp.git
synced 2026-08-06 19:07:23 +08:00
- 在入口文件中引入uview-plus的配置,优化字体加载逻辑 - 移除manifest.json中不必要的权限描述 - 更新package.json和package-lock.json,添加开发依赖 - 调整多个组件的样式和结构,提升用户体验 - 修复部分组件的逻辑和样式问题,确保兼容性
250 lines
5.3 KiB
Vue
250 lines
5.3 KiB
Vue
<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">
|
||
|
||
|
||
</view>
|
||
</view>
|
||
<view class="point-summary">
|
||
<view class="point-summary-item">
|
||
<text>累计获得:</text>
|
||
<text class="pcolor">{{ pointData.totalPoint || 0 }}</text>
|
||
</view>
|
||
<view class="point-summary-divider"></view>
|
||
<view class="point-summary-item">
|
||
<text>剩余积分:</text>
|
||
<text class="pcolor">{{ pointData.point || 0 }}</text>
|
||
</view>
|
||
</view>
|
||
|
||
<div class="point-list">
|
||
<view class="point-item" v-for="(item, index) in pointList" :key="index">
|
||
<view class="point-item-left">
|
||
<view class="point-label">{{ item.content }}</view>
|
||
<view class="point-item-time">{{ item.createTime }}</view>
|
||
</view>
|
||
<view class="point-item-value" :class="[item.pointType == 'INCREASE' ? 'plus' : 'reduce']">
|
||
<text>{{ item.pointType == "INCREASE" ? "+" : "-" }}</text>{{ item.variablePoint }}
|
||
</view>
|
||
</view>
|
||
<uni-load-more :status="count.loadStatus"></uni-load-more>
|
||
</div>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import { getPointsData } from "@/api/members.js";
|
||
import { getMemberPointSum } from "@/api/members.js";
|
||
export default {
|
||
data() {
|
||
return {
|
||
count: {
|
||
loadStatus: "more",
|
||
},
|
||
pointList: [], //积分数据集合
|
||
params: {
|
||
pageNumber: 1,
|
||
pageSize: 10,
|
||
},
|
||
pointData: {}, //累计获取 未输入 集合
|
||
};
|
||
},
|
||
|
||
onLoad() {
|
||
this.initPointData();
|
||
this.getList();
|
||
},
|
||
|
||
/**
|
||
* 触底加载
|
||
*/
|
||
onReachBottom() {
|
||
this.params.pageNumber++;
|
||
this.getList();
|
||
},
|
||
methods: {
|
||
/**
|
||
* 获取积分数据
|
||
*/
|
||
getList() {
|
||
let params = this.params;
|
||
uni.showLoading({
|
||
title: "加载中",
|
||
});
|
||
getPointsData(params).then((res) => {
|
||
if (this.$store.state.isShowToast){ uni.hideLoading() };
|
||
if (res.data.success) {
|
||
let data = res.data.result.records;
|
||
if (data.length < 10) {
|
||
this.count["loadStatus"] = "noMore";
|
||
this.pointList.push(...data);
|
||
} else {
|
||
this.pointList.push(...data);
|
||
if (data.length < 10) this.count["loadStatus"] = "noMore";
|
||
}
|
||
}
|
||
});
|
||
},
|
||
|
||
/**
|
||
* 获得累计积分使用
|
||
*/
|
||
initPointData() {
|
||
getMemberPointSum().then((res) => {
|
||
this.pointData = res.data.result;
|
||
});
|
||
},
|
||
},
|
||
};
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
.point-list {
|
||
margin-top: 20rpx;
|
||
}
|
||
.title {
|
||
height: 80rpx;
|
||
text-align: center;
|
||
line-height: 80rpx;
|
||
font-size: 32rpx;
|
||
font-weight: bold;
|
||
}
|
||
.plus{
|
||
color: $light-color;
|
||
font-weight: bold;
|
||
}
|
||
.reduce{
|
||
color: $weChat-color;
|
||
font-weight: bold;
|
||
}
|
||
|
||
.point-item {
|
||
width: 100%;
|
||
min-height: 130rpx;
|
||
padding: 24rpx 20rpx;
|
||
background: #ffffff;
|
||
font-size: $font-sm;
|
||
border-bottom: 1px solid $border-color-light;
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
box-sizing: border-box;
|
||
|
||
.point-item-left {
|
||
flex: 1;
|
||
min-width: 0;
|
||
line-height: 40rpx;
|
||
}
|
||
|
||
.point-item-time {
|
||
color: #999;
|
||
}
|
||
|
||
.point-item-value {
|
||
flex-shrink: 0;
|
||
width: 100rpx;
|
||
text-align: center;
|
||
}
|
||
}
|
||
|
||
.point-summary {
|
||
display: flex;
|
||
align-items: center;
|
||
min-height: 100rpx;
|
||
padding: 28rpx 0;
|
||
background: #ffffff;
|
||
border-radius: 0 0 20rpx 20rpx;
|
||
margin: 0 20rpx;
|
||
font-size: 26rpx;
|
||
box-sizing: border-box;
|
||
|
||
.point-summary-item {
|
||
flex: 1;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
}
|
||
|
||
.point-summary-divider {
|
||
width: 1px;
|
||
height: 48rpx;
|
||
background: $border-color-light;
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.pcolor {
|
||
color: $light-color;
|
||
margin-left: 8rpx;
|
||
}
|
||
}
|
||
|
||
.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(91deg, $light-color 1%, $aider-light-color 99%);
|
||
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;
|
||
}
|
||
|
||
}
|
||
.point-label {
|
||
font-weight: bold;
|
||
margin-bottom: 10rpx;
|
||
color: #666666;
|
||
}
|
||
</style>
|