From 9211670e0ff8e2e08e6723b89b3b23c86e7397bd Mon Sep 17 00:00:00 2001
From: chenyao <1219716595@qq.com>
Date: Sat, 10 May 2025 15:57:35 +0800
Subject: [PATCH] feat: 调整审核展示宽高
---
src/views/tickets/ticket.vue | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/src/views/tickets/ticket.vue b/src/views/tickets/ticket.vue
index 26f87b7..2b71973 100644
--- a/src/views/tickets/ticket.vue
+++ b/src/views/tickets/ticket.vue
@@ -439,7 +439,7 @@
</el-dialog>
<!-- 添加在其他 dialog 组件之后 -->
- <el-dialog v-model="reviewDialogVisible" title="批量审核" width="70%" append-to-body custom-class="review-dialog"
+ <el-dialog v-model="reviewDialogVisible" title="批量审核" width="1100" append-to-body custom-class="review-dialog"
@close="cancleBatchReject">
<div class="review-container">
<div class="review-image-wrapper">
@@ -449,8 +449,11 @@
</div>
<div class="review-image-container">
- <el-image v-if="currentReviewImage" :src="getThumbUrl(currentReviewImage)" fit="fill"
+ <!-- <el-image v-if="currentReviewImage" :src="getThumbUrl(currentReviewImage)" fit="fill"
:preview-src-list="getImageList()" :initial-index="currentImageIndex - 1" class="preview-image"
+ style="cursor: pointer"> -->
+ <el-image v-if="currentReviewImage" :src="getPreviewUrl(currentReviewImage)" fit="fill"
+ :initial-index="currentImageIndex - 1" class="preview-image"
style="cursor: pointer">
<template #error>
<div class="image-error">
@@ -2972,6 +2975,7 @@
:deep(.el-dialog__body) {
padding: 0;
background-color: #f5f7fa;
+
}
}
--
Gitblit v1.9.3