|
@@ -3,7 +3,7 @@
|
|
|
* @Author: 空白格
|
|
|
* @Date: 2022-08-10 11:26:40
|
|
|
* @LastEditors: 空白格
|
|
|
- * @LastEditTime: 2022-08-26 14:11:09
|
|
|
+ * @LastEditTime: 2022-08-29 18:09:18
|
|
|
* @FilePath: \veterans_client_web\src\views\Home\HomeIndex.vue
|
|
|
* @Copyright: Copyright (c) 2016~2022 by 空白格, All Rights Reserved.
|
|
|
-->
|
|
@@ -17,7 +17,14 @@
|
|
|
<!-- 新闻最新一条 -->
|
|
|
<div class="home-main-latest">
|
|
|
<div class="home-main-latest-content">
|
|
|
- <div class="hmlc-title">{{ latestNews.artTitle }}</div>
|
|
|
+ <div
|
|
|
+ class="hmlc-title"
|
|
|
+ @click="
|
|
|
+ jumpPage('/newsdetails', { id: latestNews.artId, type: 'news' })
|
|
|
+ "
|
|
|
+ >
|
|
|
+ {{ latestNews.artTitle }}
|
|
|
+ </div>
|
|
|
<!-- <div class="hmlc-content" v-html="latestNews.artContent"></div> -->
|
|
|
</div>
|
|
|
</div>
|
|
@@ -134,6 +141,12 @@
|
|
|
require('@/assets/images/default-news.jpg')
|
|
|
"
|
|
|
fit="cover"
|
|
|
+ @click="
|
|
|
+ jumpPage('/policyadvice/bannerdetails', {
|
|
|
+ id: item.id,
|
|
|
+ type: 2,
|
|
|
+ })
|
|
|
+ "
|
|
|
>
|
|
|
<div slot="placeholder" class="image-slot">
|
|
|
加载图片中<span class="dot">...</span>
|
|
@@ -493,6 +506,7 @@ export default {
|
|
|
color: #ff001a;
|
|
|
text-align: center;
|
|
|
margin-bottom: 10px;
|
|
|
+ cursor: pointer;
|
|
|
}
|
|
|
.hmlc-content {
|
|
|
font-size: 12px;
|
|
@@ -529,6 +543,7 @@ export default {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
border-radius: 2px;
|
|
|
+ cursor: pointer;
|
|
|
}
|
|
|
.title {
|
|
|
width: calc(100% - 26px);
|
|
@@ -545,6 +560,7 @@ export default {
|
|
|
bottom: 0;
|
|
|
font-size: 14px;
|
|
|
font-weight: blod;
|
|
|
+ cursor: pointer;
|
|
|
}
|
|
|
:deep(.el-carousel__indicators) {
|
|
|
// 指示器
|
|
@@ -630,6 +646,7 @@ export default {
|
|
|
min-width: 600px;
|
|
|
padding: 40px 0;
|
|
|
&-carousel {
|
|
|
+ cursor: pointer;
|
|
|
:deep(.el-carousel__button) {
|
|
|
// 指示器按钮
|
|
|
width: 7px;
|