perf:优化infoCard组件样式
This commit is contained in:
@@ -1,7 +1,8 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { ref } from "vue";
|
import { ref } from "vue";
|
||||||
|
|
||||||
const props = defineProps(["items", "header", "text", "hideDivider"]);
|
const props = defineProps(["items", "header", "text", "hideDivider", "height"]);
|
||||||
|
const height = ref(props.height + "px");
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
@@ -14,15 +15,16 @@ const props = defineProps(["items", "header", "text", "hideDivider"]);
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<slot name="content" />
|
<slot name="content" />
|
||||||
|
<el-scrollbar :height="height">
|
||||||
<div v-for="(item, i) in props.items">
|
<div v-for="(item, i) in props.items">
|
||||||
<div class="text item">
|
<div class="text item">
|
||||||
<slot name="item" v-bind="item" />
|
<slot name="item" v-bind="item" />
|
||||||
|
</div>
|
||||||
|
<el-divider
|
||||||
|
v-if="i != props.items.length - 1 && hideDivider == undefined"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<el-divider
|
</el-scrollbar>
|
||||||
v-if="i != props.items.length - 1 && hideDivider == undefined"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</el-card>
|
</el-card>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -47,5 +49,7 @@ const props = defineProps(["items", "header", "text", "hideDivider"]);
|
|||||||
|
|
||||||
.box-card {
|
.box-card {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
height: v-bind(height);
|
||||||
|
padding-bottom: 10px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -73,7 +73,12 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
|
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<InfoCard :items="pointList" header="本月排行" text="更多">
|
<InfoCard
|
||||||
|
:items="pointList"
|
||||||
|
header="本月排行"
|
||||||
|
text="更多"
|
||||||
|
height="400"
|
||||||
|
>
|
||||||
<template #item="temp">
|
<template #item="temp">
|
||||||
<PointsRanking :pointsData="temp" />
|
<PointsRanking :pointsData="temp" />
|
||||||
</template>
|
</template>
|
||||||
@@ -81,7 +86,12 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
|
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<InfoCard :items="friendList" header="推荐好友" text="更多">
|
<InfoCard
|
||||||
|
:items="friendList"
|
||||||
|
header="推荐好友"
|
||||||
|
text="更多"
|
||||||
|
height="400"
|
||||||
|
>
|
||||||
<template #item="temp">
|
<template #item="temp">
|
||||||
<RecommendFriend :friendData="temp" />
|
<RecommendFriend :friendData="temp" />
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -11,7 +11,16 @@
|
|||||||
<el-tag effect="light" type="success">{{ pointsData.level }}</el-tag>
|
<el-tag effect="light" type="success">{{ pointsData.level }}</el-tag>
|
||||||
</div>
|
</div>
|
||||||
<div class="bottom">
|
<div class="bottom">
|
||||||
{{ pointsData.userName }}
|
<div class="name">
|
||||||
|
<el-tooltip
|
||||||
|
class="box-item"
|
||||||
|
effect="dark"
|
||||||
|
:content="pointsData.userName"
|
||||||
|
placement="top"
|
||||||
|
>
|
||||||
|
{{ pointsData.userName }}
|
||||||
|
</el-tooltip>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="right">
|
<div class="right">
|
||||||
@@ -95,12 +104,16 @@ const userImageSrc = computed(() => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
.bottom {
|
.bottom {
|
||||||
width: 200px;
|
width: 180px;
|
||||||
color: #252933;
|
.name {
|
||||||
margin-left: 5px;
|
cursor: pointer;
|
||||||
white-space: nowrap;
|
width: 100%;
|
||||||
overflow: hidden;
|
color: #252933;
|
||||||
text-overflow: ellipsis;
|
margin-left: 5px;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.right {
|
.right {
|
||||||
|
|||||||
Reference in New Issue
Block a user