hookehuyr

fix 组件效果优化

1 <!-- 1 <!--
2 * @Date: 2024-09-29 10:07:11 2 * @Date: 2024-09-29 10:07:11
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2024-09-29 10:12:22 4 + * @LastEditTime: 2024-09-29 15:19:21
5 * @FilePath: /hager/src/components/common/hagerH1.vue 5 * @FilePath: /hager/src/components/common/hagerH1.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
...@@ -49,7 +49,7 @@ export default { ...@@ -49,7 +49,7 @@ export default {
49 font-weight: bold; 49 font-weight: bold;
50 } 50 }
51 .sub { 51 .sub {
52 - color: #999; 52 + color: #03aae3;
53 font-size: 1.25rem; 53 font-size: 1.25rem;
54 font-weight: bold; 54 font-weight: bold;
55 } 55 }
......
1 <!-- 1 <!--
2 * @Date: 2024-09-26 13:42:11 2 * @Date: 2024-09-26 13:42:11
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2024-09-29 14:19:50 4 + * @LastEditTime: 2024-09-29 14:27:53
5 * @FilePath: /hager/src/components/common/hagerHeader.vue 5 * @FilePath: /hager/src/components/common/hagerHeader.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
......
1 <!-- 1 <!--
2 * @Date: 2024-09-27 19:49:03 2 * @Date: 2024-09-27 19:49:03
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2024-09-27 20:09:22 4 + * @LastEditTime: 2024-09-29 14:58:52
5 * @FilePath: /hager/src/components/hagerCarousel.vue 5 * @FilePath: /hager/src/components/hagerCarousel.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
11 <!-- 缩略图区域 --> 11 <!-- 缩略图区域 -->
12 <div class="thumbnail-container"> 12 <div class="thumbnail-container">
13 <!-- 上箭头 --> 13 <!-- 上箭头 -->
14 - <div class="arrow-up" @click="prevImage"></div> 14 + <div class="arrow-up" @click="prevImage"><i class="el-icon-arrow-up" style="font-size: 1.35rem;"></i></div>
15 15
16 <!-- 缩略图列表 --> 16 <!-- 缩略图列表 -->
17 <div class="thumbnails"> 17 <div class="thumbnails">
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
26 </div> 26 </div>
27 27
28 <!-- 下箭头 --> 28 <!-- 下箭头 -->
29 - <div class="arrow-down" @click="nextImage"></div> 29 + <div class="arrow-down" @click="nextImage"><i class="el-icon-arrow-down" style="font-size: 1.35rem;"></i></div>
30 </div> 30 </div>
31 31
32 <!-- 右边大图区域 --> 32 <!-- 右边大图区域 -->
......