123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534 |
- <template>
- <!-- 滑块 -->
- <!-- v-if="navigation1[2]" -->
- <div class="slider" v-if="navigation1[2]">
- <!-- 标题部分 -->
- <div class="scienceTitle" v-if="navigation1[2]">
- <h5>
- <span>{{ navigation1[2].alias }}</span>
- </h5>
- <NuxtLink :to="`/newsList/${navigation1[2].category_id}`" target="_blank">
- 查看更多
- </NuxtLink>
- <!-- <span>查看更多</span> -->
- <!-- <p class="title">
- <span v-for="(item, index) in scienceTitleList" :key="index" @mousemove="changeUl(index)">
- <a href="#">{{ item.title }}</a>
- </span>
- </p> -->
- </div>
- <!-- 标题下内容列表 -->
- <div class="box">
- <div class="boxcontent">
- <div class="boxleft" v-if="boxData1[0]">
- <div class="boxBigImg">
- <NuxtLink :to="`/newsDetail/${boxData1[0].id}`" target="_blank">
- <img :src="boxData1[0].imgurl">
- <div>
- <p>{{ boxData1[0].title }}</p>
- <span>{{ boxData1[0].created_at }}</span>
- </div>
- </NuxtLink>
- </div>
- <div class="boxMainImg">
- <NuxtLink :to="`/newsDetail/${boxData1[1].id}`" target="_blank">
- <img :src="boxData1[1].imgurl">
- <div>
- <p>{{ boxData1[1].title }}</p>
- <span>{{ boxData1[1].created_at }}</span>
- </div>
- </NuxtLink>
- <NuxtLink :to="`/newsDetail/${boxData1[2].id}`" target="_blank">
- <img :src="boxData1[2].imgurl">
- <div>
- <p>{{ boxData1[2].title }}</p>
- <span>{{ boxData1[2].created_at }}</span>
- </div>
- </NuxtLink>
- </div>
- <div class="boxBigImg">
- <NuxtLink :to="`/newsDetail/${boxData1[3].id}`" target="_blank">
- <img :src="boxData1[3].imgurl">
- <div>
- <p>{{ boxData1[3].title }}</p>
- <span>{{ boxData1[3].created_at }}</span>
- </div>
- </NuxtLink>
- </div>
- </div>
- <div class="boxright">
- <ul>
- <li v-for="item in boxData2">
- <NuxtLink :to="`/newsDetail/${item.id}`" target="_blank">
- <p class="title">{{ item.title }}</p>
- <p class="time">{{ item.created_at }}</p>
- </NuxtLink>
- </li>
- </ul>
- </div>
- </div>
- <!-- <ul class="scienceList">
- <li v-for="item in boxData2">
- <NuxtLink :to="`/newsDetail/${item.id}`" target="_blank">
- <img :src="item.imgurl">
- <p>{{ item.title }}</p>
- </NuxtLink>
- </li>
- </ul> -->
- <!-- <transition name="fade">
- <div class="scienceListBox">
- <ul class="scienceList">
- <li v-for="item in boxData1">
- <NuxtLink
- :to="{ path: `/newsDetail/${item.id}`, query: { listId: routeId, listName: routeName } }"
- target="_blank">
- <img :src="item.imgurl">
- <p>{{ item.title }}</p>
- </NuxtLink>
- </li>
- </ul>
- <ul class="scienceList">
- <li v-for="item in 6">
- <img src="../../static/images/sgbhsihfgisdfaasda45632113_A_Chinese_farmer_carrying_a_hoe_is_h_1ba32eee-c498-4dd7-9cd9-013568c09db7.png"
- alt="">
- <p>市农业农村局关于印发连云港市市级…</p>
- </li>
- </ul>
- <ul class="scienceList">
- <li v-for="item in 6">
- <img src="../../static/images/rgmezdvz_19982_On_a_vast_and_boundless_wheat_field_many_harvest_5b5cfeda-ef17-4551-a935-5f8e3f799b69.png"
- alt="">
- <p>市农业农村局关于印发连云港市市级…</p>
- </li>
- </ul>
- <ul class="scienceList">
- <li v-for="item in 6">
- <img src="../../static/images/rgmezdvz_19982_A_Chinese_farmer_carrying_a_hoe_is_hoeing_the_fi_a036c7b3-b05e-4d3d-a371-0bed91ec1ff8(1).png"
- alt="">
- <p>市农业农村局关于印发连云港市市级…</p>
- </li>
- </ul>
- </div>
- </transition> -->
- </div>
- </div>
- </template>
- <script setup>
- const nuxtApp = useNuxtApp();
- const axios = nuxtApp.$axios;
- const radio1 = ref('1')
- const props = defineProps({
- message: Array,
- });
- //获取导航一的栏目
- const navigation1 = ref("");
- const navigateList = async () => {
- try {
- const response = await axios.get(`/web/getWebsiteModelCategory?placeid=${1}&pid=${0}&num=${24}`);
- console.log('一级导航', response.data);
- navigation1.value = response.data;
- getWebsiteModelArticles()
- getWebsiteModelArticles2()
- } catch (error) {
- console.error(error);
- }
- }
- const boxData1 = ref("");
- const getWebsiteModelArticles = async () => {
- try {
- // console.log(99999999);
- // console.log(navigation1.value[2].category_id)
- let cid = navigation1.value[2].category_id
- const response = await axios.get(`/web/getWebsiteModelArticles?catid=${cid}&level=${1}&pagesize=${4}`);
- boxData1.value = response.data;
- } catch (error) {
- console.error(error);
- }
- }
- const boxData2 = ref("");
- const getWebsiteModelArticles2 = async () => {
- try {
- // console.log(99999999);
- // console.log(navigation1.value[2].category_id)
- let cid = navigation1.value[2].category_id
- const response = await axios.get(`/web/getWebsiteModelArticles?catid=${cid}&level=${3}&pagesize=${6}`);
- boxData2.value = response.data;
- } catch (error) {
- console.error(error);
- }
- }
- onMounted(() => {
- // 一级导航
- navigateList()
- })
- let scienceTitleList = [
- {
- id: 1,
- title: "农产畅销"
- },
- {
- id: 2,
- title: "农业在线"
- },
- {
- id: 3,
- title: "农产行情"
- },
- {
- id: 4,
- title: "名优特产"
- }
- ]
- //鼠标移入标题时,下方内容会发生变化
- // let changeUl = (index) => {
- // // console.log(index);
- // if (process.browser) {
- // let scienceListBox = document.querySelector('.scienceListBox');
- // let titleList = document.querySelectorAll('.title>span>a')
- // for (let i = 0; i < titleList.length; i++) {
- // titleList[i].className = ''
- // }
- // titleList[index].setAttribute('class', 'current')
- // if (index == 0) {
- // scienceListBox.style.left = 0
- // } else if (index == 1) {
- // scienceListBox.style.left = "-790px"
- // } else if (index == 2) {
- // scienceListBox.style.left = "-1580px"
- // } else if (index == 3) {
- // scienceListBox.style.left = "-2370px"
- // }
- // }
- // }
- </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;
-
- span {
- color: #139602;
- border-bottom: 3px solid #139602;
- height: 50px;
- line-height: 50px;
- display: inline-block;
- box-sizing: border-box;
- }
- }
- 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: 700px;
- position: relative;
- overflow: hidden;
- .boxcontent {
- display: flex;
- justify-content: space-between;
- padding-top: 30px;
- .boxleft {
- width: 349px;
- height: 700px;
- padding-bottom: 30px;
- }
- }
- .boxMainImg {
- display: flex;
- justify-content: space-between;
- margin-bottom: 15px;
-
- a {
- position: relative;
- img {
- width: 170px;
- height: 115px;
- border-radius: 4px;
- border-radius: 6px;
- }
- div {
- position: absolute;
- bottom: 4px;
- left: 7px;
- p {
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- width: 158px;
- height: 42px;
- color: #fff;
- }
- span {
- display:block;
- height: 20px;
- line-height: 20px;
- text-align: left;
- color: #fff;
- }
- }
- }
- }
- .boxBigImg {
- margin-bottom: 15px;
-
- a {
- position: relative;
- img {
- width: 349px;
- height: 236px;
- border-radius: 6px;
- }
- div {
- position: absolute;
- bottom: 7px;
- left: 20px;
- p{
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- width: 320px;
- height: 42px;
- color: #fff;
- }
- 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;
- }
- // 标题下列表
- .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;
- 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: 20px;
- 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;
- }
- .time {
- font-size: 14px;
- color: #999999;
- margin-bottom: 10px;
- }
- }
- }
- }
- </style>
|