| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- <template>
- <div class="hotNewsBox">
- <div class="listNewsTitle_skin2" >
- <span><b>热点精选</b></span>
- </div>
- <!--样式1-->
- <div class="hotNewsContent_skin2" v-if="componentStyle==1">
- <div v-for="(item,index) in component_style1_News1Array">
- <NuxtLink
- :href="getLinkPathDetail(item)"
- :title="item.title"
- :target="item.islink == 1 ? '_blank' : '_self'"
- >
- <span>{{ index+1 }}</span>
- {{ item.title }}
- </NuxtLink>
- </div>
- </div>
- <!--样式2-->
- <div class="hotNewsContent_skin2 hotNewsStyle2" v-if="componentStyle==2">
- <div v-for="(item,index) in component_style1_News1Array">
- <NuxtLink
- :href="getLinkPathDetail(item)"
- :title="item.title"
- :target="item.islink == 1 ? '_blank' : '_self'"
- >
- <span>{{ index+1 }}</span>
- {{ item.title }}
- </NuxtLink>
- </div>
- </div>
- <!-- 样式3 -->
- <div class="hotNewsContent_skin2 hotNewsStyle3" v-if="componentStyle == 3">
- <div v-for="(item,index) in component_style1_News1Array">
- <NuxtLink
- :href="getLinkPathDetail(item)"
- :title="item.title"
- :target="item.islink == 1 ? '_blank' : '_self'"
- >
- <span>{{ index+1 }}</span>
- {{ item.title }}
- </NuxtLink>
- </div>
- </div>
- <!-- 样式4 -->
- <div class="hotNewsContent_skin2 hotNewsStyle4" v-if="componentStyle == 4">
- <div v-for="(item,index) in component_style1_News1Array">
- <NuxtLink
- :href="getLinkPathDetail(item)"
- :title="item.title"
- :target="item.islink == 1 ? '_blank' : '_self'"
- >
- <span>{{ index+1 }}</span>
- {{ item.title }}
- </NuxtLink>
- </div>
- </div>
- <!-- 样式5 -->
- <div class="hotNewsContent_skin2 hotNewsStyle5" v-if="componentStyle == 5">
- <div v-for="(item,index) in component_style1_News1Array" :key="index">
- <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({
- componentStyle:Number,//样式编号
- });
- const component_style1_News1Array = ref([]);
- //component_style1_News1Array.value = props.templateData.text.slice(0,8);
- async function getPageData() {
- const mkdata = await requestDataPromise('/web/getWebsiteArticlett', {
- method: 'GET',
- query: {
- 'imgnum': 0,
- 'textnum': 8,
- 'level': 5,
- 'placeid': 0,
- 'id': 0
- },
- });
- if (mkdata.code == 200) {
- component_style1_News1Array.value = mkdata.data.text;
- }
- }
- getPageData();
- </script>
- <style lang="less" scoped>
- //基本样式 start ---------------------------------------->
- .hotNewsBox {
- .listNewsTitle_skin2 {
- font-size: 22px;
- font-weight: bold;
- height: 40px;
- line-height: 25px;
- border-bottom: 2px solid #A91B33;
- color: #A91B33;
- margin-bottom: 20px;
- box-sizing: border-box;
- span {
- color:#A91B33;
- height: 30px;
- line-height: 30px;
- border-left: 3px solid #A91B33;
- padding-left: 12px;
- }
- }
- .hotNewsContent_skin2 {
- font-size:18px;
- color:#333333;
- div {
- a {
- display: block;
- color:#333333;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- padding-bottom:20px;
- border-bottom:1px solid #E4E4E4;
- margin-bottom: 22px;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- span {
- margin-right: 15px;
- font-size:20px;
- font-weight:bold;
- font-style: italic;
- color: #D9D9D9;
- }
- &:nth-child(1) span,
- &:nth-child(2) span,
- &:nth-child(3) span {
- color: #A91B33;
- }
- }
- }
- }
- //基本样式 end ---------------------------------------->
- //样式2 start ---------------------------------------->
- .hotNewsBox {
- .hotNewsStyle2 {
- font-size:18px;
- color:#333333;
- div {
- padding-bottom:20px;
- border-bottom:1px solid #E4E4E4;
- margin-bottom: 22px;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- span {
- margin-right: 15px;
- font-size:20px;
- font-weight:bold;
- font-style: italic;
- color: #A91B33;
- }
- }
- }
- }
- //样式2 end ---------------------------------------->
- //样式3 start ---------------------------------------->
- .hotNewsBox {
- .hotNewsStyle3 {
- font-size:18px;
- color:#333333;
- div {
- border-bottom:1px dashed #E4E4E4;
- }
- }
- }
- //样式3 end ---------------------------------------->
- //样式4 start ---------------------------------------->
- .hotNewsBox {
- .hotNewsStyle4 {
- font-size:18px;
- color:#333333;
- div {
- padding-bottom:20px;
- border-bottom:1px dashed #E4E4E4;
- margin-bottom: 22px;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- span {
- margin-right: 15px;
- font-size:20px;
- font-weight:bold;
- font-style: italic;
- color: #A91B33;
- }
- }
- }
- }
- //样式4 end ---------------------------------------->
- //样式5 start ---------------------------------------->
- .hotNewsBox {
- .hotNewsStyle5 {
- font-size:18px;
- color:#333333;
- div {
- padding-bottom:20px;
- border-bottom:1px dashed #E4E4E4;
- margin-bottom: 22px;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- span {
- margin-right: 15px;
- font-size:20px;
- font-weight:bold;
- font-style: italic;
- color: #A91B33;
- }
- }
- }
- }
- </style>
|