|
@@ -0,0 +1,195 @@
|
|
|
+<script setup name="TheChartItem">
|
|
|
+import { computed, h } from "vue";
|
|
|
+import { getPicUrl } from "~/utils/util";
|
|
|
+
|
|
|
+const Props = defineProps({
|
|
|
+ nickname: {
|
|
|
+ type: String,
|
|
|
+ },
|
|
|
+ signature: {
|
|
|
+ type: String
|
|
|
+ },
|
|
|
+ idx: {
|
|
|
+ type: Number
|
|
|
+ },
|
|
|
+ type: {
|
|
|
+ type: String,
|
|
|
+ validator: key => (['score', 'essence', 'like'].includes(key)),
|
|
|
+ required: true
|
|
|
+ }
|
|
|
+})
|
|
|
+
|
|
|
+const __score_comp__ = () => {
|
|
|
+ return h("img", {
|
|
|
+ class: ['score-top'],
|
|
|
+ src: getPicUrl(`../../assets/cicons/score-${Props.idx}.png`, import.meta.url)
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+const __common_comp__ = (ops) => {
|
|
|
+ const level = [undefined, 'Ⅰ', 'Ⅱ', 'Ⅲ'][Props.idx]
|
|
|
+ return h("div", {
|
|
|
+ class: [`${ops.className}-top`, `c${Props.idx}`]
|
|
|
+ }, [
|
|
|
+ h("img", {
|
|
|
+ src: getPicUrl(ops.pic, import.meta.url)
|
|
|
+ }),
|
|
|
+ h("span", `${ops.title} ${level}`)
|
|
|
+ ])
|
|
|
+}
|
|
|
+
|
|
|
+// 渲染Item `right component`组件
|
|
|
+const rendeTop = computed(() => {
|
|
|
+ switch (Props.type) {
|
|
|
+ case 'score':
|
|
|
+ return __score_comp__()
|
|
|
+ case 'essence':
|
|
|
+ return __common_comp__({
|
|
|
+ pic: '../../assets/cicons/essence.png',
|
|
|
+ className: 'essence',
|
|
|
+ title: '优质作者'
|
|
|
+ })
|
|
|
+ case 'like':
|
|
|
+ return __common_comp__({
|
|
|
+ pic: '../../assets/cicons/like.png',
|
|
|
+ className: 'like',
|
|
|
+ title: '点赞大师'
|
|
|
+ })
|
|
|
+ }
|
|
|
+})
|
|
|
+</script>
|
|
|
+<template>
|
|
|
+ <div class="the-charts-item-container flex-row flex-aic flex-jc-sb">
|
|
|
+ <div class="main flex-row flex-aic">
|
|
|
+ <img src="https://dummyimage.com/38x38/e3e3e3/fff" alt="" class="avatar">
|
|
|
+ <div class="info">
|
|
|
+ <div class="nickname">{{ nickname }}</div>
|
|
|
+ <div class="signature">{{ signature }}</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <!-- 三种类型
|
|
|
+ 积分排行、精华帖排行、点赞排行
|
|
|
+ 前三有个人 flag
|
|
|
+ -->
|
|
|
+ <div class="foote">
|
|
|
+ <template v-if="idx <= 3">
|
|
|
+ <component :is="rendeTop"></component>
|
|
|
+ </template>
|
|
|
+ <template v-else>
|
|
|
+ <span :class="`${type}-default`">{{ idx }}</span>
|
|
|
+ </template>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<style lang="scss">
|
|
|
+.the-charts-item-container {
|
|
|
+ padding: 20px 0;
|
|
|
+ border-bottom: 1px solid #F5F5F5;
|
|
|
+
|
|
|
+ &:last-child {
|
|
|
+ border-bottom: initial;
|
|
|
+ }
|
|
|
+
|
|
|
+ .main {
|
|
|
+ .avatar {
|
|
|
+ border-radius: 50%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .info {
|
|
|
+ padding-left: 8px;
|
|
|
+
|
|
|
+ .nickname {
|
|
|
+ width: 98px;
|
|
|
+ height: 20px;
|
|
|
+ font-size: 14px;
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
+ font-weight: 500;
|
|
|
+ color: #333333;
|
|
|
+ line-height: 20px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .signature {
|
|
|
+ width: 192px;
|
|
|
+ height: 17px;
|
|
|
+ font-size: 12px;
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #999999;
|
|
|
+ line-height: 17px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .foote {
|
|
|
+ >span {
|
|
|
+ display: inline-block;
|
|
|
+ }
|
|
|
+
|
|
|
+ .score {
|
|
|
+ &-top {
|
|
|
+ width: 30px;
|
|
|
+ height: 19px;
|
|
|
+ }
|
|
|
+
|
|
|
+ &-default {
|
|
|
+ width: 30px;
|
|
|
+ text-align: center;
|
|
|
+ font-size: 16px;
|
|
|
+ font-family: SFPro, SFPro;
|
|
|
+ font-weight: 500;
|
|
|
+ color: #666666;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .essence,
|
|
|
+ .like {
|
|
|
+ &-top {
|
|
|
+ width: 90px;
|
|
|
+ height: 26px;
|
|
|
+ line-height: 26px;
|
|
|
+ background-color: #eee;
|
|
|
+ border-radius: 50px;
|
|
|
+ text-align: center;
|
|
|
+
|
|
|
+ &.c {
|
|
|
+ &1 {
|
|
|
+ background-color: rgba(255, 171, 26, 1);
|
|
|
+ }
|
|
|
+
|
|
|
+ &2 {
|
|
|
+ background-color: rgba(134, 192, 255, 1);
|
|
|
+ }
|
|
|
+
|
|
|
+ &3 {
|
|
|
+ background-color: rgba(252, 184, 145, 1);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ img {
|
|
|
+ width: 16px;
|
|
|
+ height: 16px;
|
|
|
+ vertical-align: middle;
|
|
|
+ }
|
|
|
+
|
|
|
+ span {
|
|
|
+ margin-left: 3px;
|
|
|
+ font-size: 12px;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #FFFFFF;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .essence-default,
|
|
|
+ .like-default {
|
|
|
+ height: 19px;
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: 500;
|
|
|
+ color: #666666;
|
|
|
+ line-height: 19px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+}
|
|
|
+</style>
|