492 lines
10 KiB
Vue
492 lines
10 KiB
Vue
<template>
|
|
<section class="userRank">
|
|
<div class="area-content">
|
|
<AiAreaPicker :areaId="user.areaId" :value="areaId" @select="areaSelect" :name.sync="areaName" selectRoot>
|
|
<img src="./img/local-icon.png" alt="">
|
|
<span class="label" v-if="areaName">{{ areaName }}</span>
|
|
<span v-else>请选择</span>
|
|
<u-icon name="arrow-down" color="#666" size="24"/>
|
|
</AiAreaPicker>
|
|
</div>
|
|
<u-gap height="6"/>
|
|
<div class="fill" v-if="info['列表'] && info['列表'].length">
|
|
<div class="ranking-content" v-if="info['列表'] && info['列表'].length">
|
|
<div class="item" v-if="info['列表'].length > 1">
|
|
<img
|
|
src="https://cdn.cunwuyun.cn/dvcp/credit/2.png"
|
|
alt=""
|
|
class="top-img"
|
|
/>
|
|
<img
|
|
:src="info['列表'][1].photo"
|
|
alt=""
|
|
class="user-img mar-b4"
|
|
v-if="info['列表'][1].photo"
|
|
/>
|
|
<div class="user-name-bg mar-b4" v-else>
|
|
{{ formatName(info["列表"][1].name) }}
|
|
</div>
|
|
<p class="user-name mar-b8">
|
|
{{ info["列表"][1].name }}{{ tabIndex == 0 ? "家" : "" }}
|
|
</p>
|
|
<p class="item-num">{{ info["列表"][1].integral }}</p>
|
|
</div>
|
|
<div class="item-top item" v-if="info['列表'].length > 0">
|
|
<img
|
|
src="https://cdn.cunwuyun.cn/dvcp/credit/1.png"
|
|
alt=""
|
|
class="top-img-one"
|
|
/>
|
|
<img
|
|
:src="info['列表'][0].photo"
|
|
alt=""
|
|
class="user-img mar-b4"
|
|
v-if="info['列表'][0].photo"
|
|
/>
|
|
<div class="user-name-bg mar-b4" v-else>
|
|
{{ formatName(info["列表"][0].name) }}
|
|
</div>
|
|
<p class="user-name mar-b8">
|
|
{{ info["列表"][0].name }}{{ tabIndex == 0 ? "家" : "" }}
|
|
</p>
|
|
<p class="item-num">{{ info["列表"][0].integral }}</p>
|
|
</div>
|
|
<div class="item" v-if="info['列表'].length > 2">
|
|
<img
|
|
src="https://cdn.cunwuyun.cn/dvcp/credit/3.png"
|
|
alt=""
|
|
class="top-img"
|
|
/>
|
|
<img
|
|
:src="info['列表'][2].photo"
|
|
alt=""
|
|
class="user-img mar-b4"
|
|
v-if="info['列表'][2].photo"
|
|
/>
|
|
<div class="user-name-bg mar-b4" v-else>
|
|
{{ formatName(info["列表"][2].name) }}
|
|
</div>
|
|
<p class="user-name mar-b8">
|
|
{{ info["列表"][2].name }}{{ tabIndex == 0 ? "家" : "" }}
|
|
</p>
|
|
<p class="item-num">{{ info["列表"][2].integral }}</p>
|
|
</div>
|
|
</div>
|
|
<u-gap height="6"/>
|
|
<div class="ranking-list" v-if="info['列表'] && info['列表'].length">
|
|
<div
|
|
class="item"
|
|
v-for="(item, index) in info['列表']"
|
|
:key="index"
|
|
v-if="index > 2"
|
|
>
|
|
<span class="item-num">{{ index + 1 }}</span>
|
|
<img
|
|
:src="item.photo"
|
|
alt=""
|
|
class="user-img mar-b4"
|
|
v-if="item.photo"
|
|
/>
|
|
<div class="user-name-bg mar-b4 mar-r24" v-else>
|
|
{{ formatName(item.name) }}
|
|
</div>
|
|
<span class="item-name">{{ item.name }}{{ tabIndex == 0 ? "家" : "" }}</span>
|
|
<span class="item-point">{{ item.integral }}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<AiEmpty v-else/>
|
|
</section>
|
|
</template>
|
|
<script>
|
|
import {mapState} from 'vuex'
|
|
|
|
export default {
|
|
name: "userRank",
|
|
appName: "个人积分",
|
|
computed: {
|
|
...mapState(['user'])
|
|
},
|
|
props: {
|
|
showDetail: { //true 积分明细 false积分排行
|
|
type: Boolean
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
info: {},
|
|
current: 1,
|
|
list: [],
|
|
areaId: '',
|
|
areaName: '',
|
|
tabIndex: 1
|
|
}
|
|
},
|
|
created() {
|
|
this.areaId = this.user.areaId
|
|
this.areaName = this.user.areaName || ''
|
|
this.getInfo();
|
|
uni.$on("onShow", () => {
|
|
this.getInfo();
|
|
})
|
|
uni.$on("reachBottom1", () => {
|
|
if (this.list.length < 50) {
|
|
this.current++;
|
|
this.getInfo()
|
|
}
|
|
})
|
|
},
|
|
methods: {
|
|
areaSelect(e) {
|
|
this.areaId = e
|
|
this.getInfo()
|
|
},
|
|
// 积分排行
|
|
getInfo() {
|
|
this.info = {};
|
|
this.$http.post(`/app/appresident/rank-qw?type=${this.tabIndex}&areaId=${this.areaId}`).then((res) => {
|
|
if (res?.data) {
|
|
this.info = res.data;
|
|
}
|
|
});
|
|
},
|
|
formatName(name) {
|
|
if (name == undefined) {
|
|
return
|
|
}
|
|
return name.substr(name.length - 2, name.length > 2 ? (name.length - 1) : name.length)
|
|
},
|
|
},
|
|
destroyed() {
|
|
uni.$off("reachBottom1")
|
|
uni.$off("onShow")
|
|
}
|
|
}
|
|
</script>
|
|
<style scoped lang="scss">
|
|
.userRank {
|
|
width: 100vw;
|
|
background-color: #f3f6f9;
|
|
|
|
.bg-blue {
|
|
width: 100%;
|
|
height: 176px;
|
|
background-color: #3975C6;
|
|
}
|
|
|
|
.header-content {
|
|
width: 690px;
|
|
height: 256px;
|
|
background: #fff;
|
|
border-radius: 16px;
|
|
margin: -130px 0 40px 30px;
|
|
padding: 100px 60px 40px 60px;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
position: relative;
|
|
|
|
.item {
|
|
text-align: center;
|
|
z-index: 99;
|
|
|
|
.num {
|
|
font-family: DIN;
|
|
font-size: 52px;
|
|
font-weight: bold;
|
|
line-height: 60px;
|
|
}
|
|
|
|
.label {
|
|
font-size: 28px;
|
|
font-family: PingFangSC-Regular, PingFang SC;
|
|
color: #999;
|
|
line-height: 40px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.color-5AAD6A {
|
|
color: #5aad6a;
|
|
}
|
|
|
|
.color-4185F5 {
|
|
color: #4185f5;
|
|
}
|
|
|
|
.color-CD413A {
|
|
color: #cd413a;
|
|
}
|
|
}
|
|
|
|
img {
|
|
position: absolute;
|
|
width: 360px;
|
|
height: 250px;
|
|
top: -40px;
|
|
right: 0;
|
|
}
|
|
}
|
|
|
|
.ranking-content {
|
|
padding: 94px 30px 0;
|
|
.item {
|
|
display: inline-block;
|
|
width: 216px;
|
|
height: 320px;
|
|
box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
|
|
border-radius: 12px;
|
|
padding: 40px 0 0 0;
|
|
text-align: center;
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
vertical-align: top;
|
|
background: #fff;
|
|
|
|
.user-name {
|
|
font-size: 30px;
|
|
font-family: PingFang-SC-Medium, PingFang-SC;
|
|
font-weight: 500;
|
|
color: #333;
|
|
line-height: 42px;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.item-num {
|
|
font-size: 46px;
|
|
font-weight: 6000;
|
|
color: #2c51ce;
|
|
line-height: 54px;
|
|
}
|
|
|
|
.top-img {
|
|
width: 100%;
|
|
height: 34px;
|
|
position: absolute;
|
|
top: -11px;
|
|
left: 0;
|
|
}
|
|
}
|
|
|
|
.item-top {
|
|
margin: -46px 20px 0;
|
|
height: 366px;
|
|
|
|
.user-img {
|
|
width: 104px;
|
|
height: 104px;
|
|
}
|
|
|
|
.user-name-bg {
|
|
width: 104px;
|
|
height: 104px;
|
|
border-radius: 50%;
|
|
background-color: #4e8eee;
|
|
font-size: 28px;
|
|
line-height: 104px;
|
|
text-align: center;
|
|
color: #fff;
|
|
}
|
|
|
|
.top-img-one {
|
|
width: 100%;
|
|
position: absolute;
|
|
top: -22px;
|
|
left: 0;
|
|
height: 46px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.ranking-list {
|
|
background-color: #fff;
|
|
|
|
.item {
|
|
width: 100%;
|
|
height: 120px;
|
|
line-height: 120px;
|
|
background: #fff;
|
|
padding: 0 64px;
|
|
box-sizing: border-box;
|
|
|
|
.item-num {
|
|
display: inline-block;
|
|
width: 68px;
|
|
color: #858594;
|
|
font-size: 28px;
|
|
}
|
|
|
|
.user-img {
|
|
margin-right: 24px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.item-name {
|
|
color: #333;
|
|
font-size: 30px;
|
|
display: inline-block;
|
|
width: 240px;
|
|
}
|
|
|
|
.item-point {
|
|
display: inline-block;
|
|
width: 210px;
|
|
text-align: right;
|
|
font-size: 30px;
|
|
font-family: PingFangSC-Medium, PingFang SC;
|
|
font-weight: 500;
|
|
color: #333;
|
|
}
|
|
|
|
.mar-r24 {
|
|
margin-right: 24px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.user-img {
|
|
width: 80px;
|
|
height: 80px;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.user-name-bg {
|
|
display: inline-block;
|
|
width: 80px;
|
|
height: 80px;
|
|
border-radius: 50%;
|
|
background-color: #4e8eee;
|
|
font-size: 28px;
|
|
line-height: 80px;
|
|
text-align: center;
|
|
color: #fff;
|
|
}
|
|
|
|
.mar-b4 {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.mar-b8 {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.detail-content {
|
|
width: 690px;
|
|
background: #fff;
|
|
border-radius: 16px;
|
|
margin: 432px 0 0 32px;
|
|
padding: 30px 30px 94px;
|
|
box-sizing: border-box;
|
|
|
|
.title {
|
|
font-size: 34px;
|
|
font-family: PingFangSC-Medium, PingFang SC;
|
|
font-weight: 500;
|
|
color: #333;
|
|
line-height: 48px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.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-size: 36px;
|
|
font-family: PingFangSC-Semibold, PingFang SC;
|
|
font-weight: 600;
|
|
line-height: 50px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.color-0 {
|
|
color: #2c51ce !important;
|
|
}
|
|
|
|
.color-1 {
|
|
color: #e6736e !important;
|
|
}
|
|
|
|
.fixed-top {
|
|
z-index: 999;
|
|
}
|
|
|
|
.header-tab {
|
|
height: 96px;
|
|
background-color: #3975C6;
|
|
padding: 20px 0;
|
|
display: flex;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.header-tab .tab-item {
|
|
flex: 1;
|
|
text-align: center;
|
|
position: relative;
|
|
color: #fff;
|
|
font-size: 28px;
|
|
}
|
|
|
|
.header-tab .tab-active {
|
|
font-weight: 500;
|
|
}
|
|
|
|
.header-tab .active-line {
|
|
position: absolute;
|
|
width: 40px;
|
|
height: 4px;
|
|
background: #FFF;
|
|
top: 48px;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
.area-content {
|
|
padding: 32px;
|
|
background-color: #fff;
|
|
|
|
img {
|
|
width: 42px;
|
|
vertical-align: middle;
|
|
margin-right: 16px;
|
|
}
|
|
|
|
.u-icon {
|
|
margin-left: 6px;
|
|
}
|
|
}
|
|
|
|
|
|
::v-deep .content {
|
|
padding: 0;
|
|
}
|
|
}
|
|
</style>
|