From 5aa35dae07256c48a003dc464cd70969d0f70ff3 Mon Sep 17 00:00:00 2001
From: 罗广辉 <guanghui.luo@foxmail.com>
Date: Fri, 18 Jul 2025 16:24:21 +0800
Subject: [PATCH] Merge branch 'test' into dev

---
 src/views/job/components/TaskAlgorithmBusiness.vue |   32 +++++++++++++++++++++++++++++++-
 1 files changed, 31 insertions(+), 1 deletions(-)

diff --git a/src/views/job/components/TaskAlgorithmBusiness.vue b/src/views/job/components/TaskAlgorithmBusiness.vue
index 4eaba7a..c5c0a9a 100644
--- a/src/views/job/components/TaskAlgorithmBusiness.vue
+++ b/src/views/job/components/TaskAlgorithmBusiness.vue
@@ -2,6 +2,7 @@
 <template>
 	<div class="task-algorithm" v-if="showAlgorithm">
 		<el-select
+		class="ztzf-select"
 			:teleported="false"
 			:style="{ width: pxToRem(setWidth) }"
 			v-model="ai_types"
@@ -16,7 +17,7 @@
 		</el-select>
 	</div>
 	<div class="task-business" v-if="showBusiness">
-		<el-select
+		<el-select class="ztzf-select"
 			:teleported="false"
 			:style="{ width: pxToRem(setWidth) }"
 			v-model="industry_type"
@@ -88,4 +89,33 @@
 // 	--el-tag-hover-color: none !important;
 // 	color: #fff !important;
 // }
+::v-deep(.ztzf-select) {
+	.el-select__wrapper {
+		z-index: 1111;
+
+		/* 修改 Tooltip 面板样式 */
+		.el-popper.is-light {
+			background: #fff !important;
+			// box-shadow: none !important;
+			// border: none !important;
+			border-radius: 4px !important;
+
+			.el-select__selection {
+				max-width: 240px !important;
+
+				.el-select__selected-item {
+					.el-tag {
+						// background: #fff !important;
+						// color: #000;
+					}
+				}
+			}
+
+			.el-popper__arrow::before {
+				// background: #fff !important;
+				// border: 1px solid #8d8b8b !important;
+			}
+		}
+	}
+}
 </style>

--
Gitblit v1.9.3