| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <template>
- <div class="listNewsBox">
- <div class="listNewsTitle">
- <NuxtLink v-if="titleLink.cid" :href="getLinkPath(titleLink)" :title="titleLink.alias">
- <div>{{ titleLink.alias }}</div>
- </NuxtLink>
- </div>
- <!--样式1-->
- <div class="listNewsContent" v-if="componentStyle == 1">
- <div class="photo">
- <div v-for="item in component_style1_News1Array_img">
- <NuxtLink :href="getLinkPathDetail(item)" :title="item.title"
- :target="item.islink == 1 ? '_blank' : '_self'">
- <img :src="item.imgurl" alt="">
- <span>{{ item.title }}</span>
- </NuxtLink>
- </div>
- </div>
- <div class="text" v-for="item in component_style1_News1Array_text">
- <NuxtLink :href="getLinkPathDetail(item)" :title="item.title"
- :target="item.islink == 1 ? '_blank' : '_self'">
- {{ item.title }}
- </NuxtLink>
- </div>
- </div>
- </div>
- </template>
- <script setup>
- //引入vue
- import { ref } from 'vue';
- //获得新闻数据
- const props = defineProps({
- titleLink: Object,//板块名称
- templateData: Array,//新闻数据
- componentStyle: Number,//样式编号
- });
- //样式1与样式2共用 start ---------------------------------------->
- const component_style1_News1Array_img = ref([]);
- const component_style1_News1Array_text = ref([]);
- //真实数据
- component_style1_News1Array_img.value = props.templateData.imgnum.slice(0, 2);
- component_style1_News1Array_text.value = props.templateData.textnum.slice(0, 3);
- //样式1与样式2共用 end ---------------------------------------->
- </script>
- <style lang="less" scoped>
- //基本样式 start ---------------------------------------->
- .listNewsBox {
- position: relative;
- .listNewsTitle {
- height: 38px;
- line-height: 38px;
- margin-bottom: 19px;
- div {
- height: 35px;
- width: 138px;
- line-height: 32px;
- font-size: 22px;
- font-weight: bold;
- color: #333333;
- cursor: pointer;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- color: #154079;
- background: url("https://img.bjzxtw.org.cn/pre/image/png/20251104/1762224944805589.png") bottom left no-repeat;
- }
- }
- .listNewsContent {
- width: 100%;
- box-sizing: border-box;
- .photo {
- width: 378px;
- height: 130px;
- display: flex;
- justify-content: space-between;
- margin-bottom: 26px;
- div {
- position: relative;
- width: 185px;
- height: 130px;
- img {
- width: 185px;
- height: 130px;
- }
- span {
- position: absolute;
- bottom: 0;
- left: 0;
- display: inline-block;
- width: 185px;
- height: 29px;
- line-height: 29px;
- font-size: 14px;
- padding-left: 5px;
- box-sizing: border-box;
- color: #fff;
- background-color: #888585;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- }
- }
- .text {
- width: 370px;
- color: #666666;
- font-size: 18px;
- margin-bottom: 18px;
- padding-left: 16px;
- cursor: pointer;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- a {
- color: #333333;
- }
- }
- .bg_blue {
- background: url("https://img.bjzxtw.org.cn/pre/image/png/20251104/1762226842166040.png") no-repeat left center;
- }
- }
- }
- //基本样式 end ----------------------------------------></style>
|