我的积分
This commit is contained in:
@@ -1,148 +1,184 @@
|
||||
<template>
|
||||
<div class="page">
|
||||
<div class="header-bg">
|
||||
<u-navbar title="积分明细" title-color="#FFF" title-width="300" title-size="32" :title-bold="true" :background="backgroundNavbar" back-icon-color="#fff"></u-navbar>
|
||||
<div class="header-info">
|
||||
<p>我的积分</p>
|
||||
<h1>{{total}}</h1>
|
||||
<div class="myIntegral">
|
||||
<div class="header-content">
|
||||
<div class="top">
|
||||
<div class="total">
|
||||
<h1>4233</h1>
|
||||
<p>积分总额</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="list">
|
||||
<div class="title">积分明细</div>
|
||||
<div class="bottom">
|
||||
<div class="item">
|
||||
<div class="num">{{ info['家庭积分'] || '0' }}</div>
|
||||
<div class="label">积分排行</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<div class="num">{{ info['剩余总分'] || '0' }}</div>
|
||||
<div class="label">历史累计获取</div>
|
||||
</div>
|
||||
</div>
|
||||
<img src="https://cdn.cunwuyun.cn/dvcp/credit/head.png" alt="">
|
||||
</div>
|
||||
<div class="detail-content">
|
||||
<div class="item" v-for="(item, index) in list" :key="index">
|
||||
<div class="flex">
|
||||
<div class="left">
|
||||
<p>{{item.integralRuleName}}: {{item.eventDesc}}</p>
|
||||
<div>{{item.createTime}}</div>
|
||||
<div class="item-info">
|
||||
<p>{{ item.residentName + ':' }}{{ item.eventDesc }}</p>
|
||||
<span> {{ item.doTime }}</span>
|
||||
</div>
|
||||
<div class="right" :class="'status'+item.integralCalcType">{{item.integralCalcType ? '+' : '-'}}{{item.changeIntegral}}</div>
|
||||
<div class="item-num" :class="'color-' + (item.changeIntegral >= 0 ? 0 : 1)">
|
||||
{{ (item.integralCalcType == 1 ? '+' : '-') + item.changeIntegral }}
|
||||
</div>
|
||||
</div>
|
||||
<AiEmpty :description="`暂无数据`" class="emptyWrap" v-if="!list.length"/>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import { mapState } from 'vuex'
|
||||
|
||||
export default {
|
||||
name: "myIntegral",
|
||||
customNavigation: true,
|
||||
appName: "积分明细",
|
||||
appName: "我的积分",
|
||||
computed: {
|
||||
...mapState(['user', 'token'])
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
backgroundNavbar: {
|
||||
background: 'url(https://cdn.cunwuyun.cn/qujing/my-header-nav.png) no-repeat',
|
||||
backgroundSize: '100% 100%',
|
||||
},
|
||||
info: {},
|
||||
current: 1,
|
||||
pages: 2,
|
||||
list: [],
|
||||
total: ''
|
||||
}
|
||||
},
|
||||
onLoad() {
|
||||
mounted() {
|
||||
this.getList()
|
||||
this.getTotal()
|
||||
},
|
||||
methods: {
|
||||
getList() {
|
||||
if(this.current > this.pages) return
|
||||
this.$instance.post(`/app/appwechatuserqujing/queryUserIntegralDetail?size=20¤t=${this.current}`).then(res => {
|
||||
if (res.code == 0) {
|
||||
this.pages = res.data.pages
|
||||
getList() {// 积分明细列表
|
||||
let url = `/app/appvillagerintegraldetail/IntegralList?residentId=${this.user.residentId}&queryType=0¤t=${this.current}&size=10` //积分明细
|
||||
this.$instance.post(url).then(res => {
|
||||
if (res?.data) {
|
||||
if (this.current > res.data.pages) {
|
||||
return
|
||||
}
|
||||
this.list = this.current > 1 ? [...this.list, ...res.data.records] : res.data.records
|
||||
}
|
||||
})
|
||||
},
|
||||
getTotal() {
|
||||
this.$instance.post(`/app/appwechatuserqujing/queryUserIntegral`).then(res => {
|
||||
if (res.code == 0) {
|
||||
this.total = res.data.integral || 0
|
||||
}
|
||||
})
|
||||
}
|
||||
},
|
||||
onReachBottom() {
|
||||
this.current ++
|
||||
this.getList()
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style scoped lang="scss">
|
||||
@import "~dvcp-wui/common";
|
||||
.page {
|
||||
width: 100%;
|
||||
background-color: #F4F5FA;
|
||||
.header-bg {
|
||||
width: 100%;
|
||||
.header-info {
|
||||
width: 100%;
|
||||
height: 304px;
|
||||
background: url("https://cdn.cunwuyun.cn/qujing/my-header-bg.png") no-repeat no-repeat;
|
||||
background-size: 100% 100%;
|
||||
box-sizing: border-box;
|
||||
padding: 32px 0 0 32px;
|
||||
p {
|
||||
font-family: PingFangSC-SNaNpxibold;
|
||||
font-weight: 600;
|
||||
font-size: 34px;
|
||||
color: #FFF;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
h1 {
|
||||
font-family: AlibabaPuHuiTiB;
|
||||
font-size: 96px;
|
||||
color: #FFF;
|
||||
line-height: 112px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.list {
|
||||
width: calc(100% - 64px);
|
||||
margin: -56px 0 0 32px;
|
||||
.myIntegral {
|
||||
width: 100vw;
|
||||
overflow-x: hidden;
|
||||
height: calc(100% - 136px);
|
||||
background-color: #f3f6f9;
|
||||
|
||||
.header-content {
|
||||
width: 690px;
|
||||
height: 358px;
|
||||
background: #FFF;
|
||||
border-radius: 16px;
|
||||
padding: 0 32px 66px;
|
||||
margin: 70px 0 40px 30px;
|
||||
position: relative;
|
||||
.top {
|
||||
width: 100%;
|
||||
height: 213px;
|
||||
z-index: 99;
|
||||
.total {
|
||||
width: 50%;
|
||||
padding-top: 48px;
|
||||
box-sizing: border-box;
|
||||
.title {
|
||||
line-height: 108px;
|
||||
font-family: PingFangSC-Medium;
|
||||
font-weight: 500;
|
||||
font-size: 34px;
|
||||
color: #333;
|
||||
text-align: center;
|
||||
h1 {
|
||||
font-size: 68px;
|
||||
color: #5AAD6A;
|
||||
}
|
||||
.item {
|
||||
border-bottom: 1px solid #eee;
|
||||
padding: 32px 0;
|
||||
.flex {
|
||||
display: flex;
|
||||
.left {
|
||||
width: calc(100% - 120px);
|
||||
p {
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 32px;
|
||||
color: #333;
|
||||
margin-bottom: 8px;
|
||||
line-height: 44px;
|
||||
font-size: 28px;
|
||||
font-weight: 400;
|
||||
color: #999999;
|
||||
}
|
||||
div {
|
||||
font-family: PingFangSC-Regular;
|
||||
}
|
||||
}
|
||||
.bottom {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
width: 100%;
|
||||
height: 145px;
|
||||
padding: 16px 0;
|
||||
box-sizing: border-box;
|
||||
border-top: 2px solid #EEEEEE;
|
||||
.item {
|
||||
text-align: center;
|
||||
z-index: 99;
|
||||
|
||||
.num {
|
||||
font-family: DIN;
|
||||
font-size: 48px;
|
||||
font-weight: bold;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
.label {
|
||||
font-size: 24px;
|
||||
color: #999;
|
||||
margin-top: 10px;
|
||||
}
|
||||
}
|
||||
.right {
|
||||
width: 120px;
|
||||
}
|
||||
|
||||
img {
|
||||
position: absolute;
|
||||
width: 360px;
|
||||
height: 250px;
|
||||
top: -40px;
|
||||
right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.detail-content {
|
||||
width: 690px;
|
||||
background: #FFF;
|
||||
border-radius: 16px;
|
||||
margin: 0 0 0 32px;
|
||||
padding: 30px 30px 94px;
|
||||
box-sizing: border-box;
|
||||
|
||||
.item {
|
||||
padding: 34px 0 32px 0;
|
||||
border-bottom: 2px solid #ddd;
|
||||
display: flex;
|
||||
|
||||
.item-info {
|
||||
width: 500px;
|
||||
|
||||
p {
|
||||
word-break: break-all;
|
||||
font-size: 32px;
|
||||
font-family: PingFangSC-Regular, PingFang SC;
|
||||
font-weight: 400;
|
||||
color: #333;
|
||||
line-height: 44px;
|
||||
}
|
||||
|
||||
span {
|
||||
display: inline-block;
|
||||
margin-top: 8px;
|
||||
font-size: 24px;
|
||||
font-family: PingFangSC-Regular, PingFang SC;
|
||||
font-weight: 400;
|
||||
color: #999;
|
||||
line-height: 34px;
|
||||
}
|
||||
}
|
||||
|
||||
.item-num {
|
||||
width: calc(100% - 500px);
|
||||
text-align: right;
|
||||
font-family: PingFangSC-SNaNpxibold;
|
||||
font-weight: 600;
|
||||
font-size: 36px;
|
||||
}
|
||||
.status0 {
|
||||
color: #2C51CE;
|
||||
}
|
||||
.status1 {
|
||||
color: #E6736E;
|
||||
}
|
||||
font-family: PingFangSC-Semibold, PingFang SC;
|
||||
font-weight: 600;
|
||||
line-height: 50px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user