123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576 |
- <template>
- <div class="home">
- <div class="home-page" id="home-page">
- <div class="carousel">
- <n-carousel :autoplay="true" :interval="3000">
- <template v-for="item in carouselList" :key="item">
- <n-carousel-item>
- <div class="img">
- <img class="carousel-img" :src="BaseUrl+'/carousel/'+item.name" />
- </div>
- <div class="desc">
- <div class="slogan">
- <h3 class="wow fadeInLeft">{{ item.title }}</h3>
- <!-- <h3 class="mywow animate__fadeInLeft animate-duration-0.3s animate__animated">{{ item.title }}</h3> -->
- <p class="wow fadeInRight">{{ item.desc }}</p>
- </div>
- </div>
- </n-carousel-item>
- </template>
- </n-carousel>
- </div>
- </div>
- <!--报告类别-->
- <div class="reports-category" id="reports-category">
- <div class="container">
- <div class="report-title title wow fadeInUp" data-wow-duration="3s" data-wow-iteration="1" data-wow-offset="30">
- <h2>{{$t('home.report.title')}}</h2>
- </div>
- <div class="reports-category-box wow fadeInDown" data-wow-duration="3s" data-wow-iteration="1" data-wow-offset="30">
- <template v-for="vo in reportDict" :key="vo">
- <div class="rcb-box">
- <!--handleReport-->
- <a :href="(lang === 'zh-CN'?'':'/en')+'/report-industries/'+vo.dictValue" class="rcb-item">
- <n-card size="medium">
- <span :class="vo.dictIcon" class="f70"></span>
- <span class="rcb-text">{{ vo.dictLabel }}</span>
- </n-card>
- </a>
- </div>
- </template>
- </div>
- </div>
- </div>
- <!--研究分析报告-->
- <div class="report">
- <div class="container">
- <div class="report-title title wow fadeInUp" data-wow-duration="2s" data-wow-iteration="1">
- <h2>{{ $t('home.report.sndtitle') }}</h2>
- </div>
- <div class="report-content wow fadeInDown" data-wow-duration="2s" data-wow-iteration="1">
- <template v-for="item in reports" :key="item">
- <div class="report-box">
- <n-card size="medium" content-style="display:flex">
- <div class="img">
- <img :src="BaseUrl+'/report/'+item.fileName" />
- </div>
- <div class="text">
- <h4><a :href="(lang === 'zh-CN'?'': '/en')+'/reports/'+item.webTitle+'-'+item.id">{{ item.title }}</a></h4>
- <span>{{ item.publishDate }}</span>
- <div class="show">
- <a @click="viewReportDetail(item)"><n-icon :component="MdEye" size="16" />{{$t('home.report.look')}}</a>
- <a @click="reportDetail" class="more"><n-icon :component="MdReorder" size="16" />{{$t('home.report.more')}}</a>
- </div>
- </div>
- </n-card>
- </div>
- </template>
- </div>
- </div>
- </div>
- <!--市场资讯-->
- <div class="hot-news" id="hot-news">
- <div class="container">
- <div class="news-title title wow fadeInUp" data-wow-duration="2s">
- <h2>{{ $t('home.news.title') }}</h2>
- </div>
- <div class="news-content">
- <template v-for="item in markets" :key="item">
- <div class="news-box wow fadeInDown" data-wow-duration="2s" data-wow-delay="0s" data-wow-offset="0">
- <div class="image">
- <a><img :src="BaseUrl+'/fileupload/'+item.filePath+item.fileName" /></a>
- </div>
- <div class="box-content">
- <a @click="viewNewsDetail(item)">
- <h3>{{ item.title }}</h3>
- </a>
- <p>{{ item.publishDate }}</p>
- </div>
- </div>
- </template>
- </div>
- </div>
- </div>
- <div class="home-contact" id="home-contact">
- <div class="contact-row wow fadeInDown" data-wow-duration="2s" data-wow-delay="0s" data-wow-offset="0">
- <div class="contact-txt">
- <span>{{$t('home.custom.sndtitle')}}</span>
- </div>
- <div class="contact-btn">
- <a @click="handleContact">{{ $t('report.detail.custom') }}</a>
- </div>
- </div>
- <div class="contact-img wow fadeInUp" data-wow-duration="2s" data-wow-delay="0s" data-wow-offset="0">
- <img src="@/assets/images/swtp.jpg" />
- </div>
- </div>
- <n-modal :show="demandShow" preset="dialog" :title="$t('report.detail.subscribe')" @close="demandShow = false" @esc="demandShow = false" @mask-click="demandShow = false" :style="'min-width: 40%'">
- <demand @closeDialog="handleCloseDiag" />
- </n-modal>
- </div>
- </template>
- <script setup>
- import { useI18n } from "#imports"
- import { onMounted, ref } from "vue";
- import { useRouter } from "vue-router";
- import { useUserStore } from "@/store/user";
- import { MdEye, MdReorder, MdSearch } from "@vicons/ionicons4";
- const config = useRuntimeConfig();
- const BaseUrl = ref(config.public.baseUrl);
- const { t } = useI18n();
- const carouselList = ref(); // 轮播图数据
- const reports = ref(); //研究报告
- const markets = ref(); //市场资讯
- const reportDict = ref();
- const demandShow = ref(false); // 需求页面
- const keyword = ref(""); //关键字
- const userStore = useUserStore();
- const lang = ref();
- // 联系我们
- function handleContact () {
- demandShow.value = true;
- }
- // 关闭diag
- function handleCloseDiag () {
- demandShow.value = false;
- }
- //查询
- const router = useRouter();
- function handleSearch () {
- router.push({
- name: "reports",
- params: { keyword: keyword.value },
- });
- }
- // 资讯详情
- function viewNewsDetail (item) {
- router.push({
- name: "newsDetail",
- params: { webTitle: item.webTitle + "-" + item.id },
- });
- }
- // 报告详情
- function viewReportDetail (item) {
- router.push({
- name: "reportDetail",
- params: { webTitle: item.webTitle + "-" + item.id },
- });
- }
- // 报告列表
- function reportDetail () {
- router.push({ name: "reports" });
- }
- function handleReport (value) {
- router.push({ name: "reports", params: { category: value } });
- }
- lang.value = userStore.getLang
- // 轮播图
- const data = await carouselListData();
- carouselList.value = data;
- console.log(carouselList.value)
- // 研究报告分类
- reportDict.value = await getLocalSessionReport();
- // 研究报告列表
- const map = await reportAndMarketListData();
- reports.value = map.report;
- markets.value = map.market;
- // onMounted(async () => {
- reportDict.value = await getLocalSessionReport();
- // })
- useHead({
- title: t('defaultSettings.title'),
- viewport: "width=device-width,initial-scale=1,maximum-scale=1 ",
- charset: "utf-8",
- meta: [
- { hid: "keywords", name: "keywords", content: t('defaultSettings.keyword') },
- {
- hid: "description",
- name: "description",
- content: t('defaultSettings.desc'),
- },
- ],
- });
- </script>
- <style scoped lang="scss">
- .home {
- height: 100%;
- overflow: auto;
- overflow-x: hidden;
- scroll-snap-type: y mandatory;
- .home-page {
- height: 100vh;
- scroll-snap-align: start;
- overflow: hidden;
- .carousel {
- width: 100%;
- height: 100%;
- overflow: hidden;
- .desc {
- //width: 1200px;
- padding-top: 140px;
- margin: 0 auto;
- line-height: 1;
- position: relative;
- height: 100%;
- overflow: hidden;
- z-index: 100;
- .slogan {
- display: inline-block;
- height: 300px;
- h3 {
- color: #fff;
- font-size: 48px;
- line-height: 1.5;
- margin-bottom: 48px;
- }
- p {
- opacity: 1;
- font-size: 18px;
- color: #fff;
- line-height: 1.7;
- }
- }
- .search {
- padding-top: 60px;
- width: 75%;
- .search-btn {
- .n-icon {
- vertical-align: middle;
- }
- }
- }
- }
- .img {
- position: absolute;
- top: -50px;
- bottom: -50px;
- left: -50px;
- right: -50px;
- .carousel-img {
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- }
- }
- }
- }
- // 报告分类
- .reports-category-box {
- display: flex;
- flex-wrap: wrap;
- width: 100%;
- justify-content: flex-end;
- .rcb-box {
- width: 15.66%;
- margin-right: 12px;
- margin-bottom: 12px;
- .rcb-item {
- text-align: center;
- &::after {
- position: absolute;
- left: 0;
- bottom: 0;
- content: "";
- width: 100%;
- background: #18a058;
- display: block;
- }
- &:hover {
- position: relative;
- height: 3px;
- .rcb-text {
- color: #18a058;
- }
- }
- .rcb-text {
- display: flex;
- justify-content: center;
- font-size: 16px;
- font-weight: 600;
- &:hover {
- color: #18a058;
- }
- &:after {
- bottom: 0;
- left: 50%;
- -webkit-transform: translateX(-50%);
- transform: translateX(-50%);
- -webkit-transition: 0.55s;
- transition: 0.55s;
- content: "";
- background: #18a058;
- position: absolute;
- display: block;
- height: 5rem;
- width: 0;
- }
- }
- }
- }
- }
- .report {
- //background-color: #edf0f5;
- .report-content {
- display: flex;
- justify-content: flex-start;
- flex-wrap: wrap;
- .report-box {
- width: 33.33%;
- padding: 0px 10px 10px 0;
- //box-shadow: 2.5px 4.33px 15px 0px rgb(0 0 0 / 15%);
- :hover {
- background-color: #18a058;
- color: #fff;
- .text {
- span {
- color: #fff;
- }
- }
- }
- .img {
- width: 11em;
- height: 13em;
- img {
- width: 100%;
- height: 100%;
- box-shadow: 7px 0 15px rgba(0, 87, 149, 0.33);
- }
- }
- .text {
- padding-left: 1.5em;
- width: calc(100% - 10em);
- h4 {
- //color: #333333;
- line-height: 30px;
- margin: 0.25rem 0 1rem 0;
- transition: all 0.4s ease;
- min-height: 90px;
- max-height: 90px;
- overflow: hidden;
- text-overflow: ellipsis;
- font-size: 18px;
- word-break: break-all;
- }
- span {
- color: #9caac6;
- font-size: 14px;
- transition: all 0.4s ease;
- }
- }
- }
- }
- }
- // .container{
- // //width: 75%;
- // //margin: 0 auto;
- // //padding: 80px 0 50px 0;
- // // .title{
- // // display: flex;
- // // flex-flow: row nowrap;
- // // align-items: center;
- // // justify-content: center;
- // // line-height: 1em;
- // // padding-bottom: 20px;
- // // >span{
- // // padding-right: 5px;
- // // }
- // // }
- // }
- .show {
- padding-top: 10px;
- .n-icon {
- vertical-align: sub;
- }
- .more {
- padding-left: 30px;
- }
- }
- // 热门资讯
- .news-content {
- width: 100%;
- display: flex;
- flex-wrap: wrap;
- .news-box {
- width: 20%;
- //padding: 25px 30px 22px;
- visibility: visible;
- > .image {
- width: 100%;
- height: 240px;
- overflow: hidden;
- img {
- height: 100%;
- transition: transform 0.7s ease;
- object-fit: cover;
- &:hover {
- transform: scale(1.3);
- }
- }
- }
- .box-content {
- margin: 20px 30px 5px 0;
- a {
- &:hover {
- color: #096ed7;
- }
- }
- }
- }
- }
- .news-content {
- :nth-child(5n + 2).news-box {
- padding-top: 50px;
- }
- :nth-child(5n + 3).news-box {
- padding-top: 100px;
- }
- :nth-child(5n + 4).news-box {
- padding-top: 150px;
- }
- :nth-child(5n + 5).news-box {
- padding-top: 200px;
- }
- }
- .category {
- background-color: #edf0f5;
- }
- .category-box {
- display: flex;
- padding: 20px 30px;
- margin-bottom: 10px;
- border-radius: 10px;
- background-color: #fff;
- margin-right: 10px;
- .img {
- width: 140px;
- }
- .text {
- padding-left: 20px;
- width: calc(100% - 140px);
- h3 {
- padding-bottom: 0;
- line-height: 30px;
- font-size: 20px;
- font-weight: 600;
- a {
- overflow: hidden;
- text-overflow: ellipsis;
- }
- a:hover {
- color: #096ed7;
- }
- }
- .time {
- > .icon {
- vertical-align: sub;
- }
- > span {
- padding-left: 4px;
- vertical-align: text-bottom;
- }
- }
- > p {
- min-height: 60px;
- max-height: 60px;
- overflow: hidden;
- text-overflow: ellipsis;
- line-height: 20px;
- }
- }
- }
- img {
- width: 100%;
- }
- //定制报告
- .home-profile-box {
- display: flex;
- .box-text {
- width: 50%;
- padding: 40px;
- > h3 {
- font-size: 20px;
- font-weight: 600;
- }
- > p {
- font-size: 18px;
- }
- .btn {
- padding-top: 50px;
- }
- }
- .box-img {
- width: 50%;
- }
- }
- .home-contact {
- position: relative;
- .contact-row {
- position: absolute;
- left: 12.5%;
- top: 160px;
- width: 1200px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- flex-wrap: wrap;
- .contact-txt {
- width: 40%;
- span {
- font-size: 26px;
- color: #fff;
- font-weight: 600;
- }
- }
- .contact-btn {
- width: 30%;
- > a {
- color: #fff;
- font-size: 26px;
- background: #18a058;
- padding: 15px 25px;
- }
- }
- }
- .contact-img {
- height: 360px;
- overflow: hidden;
- > img {
- height: 100%;
- width: 100%;
- object-fit: cover;
- }
- }
- }
- </style>
|