2023-12-14 10:15:23 +08:00
|
|
|
|
<template>
|
2023-12-20 21:52:42 +08:00
|
|
|
|
<div class="home-box">
|
2023-12-14 10:15:23 +08:00
|
|
|
|
<el-row :gutter="20" class="top-div">
|
|
|
|
|
|
<el-col :span="17">
|
|
|
|
|
|
<div class="scrollbar">
|
|
|
|
|
|
<ScrollbarInfo />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<el-row class="left-div">
|
|
|
|
|
|
<el-col
|
|
|
|
|
|
:span="8"
|
|
|
|
|
|
v-for="i in plateList"
|
|
|
|
|
|
class="plate"
|
|
|
|
|
|
:style="{
|
|
|
|
|
|
'padding-left': i % 3 == 1 ? 0 : 0.2 + 'rem',
|
|
|
|
|
|
'padding-right': i % 3 == 0 ? 0 : 0.2 + 'rem',
|
|
|
|
|
|
}"
|
|
|
|
|
|
>
|
|
|
|
|
|
<PlateCard
|
|
|
|
|
|
:name="i.name"
|
|
|
|
|
|
:introduction="i.introduction"
|
|
|
|
|
|
:id="i.id"
|
2023-12-20 23:29:55 +08:00
|
|
|
|
:isPublish="i.isDisableCreateDiscuss"
|
2023-12-14 10:15:23 +08:00
|
|
|
|
/>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
|
|
<el-col :span="24" v-for="i in discussList">
|
|
|
|
|
|
<DisscussCard :discuss="i" />
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
|
<el-empty
|
|
|
|
|
|
v-show="discussList.length <= 0"
|
|
|
|
|
|
description="推荐位置,空空如也"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
|
|
<el-col :span="7">
|
|
|
|
|
|
<el-row class="right-div">
|
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
|
<el-carousel trigger="click" height="150px">
|
|
|
|
|
|
<el-carousel-item v-for="item in bannerList">
|
|
|
|
|
|
<div class="carousel-font" :style="{ color: item.color }">
|
|
|
|
|
|
{{ item.name }}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<el-image
|
|
|
|
|
|
style="width: 100%; height: 100%"
|
|
|
|
|
|
:src="item.logo"
|
|
|
|
|
|
fit="cover"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-carousel-item>
|
|
|
|
|
|
</el-carousel>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
|
<InfoCard header="访问统计" class="VisitsLineChart" text="详情">
|
|
|
|
|
|
<template #content>
|
|
|
|
|
|
<VisitsLineChart :option="statisOptions" class="statisChart" />
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</InfoCard>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
|
<InfoCard header="简介" text="详情">
|
|
|
|
|
|
<template #content>
|
|
|
|
|
|
<div class="introduce">
|
|
|
|
|
|
没有什么能够阻挡,人类对代码<span style="color: #1890ff"
|
|
|
|
|
|
>优雅</span
|
|
|
|
|
|
>的追求
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</InfoCard>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
|
<InfoCard :items="items" header="本月排行" text="更多">
|
|
|
|
|
|
<template #item="temp">
|
|
|
|
|
|
<AvatarInfo>
|
|
|
|
|
|
<template #bottom> 本月积分:290 </template>
|
|
|
|
|
|
</AvatarInfo>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</InfoCard>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
|
<InfoCard :items="items" header="推荐好友" text="更多">
|
|
|
|
|
|
<template #item="temp">
|
|
|
|
|
|
<AvatarInfo />
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</InfoCard>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
|
|
<el-col :span="24" style="background: transparent">
|
|
|
|
|
|
<BottomInfo />
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
|
|
import { onMounted, ref, reactive, computed } from "vue";
|
|
|
|
|
|
import DisscussCard from "@/components/DisscussCard.vue";
|
|
|
|
|
|
import InfoCard from "@/components/InfoCard.vue";
|
|
|
|
|
|
import PlateCard from "@/components/PlateCard.vue";
|
|
|
|
|
|
import ScrollbarInfo from "@/components/ScrollbarInfo.vue";
|
|
|
|
|
|
import AvatarInfo from "@/components/AvatarInfo.vue";
|
|
|
|
|
|
import BottomInfo from "@/components/BottomInfo.vue";
|
|
|
|
|
|
import VisitsLineChart from "./components/VisitsLineChart.vue";
|
|
|
|
|
|
|
|
|
|
|
|
import { access } from "@/apis/accessApi.js";
|
|
|
|
|
|
import { getList } from "@/apis/plateApi.js";
|
|
|
|
|
|
import { getList as bannerGetList } from "@/apis/bannerApi.js";
|
2023-12-20 21:14:55 +08:00
|
|
|
|
import { getHomeDiscuss } from "@/apis/discussApi.js";
|
2023-12-14 10:15:23 +08:00
|
|
|
|
import { getWeek } from "@/apis/accessApi.js";
|
|
|
|
|
|
|
|
|
|
|
|
var plateList = ref([]);
|
|
|
|
|
|
var discussList = ref([]);
|
|
|
|
|
|
var bannerList = ref([]);
|
|
|
|
|
|
const weekList = ref([]);
|
|
|
|
|
|
|
|
|
|
|
|
const items = [{ user: "用户1" }, { user: "用户2" }, { user: "用户3" }];
|
|
|
|
|
|
//主题查询参数
|
|
|
|
|
|
const query = reactive({
|
|
|
|
|
|
skipCount: 1,
|
|
|
|
|
|
maxResultCount: 10,
|
|
|
|
|
|
isTop: true,
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
//初始化
|
|
|
|
|
|
onMounted(async () => {
|
|
|
|
|
|
access();
|
|
|
|
|
|
const { data: plateData } = await getList();
|
|
|
|
|
|
plateList.value = plateData.items;
|
2023-12-20 21:14:55 +08:00
|
|
|
|
const { data: discussData } = await getHomeDiscuss();
|
|
|
|
|
|
discussList.value = discussData;
|
2023-12-14 10:15:23 +08:00
|
|
|
|
const { data: bannerData } = await bannerGetList();
|
|
|
|
|
|
bannerList.value = bannerData.items;
|
|
|
|
|
|
const { data: weekData } = await getWeek();
|
|
|
|
|
|
weekList.value = weekData;
|
|
|
|
|
|
});
|
|
|
|
|
|
|
2023-12-16 17:47:44 +08:00
|
|
|
|
const weekXAxis = ["周一", "周二", "周三", "周四", "周五", "周六", "周日"];
|
2023-12-14 10:15:23 +08:00
|
|
|
|
// 访问统计
|
|
|
|
|
|
const statisOptions = computed(() => {
|
|
|
|
|
|
return {
|
|
|
|
|
|
xAxis: {
|
2023-12-16 17:47:44 +08:00
|
|
|
|
data: weekList.value.map((item, index) => {
|
|
|
|
|
|
return weekXAxis.filter((v, vIndex) => {
|
|
|
|
|
|
return vIndex === index;
|
|
|
|
|
|
})[0];
|
|
|
|
|
|
}),
|
2023-12-14 10:15:23 +08:00
|
|
|
|
},
|
|
|
|
|
|
series: {
|
|
|
|
|
|
data: weekList.value.map((item) => item.number),
|
|
|
|
|
|
},
|
|
|
|
|
|
};
|
|
|
|
|
|
});
|
|
|
|
|
|
</script>
|
2023-12-20 21:52:42 +08:00
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
|
.home-box {
|
2023-12-14 10:15:23 +08:00
|
|
|
|
width: 100%;
|
2023-12-20 21:52:42 +08:00
|
|
|
|
height: 100%;
|
|
|
|
|
|
.introduce {
|
|
|
|
|
|
color: rgba(0, 0, 0, 0.45);
|
|
|
|
|
|
font-size: small;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.plate {
|
|
|
|
|
|
background: transparent !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.left-div .el-col {
|
|
|
|
|
|
background-color: #ffffff;
|
|
|
|
|
|
|
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.right-div .el-col {
|
|
|
|
|
|
background-color: #ffffff;
|
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.carousel-font {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
z-index: 1;
|
|
|
|
|
|
top: 10%;
|
|
|
|
|
|
left: 10%;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.top-div {
|
|
|
|
|
|
padding-top: 0.5rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.scrollbar {
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
.VisitsLineChart >>> .el-card__body {
|
|
|
|
|
|
padding: 0.5rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.statisChart {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 300px;
|
|
|
|
|
|
}
|
2023-12-14 10:15:23 +08:00
|
|
|
|
}
|
|
|
|
|
|
</style>
|