hookehuyr

fix(feedBackList): 调整图片预览组件样式和配置

修改图片预览索引位置从底部120rpx调整到顶部30rpx,并更新预览组件配置,关闭自动播放和索引显示
1 /* 1 /*
2 * @Date: 2022-09-19 14:11:06 2 * @Date: 2022-09-19 14:11:06
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-07-21 11:36:19 4 + * @LastEditTime: 2025-07-21 11:46:21
5 * @FilePath: /jgdl/src/pages/feedBackList/index.less 5 * @FilePath: /jgdl/src/pages/feedBackList/index.less
6 * @Description: 意见反馈列表页面样式 6 * @Description: 意见反馈列表页面样式
7 */ 7 */
...@@ -279,8 +279,8 @@ ...@@ -279,8 +279,8 @@
279 z-index: 1001; 279 z-index: 1001;
280 } 280 }
281 281
282 - .nut-image-preview__index { 282 + .nut-image-preview-index {
283 - bottom: 120rpx !important; 283 + top: 30rpx !important;
284 z-index: 1001; 284 z-index: 1001;
285 } 285 }
286 // } 286 // }
......
1 <!-- 1 <!--
2 * @Date: 2022-09-19 14:11:06 2 * @Date: 2022-09-19 14:11:06
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-07-21 11:25:10 4 + * @LastEditTime: 2025-07-21 11:47:19
5 * @FilePath: /jgdl/src/pages/feedBackList/index.vue 5 * @FilePath: /jgdl/src/pages/feedBackList/index.vue
6 * @Description: 意见反馈列表页面 6 * @Description: 意见反馈列表页面
7 --> 7 -->
...@@ -105,7 +105,8 @@ ...@@ -105,7 +105,8 @@
105 v-model:show="previewVisible" 105 v-model:show="previewVisible"
106 :images="previewImages" 106 :images="previewImages"
107 :init-no="previewIndex" 107 :init-no="previewIndex"
108 - :is-Loop="false" 108 + :autoplay="0"
109 + :show-index="false"
109 @close="closePreview" 110 @close="closePreview"
110 /> 111 />
111 </view> 112 </view>
......