123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448 |
- <template>
- <div class="slider" v-if="message">
- <div class="scienceTitle" v-if="message">
- <h5 v-if="message.cid">
- <NuxtLink
- v-if="message.cid"
- :href="getLinkPath(message)"
- class="active"
- :title="message.alias"
- >
- {{message.title}}
- </NuxtLink>
- </h5>
- <NuxtLink
- v-if="message.cid"
- :href="getLinkPath(message)"
- :title="message.alias"
- >
- 查看更多
- </NuxtLink>
- </div>
- <!-- 标题下内容列表 -->
- <div class="box">
- <div class="boxcontent">
- <div class="boxleft" v-if="boxData1">
- <div class="boxBigImg">
- <NuxtLink :href="getLinkPathDetail(boxData1[0])" :title="boxData1[0].title" :target="boxData1[0].islink == 1 ? '_blank' : '_self'">
- <img :src="boxData1[0].imgurl" :alt="boxData1[0].title">
- <div>
- <p><span>专题</span>{{ boxData1[0].title }}</p>
- </div>
- </NuxtLink>
- </div>
- <div class="boxMainImg">
- <NuxtLink :href="getLinkPathDetail(boxData1[1])" :title="boxData1[1].title" :target="boxData1[1].islink == 1 ? '_blank' : '_self'">
- <img :src="boxData1[1].imgurl" :alt="boxData1[1].title">
- <div>
- <p>{{boxData1[1].title}}</p>
- </div>
- </NuxtLink>
- <NuxtLink :href="getLinkPathDetail(boxData1[2])" :title="boxData1[2].title" :target="boxData1[2].islink == 1 ? '_blank' : '_self'">
- <img :src="boxData1[2].imgurl" :alt="boxData1[2].title">
- <div>
- <p>{{boxData1[2].title}}</p>
- </div>
- </NuxtLink>
- </div>
- <div class="boxBigImg">
- <NuxtLink :href="getLinkPathDetail(boxData1[3])" :title="boxData1[3].title" :target="boxData1[3].islink == 1 ? '_blank' : '_self'">
- <img :src="boxData1[3].imgurl" :alt="boxData1[3].title">
- <div>
- <p>{{boxData1[3].title}}</p>
- </div>
- </NuxtLink>
- </div>
- </div>
- <div class="boxright">
- <ul>
- <li v-for="item in boxData2">
- <NuxtLink :href="getLinkPathDetail(item)" :title="item.title" :target="item.islink == 1 ? '_blank' : '_self'">
- <p class="title">{{item.title}}</p>
- </NuxtLink>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script setup>
- //1.获得传入的数据 start---------------------------------------->
- const props = defineProps({
- message: Array,
- boxData1: Array,
- boxData2: Array,
- });
- //1.获得传入的数据 end---------------------------------------->
- //2.获得本页的数据 start---------------------------------------->
- //格式化跳转路径 - 标题
- const getLinkPath = (item) => {
- if (item.children_count == 0) {
- return `/${item.aLIas_pinyin}/list-1.html`;
- } else {
- return `/${item.aLIas_pinyin}/index.html`;
- }
- }
- //格式化跳转路径 - 到详情
- const getLinkPathDetail = (item) => {
- if (item.islink == 1) {
- return `${item.linkurl}`;
- } else {
- return `/${item.pinyin}/${item.id}.html`;
- }
- }
- //2.获得本页的数据 end---------------------------------------->
- </script>
- <style lang="less" scoped>
- .slider {
- width: 720px;
- }
- // 标题
- .scienceTitle {
- height: 50px;
- line-height: 50px;
- border-bottom: 1px solid #D9D9D9;
- display: flex;
- justify-content: space-between;
- h5 {
- float: left;
- width: 96px;
- height: 34px;
- font-family: PingFang SC, PingFang SC;
- font-weight: 600;
- font-size: 24px;
- color: #000000;
- line-height: 28px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- margin-right: 20px;
- // border-bottom: 2px solid #139602;
- height: 50px;
- line-height: 50px;
- a {
- font-size: 22px;
- color: #139602;
- border-bottom: 3px solid #139602;
- height: 50px;
- line-height: 50px;
- display: inline-block;
- box-sizing: border-box;
- width: auto;
- font-weight: bold;
- }
- }
- a {
- width: 65px;
- height: 50px;
- line-height: 50px;
- font-weight: 400;
- font-size: 16px;
- color: #333333;
- font-style: normal;
- text-transform: none;
- display: inline-block;
- }
- >p {
- float: left;
- height: 37px;
- line-height: 30px;
- >span {
- display: inline-block;
- height: 20px;
- line-height: 20px;
- text-align: center;
- margin: 4px 0px 3px;
- padding: 0 20px;
- border-right: 1px solid #ccc;
- >a {
- display: inline-block;
- padding-bottom: 11px;
- font-family: PingFang SC, PingFang SC;
- font-weight: 500;
- font-size: 20px;
- color: #666666;
- line-height: 20px;
- font-style: normal;
- text-transform: none;
- box-sizing: border-box;
- }
- .current {
- color: #139602;
- border-bottom: 1px solid #139602;
- }
- }
- >span:nth-child(4) {
- border-right: none;
- }
- >span:hover>a {
- color: #139602;
- border-bottom: 1px solid #139602;
- }
- }
- }
- .box {
- width: 720px;
- height: 662px;
- position: relative;
- overflow: hidden;
- .boxcontent {
- display: flex;
- justify-content: space-between;
- padding-top: 30px;
- .boxleft {
- width: 349px;
- }
- }
- .boxMainImg {
- display: flex;
- justify-content: space-between;
- margin-bottom: 15px;
-
- a {
- position: relative;
- width: 170px;
- height: 115px;
- display: block;
- img {
- width: 170px;
- height: 115px;
- border-radius: 4px;
- border-radius: 6px;
- }
- div {
- position: absolute;
- bottom: 0;
- left: 7px;
- z-index: 99;
- p {
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- width: 158px;
- height: 23px;
- color: #fff;
- }
- span {
- display:block;
- height: 20px;
- line-height: 20px;
- text-align: left;
- color: #fff;
- }
- }
- }
- }
- .boxBigImg {
- margin-bottom: 15px;
-
- a {
- position: relative;
- width: 349px;
- height: 236px;
- border-radius: 6px;
- display: block;
- img {
- width: 349px;
- height: 236px;
- border-radius: 6px;
- }
- div {
- position: absolute;
- bottom: 7px;
- left: 20px;
- z-index: 99;
- p{
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- width: 320px;
- height: 24px;
- color: #fff;
- font-size: 16px;
- margin-bottom: 5px;
- span {
- display: inline-block;
- background: #9CD26B;
- font-size: 14px;
- color: #fff;
- padding: 0 6px;
- border-radius: 4px;
- margin-right: 5px;
- }
- }
- span {
- display:block;
- height: 20px;
- line-height: 20px;
- text-align: left;
- color: #fff;
- }
- }
- }
- }
- }
- .fade-in {
- animation: fadeIn 1s ease-in-out;
- }
- .fade-enter-from,
- .fade-leave-to {
- opacity: 0;
- }
- .fade-enter-to,
- .fade-leave-from {
- opacity: 1;
- }
- .fade-enter-active,
- .fade-leave-active {
- transition: opacity 1s ease;
- }
- .scienceListBox {
- width: 3160px;
- height: 570px;
- position: absolute;
- top: 0;
- left: 0;
- transition: all 3s linear 0;
- z-index: 99;
- }
- // 标题下列表
- .scienceList {
- width: 790px;
- height: 570px;
- float: left;
- margin-top: 17px;
- >li {
- width: 250px;
- height: 276px;
- float: left;
- margin-right: 20px;
- position: relative;
- img {
- width: 250px;
- height: 220px;
- border-radius: 40px 4px 40px 4px;
- }
- p {
- width: 254px;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- height: 48px;
- overflow: hidden;
- font-family: PingFang SC, PingFang SC;
- font-weight: 600;
- font-size: 18px;
- color: #333333;
- line-height: 24px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- p:hover {
- color: #139602;
- }
- }
- >li:nth-child(3),
- >li:nth-child(6) {
- margin-right: 0;
- }
- >li::before {
- content: "";
- display: inline-block;
- width: 40px;
- height: 20px;
- position: absolute;
- z-index: 99;
- top: 0;
- right: 0;
- background-image: url("../../static/images/Component 209.png");
- }
- }
- .boxright {
- ul {
- li {
- width: 349px;
- box-sizing: border-box;
- border-bottom: 1px solid #E6E6E6;
- margin-bottom: 21px;
- padding-bottom: 10px;
- .title {
- height: 42px;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- height: 42px;
- width: 100%;
- font-size: 16px;
- color: #333333;
- margin-bottom: 5px;
- }
- .title:hover {
- color: #49A769;
- }
- .time {
- font-size: 14px;
- color: #999999;
- margin-bottom: 10px;
- }
-
-
- }
- }
- }
- .imgbg::after{
- content: '';
- display: block;
- width:100%;
- height:68px;
- z-index:44;
- left:0px;
- bottom:0;
- position:absolute;
- background:linear-gradient(to bottom,rgba(0,0,0,0),black);
- opacity:.3;
- border-radius: 6px;
- }
- </style>
|