|
@@ -0,0 +1,331 @@
|
|
|
+<script setup>
|
|
|
+import { computed, onMounted, ref } from "vue";
|
|
|
+import { varietyData, informationData, reportData } from "./staticData.js";
|
|
|
+import { useRouter } from "vue-router";
|
|
|
+
|
|
|
+let report = ref(null); //报告页面的dom
|
|
|
+let icon_more_path = new URL("../../assets/icon-more.png", import.meta.url)
|
|
|
+ .href; //查看更多的icon
|
|
|
+let activeTab = ref("宏观经济"); //默认激活的nav
|
|
|
+let activeSubTab = ref("宏观"); //默认激活的subnav
|
|
|
+let varietySubData = computed(() => {
|
|
|
+ //subnav
|
|
|
+ return varietyData.find((i) => i.label === activeTab.value).child;
|
|
|
+});
|
|
|
+let showMore = false; //是否展示加载更多按钮
|
|
|
+const checkMore = () => {
|
|
|
+ //检查reportData长度是否超过el-main的clientHeight
|
|
|
+ //reportData-item的minHeight为(125*childNum+56)
|
|
|
+};
|
|
|
+const router = useRouter();
|
|
|
+const toClassPage = () => {
|
|
|
+ //跳转至研报分类页
|
|
|
+ router.push({ name: "ReportClassify" });
|
|
|
+};
|
|
|
+const changeTab = (className, item) => {
|
|
|
+ if (className === "main") {
|
|
|
+ activeTab.value = item.label;
|
|
|
+ activeSubTab.value = item.child[0].label;
|
|
|
+ } else {
|
|
|
+ activeSubTab.value = item.label;
|
|
|
+ }
|
|
|
+};
|
|
|
+onMounted(() => {});
|
|
|
+</script>
|
|
|
+<template>
|
|
|
+ <div class="report-list-page" ref="report">
|
|
|
+ <div class="report-main">
|
|
|
+ <div class="nav-wrap">
|
|
|
+ <div class="main-nav">
|
|
|
+ <div
|
|
|
+ class="main-nav-item"
|
|
|
+ :class="{ active: activeTab === item.label }"
|
|
|
+ v-for="item in varietyData"
|
|
|
+ :key="item.label"
|
|
|
+ @click="changeTab('main', item)"
|
|
|
+ >
|
|
|
+ {{ item.label }}
|
|
|
+ </div>
|
|
|
+ <div class="more" @click="toClassPage">
|
|
|
+ <span>查看更多</span>
|
|
|
+ <img :src="icon_more_path" class="more-img" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="sub-nav">
|
|
|
+ <div
|
|
|
+ class="sub-nav-item"
|
|
|
+ v-for="item in varietySubData"
|
|
|
+ :key="item.label"
|
|
|
+ :class="{ active: activeSubTab === item.label }"
|
|
|
+ @click="changeTab('sub', item)"
|
|
|
+ >
|
|
|
+ {{ item.label }}
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="container">
|
|
|
+ <div
|
|
|
+ class="report-item"
|
|
|
+ v-for="item in reportData"
|
|
|
+ :key="item.timeLabel"
|
|
|
+ >
|
|
|
+ <div class="item-title">{{ item.timeLabel }}</div>
|
|
|
+ <div class="time-point-wrap">
|
|
|
+ <div
|
|
|
+ class="time-point-item"
|
|
|
+ v-for="point in item.child"
|
|
|
+ :key="point.timeLabel"
|
|
|
+ >
|
|
|
+ <div class="point-time">{{ point.timeLabel }}</div>
|
|
|
+ <div class="point-title">{{ point.title }}</div>
|
|
|
+ <div class="point-content">{{ point.abstract }}</div>
|
|
|
+ <div class="point-tab" v-for="tab in point.label" :key="tab">
|
|
|
+ #{{ tab }}
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="check-more" v-if="showMore">加载更多</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="report-aside">
|
|
|
+ <div class="aside-item">
|
|
|
+ <div class="aside-title">最新资讯</div>
|
|
|
+ <div class="infomation-wrap">
|
|
|
+ <div
|
|
|
+ class="infomation-item"
|
|
|
+ v-for="item in informationData"
|
|
|
+ :key="item.title"
|
|
|
+ >
|
|
|
+ <div class="item-title">{{ item.title }}</div>
|
|
|
+ <div class="item-content">{{ item.no }}|{{ item.main }}</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="aside-item">
|
|
|
+ <div class="aside-title" style="margin-top:60px;">上新公告</div>
|
|
|
+ <div class="annoucement">
|
|
|
+ <div class="title">行业调研</div>
|
|
|
+ <p class="content">带您感知最微观的行业变化</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+$bg-color: #f6f6f6;
|
|
|
+$active-color: #f3a52f;
|
|
|
+.report-list-page {
|
|
|
+ .report-main {
|
|
|
+ margin-right: 220px;
|
|
|
+ margin-left: -20px;
|
|
|
+ .nav-wrap {
|
|
|
+ padding: 10px 30px;
|
|
|
+ box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04);
|
|
|
+ .main-nav {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ .main-nav-item {
|
|
|
+ cursor: pointer;
|
|
|
+ width: 140px;
|
|
|
+ height: 40px;
|
|
|
+ background-color: $bg-color;
|
|
|
+ color: #333333;
|
|
|
+ box-sizing: border-box;
|
|
|
+ text-align: center;
|
|
|
+ line-height: 40px;
|
|
|
+ border-radius: 20px;
|
|
|
+ border: 1px solid $bg-color;
|
|
|
+ transition: 0.3s;
|
|
|
+ &.active,
|
|
|
+ &:hover {
|
|
|
+ background-color: #fffbf5;
|
|
|
+ color: $active-color;
|
|
|
+ border: 1px solid $active-color;
|
|
|
+ box-shadow: 0px 6px 7px #fff7eb;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .more {
|
|
|
+ cursor: pointer;
|
|
|
+ align-self: center;
|
|
|
+ color: $active-color;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ .more-img {
|
|
|
+ width: 16px;
|
|
|
+ height: 16px;
|
|
|
+ margin-left: 6px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .sub-nav {
|
|
|
+ margin-top: 30px;
|
|
|
+ margin-bottom: 2px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: left;
|
|
|
+ .sub-nav-item {
|
|
|
+ cursor: pointer;
|
|
|
+ color: #666666;
|
|
|
+ margin-right: 30px;
|
|
|
+ transition: 0.3s;
|
|
|
+ &:last-child {
|
|
|
+ margin-right: 0;
|
|
|
+ }
|
|
|
+ &.active,
|
|
|
+ &:hover {
|
|
|
+ color: $active-color;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .container {
|
|
|
+ padding: 30px;
|
|
|
+ .report-item {
|
|
|
+ margin-top: 20px;
|
|
|
+ &:first-child {
|
|
|
+ margin-top: 0;
|
|
|
+ }
|
|
|
+ .item-title {
|
|
|
+ color: #333333;
|
|
|
+ }
|
|
|
+ .time-point-wrap {
|
|
|
+ margin-top: 20px;
|
|
|
+ .time-point-item {
|
|
|
+ position: relative;
|
|
|
+ margin: 35px 0 0 35px;
|
|
|
+ &:first-child {
|
|
|
+ margin-top: 20px;
|
|
|
+ }
|
|
|
+ &:last-child {
|
|
|
+ &::after {
|
|
|
+ height: calc(100% - 16px);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ &::before {
|
|
|
+ position: absolute;
|
|
|
+ top: 5px;
|
|
|
+ left: -32px;
|
|
|
+ content: "";
|
|
|
+ width: 8px;
|
|
|
+ height: 8px;
|
|
|
+ border-radius: 50%;
|
|
|
+ background-color: $active-color;
|
|
|
+ box-shadow: 0 0 0 4px rgb(250, 219, 172);
|
|
|
+ }
|
|
|
+ &::after {
|
|
|
+ position: absolute;
|
|
|
+ top: 16px;
|
|
|
+ left: -28px;
|
|
|
+ content: "";
|
|
|
+ width: 1px;
|
|
|
+ height: calc(100% + 35px);
|
|
|
+ background-color: $active-color;
|
|
|
+ }
|
|
|
+ .point-time,
|
|
|
+ .point-content {
|
|
|
+ margin-bottom: 10px;
|
|
|
+ font-size: 14px;
|
|
|
+ color: #666666;
|
|
|
+ }
|
|
|
+ .point-time {
|
|
|
+ &::before {
|
|
|
+ content: "";
|
|
|
+ display: inline-block;
|
|
|
+ margin-left: -20px;
|
|
|
+ margin-bottom: 4px;
|
|
|
+ width: 20px;
|
|
|
+ height: 1px;
|
|
|
+ background-color: $active-color;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .point-title {
|
|
|
+ color: #333333;
|
|
|
+ margin-bottom: 10px;
|
|
|
+ }
|
|
|
+ .point-tab {
|
|
|
+ display: inline-block;
|
|
|
+ font-size: 14px;
|
|
|
+ color: $active-color;
|
|
|
+ margin-top: 10px;
|
|
|
+ margin-right: 30px;
|
|
|
+ &:last-child {
|
|
|
+ margin-right: 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .report-aside {
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ right: 0;
|
|
|
+ width: 240px;
|
|
|
+ height: 100%;
|
|
|
+ box-sizing: border-box;
|
|
|
+ padding: 102px 30px;
|
|
|
+ border-left: 2px solid #f2f2f2;
|
|
|
+ .aside-title {
|
|
|
+ font-size: 18px;
|
|
|
+ color: #333333;
|
|
|
+ &::before {
|
|
|
+ content: "";
|
|
|
+ display: inline-block;
|
|
|
+ width: 3px;
|
|
|
+ height: 17px;
|
|
|
+ background-color: $active-color;
|
|
|
+ margin-right: 10px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .infomation-wrap {
|
|
|
+ margin-top: 20px;
|
|
|
+ font-size: 14px;
|
|
|
+ .infomation-item {
|
|
|
+ margin-top: 20px;
|
|
|
+ padding-bottom: 12px;
|
|
|
+ border-bottom: 1px solid #f2f2f2;
|
|
|
+ cursor: pointer;
|
|
|
+ .item-title {
|
|
|
+ color: #333333;
|
|
|
+ margin-bottom: 10px;
|
|
|
+ }
|
|
|
+ .item-content {
|
|
|
+ color: #666666;
|
|
|
+ }
|
|
|
+ &:hover {
|
|
|
+ .item-title,
|
|
|
+ .item-content {
|
|
|
+ color: $active-color;
|
|
|
+ transition: 0.3s;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .annoucement{
|
|
|
+ margin-top: 20px;
|
|
|
+ padding:18px;
|
|
|
+ height:110px;
|
|
|
+ border: 1px solid black;
|
|
|
+ border-radius: 5px;
|
|
|
+ background: no-repeat center/cover url("../../assets/announce-pic.png") ;
|
|
|
+ /* background-image: url("../../assets/announce-pic.png");
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-position: center;
|
|
|
+ background-size: cover; */
|
|
|
+ .title{
|
|
|
+ color: #CFC09F;
|
|
|
+ font-size: 18px;
|
|
|
+ }
|
|
|
+ .content{
|
|
|
+ color: #CFC09F;
|
|
|
+ line-height: 18px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|