From cf01072be13ce88a33016a27bdd6bf3bc74ba80e Mon Sep 17 00:00:00 2001
From: 张含笑 <zhx18749296735@163.com>
Date: Wed, 27 Aug 2025 17:05:06 +0800
Subject: [PATCH] feat:样式调整
---
src/views/resource/components/spotDetails.vue | 10 ++++++++--
1 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/src/views/resource/components/spotDetails.vue b/src/views/resource/components/spotDetails.vue
index 5316bf7..cddd144 100644
--- a/src/views/resource/components/spotDetails.vue
+++ b/src/views/resource/components/spotDetails.vue
@@ -1,7 +1,6 @@
<template>
<el-dialog
:title="props.title"
-
v-model="uploadPatchDialog"
width="75%"
align-center
@@ -384,10 +383,17 @@
</script>
<style scoped lang="scss">
+:deep(.el-dialog) {
+ border-radius: 12px !important; /* 圆角生效关键 */
+ overflow: hidden !important; /* 防止内容溢出圆角 */
+ background: #fff !important; /* 显式背景,让圆角可见 */
+
+}
:deep(.el-dialog__body) {
padding: 10px 39px 43px 39px !important;
+ margin: 0 !important;
+ overflow: auto !important;
}
-
.container {
display: flex;
flex-direction: column;
--
Gitblit v1.9.3