Files
dvcp_v2_wxcp_app/src/project/qianxinan/AppGirdIntegral/AppGirdIntegral.vue

224 lines
5.1 KiB
Vue
Raw Normal View History

2022-12-22 16:35:53 +08:00
<template>
<div class="AppGirdIntegral">
<AiTopFixed>
2022-12-23 10:49:20 +08:00
<div class="header">
<div class="header-bg"></div>
<img src="./img/header-top.png" alt="" class="header-top-img" />
<div class="header-content">
<p class="text">个人积分</p>
<h2>297</h2>
<div class="flex">
<div class="flex-item">
<p class="text">个人积分</p>
<div>97</div>
</div>
<div class="flex-item">
<p class="text">积分排名</p>
<div>97</div>
</div>
<span class="border-line"></span>
</div>
</div>
</div>
2022-12-22 16:35:53 +08:00
</AiTopFixed>
2022-12-23 10:49:20 +08:00
<div class="list-data">
<div class="title">积分明细</div>
<div class="item">
<div class="flex-left">
<p>完善居民信息</p>
<div>2022-08-18 13:45:36</div>
</div>
<div class="flex-right status0">20</div>
</div>
<!-- <AiEmpty v-if="!list.length"></AiEmpty> -->
2022-12-22 16:35:53 +08:00
</div>
2022-12-23 10:49:20 +08:00
2022-12-22 16:35:53 +08:00
</div>
</template>
<script>
import { mapState } from 'vuex'
export default {
appName: '网格员积分',
data() {
return {
current: 1,
list: [],
}
},
computed: {
...mapState(['user']),
},
created() {
this.$dict.load("workTaskType").then(() => {
this.getList()
})
uni.$on('getList', () => {
this.current = 1
this.getList()
})
},
onShow() {
document.title = '网格员积分'
this.current = 1
this.getList()
},
methods: {
getList() {
this.$http.post("/app/appworktaskinfo/list", null, {
params: {
...this.map(this.index),
size: 10,
current: this.current
}
}).then(res => {
if (res && res.data) {
if (this.current > 1 && this.current > res.data.pages) {
this.status = "已经到底啦"
}
this.list = this.current > 1 ? [...this.list, ...res.data.records] : res.data.records
}
})
}
},
onReachBottom() {
this.current = this.current + 1;
this.getList()
}
}
</script>
<style lang="scss" scoped>
.AppGirdIntegral {
min-height: 100%;
background-color: #F5F5F5;
padding-bottom: 32px;
::v-deep .content {
padding: 0;
}
2022-12-23 10:49:20 +08:00
.header {
position: relative;
.header-bg {
height: 272px;
background-color: #3975C6;
}
img {
width: 342px;
height: 218px;
position: absolute;
top: 18px;
right: 40px;
z-index: 99;
}
.header-content {
width: 686px;
background: #FFF;
border-radius: 16px;
position: absolute;
top: 72px;
left: 32px;
text-align: center;
padding-top: 76px;
.text {
font-family: PingFangSC-Regular;
font-size: 28px;
color: #999;
line-height: 40px;
}
h2 {
font-family: DINAlternate-Bold;
font-weight: 700;
font-size: 104px;
color: #000;
margin-bottom: 30px;
}
.flex {
display: flex;
padding-bottom: 50px;
position: relative;
.flex-item {
flex: 1;
text-align: center;
div {
font-family: PingFangSC-Medium;
font-weight: 500;
font-size: 36px;
color: #000;
margin-top: 4px;
line-height: 50px;
}
}
.border-line {
position: absolute;
left: 50%;
top: 14px;
height: 60px;
border-right: 1px solid #EDEDED;
}
}
}
}
2022-12-22 16:35:53 +08:00
.list-data {
box-sizing: border-box;
2022-12-23 10:49:20 +08:00
margin: 256px 32px 0 32px;
background-color: #fff;
border-radius: 16px;
padding: 0 24px 52px;
.title {
line-height: 108px;
padding-left: 8px;
font-family: PingFangSC-Medium;
font-weight: 500;
font-size: 34px;
color: #333;
}
.item {
display: flex;
border-bottom: 1px solid #D8DDE6;
padding: 32px 0;
.flex-left {
width: calc(100% - 160px);
p {
font-family: PingFangSC-Regular;
font-size: 32px;
color: #333;
line-height: 44px;
word-break: break-all;
margin-bottom: 8px;
}
div {
line-height: 34px;
font-family: PingFangSC-Regular;
font-size: 24px;
color: #999;
letter-spacing: -0.29px;
}
}
.flex-right {
margin-top: 18px;
line-height: 50px;
font-family: PingFangSC-SNaNpxibold;
font-weight: 600;
font-size: 36px;
color: #2C51CE;
width: 160px;
text-align: right;
}
.status0 {
color: #2C51CE;
}
.statsu1 {
color: #E6736E;
}
}
2022-12-22 16:35:53 +08:00
}
}
</style>