From 7e3160579cb83558c87ce44df0b74784f0c9f916 Mon Sep 17 00:00:00 2001
From: ZN <zhang_12370@163.com>
Date: 星期五, 20 三月 2026 13:50:28 +0800
Subject: [PATCH] fix: 修复离职日期编辑和删除按钮状态逻辑,优化表格操作样式

---
 src/components/PIMTable/PIMTable.vue |   79 ++++++++++++++++++++++++++++++++++++---
 1 files changed, 72 insertions(+), 7 deletions(-)

diff --git a/src/components/PIMTable/PIMTable.vue b/src/components/PIMTable/PIMTable.vue
index a418280..1a2ef5d 100644
--- a/src/components/PIMTable/PIMTable.vue
+++ b/src/components/PIMTable/PIMTable.vue
@@ -135,14 +135,12 @@
             <el-button
               v-show="o.type != 'upload'"
               v-if="o.showHide ? o.showHide(scope.row) : true"
-              :disabled="o.disabled ? o.disabled(scope.row) : false"
+              :disabled="isOperationDisabled(o, scope.row)"
               :plain="o.plain"
               type="primary"
               :style="{
-                color:
-                  o.name === '鍒犻櫎' || o.name === 'delete'
-                    ? '#f56c6c'
-                    : o.color,
+                color: getOperationColor(o, scope.row),
+                fontWeight: 'bold',
               }"
               link
               @click.stop="o.clickFun(scope.row)"
@@ -160,7 +158,7 @@
               ref="uploadRef"
               :multiple="o.multiple ? o.multiple : false"
               :limit="1"
-              :disabled="o.disabled ? o.disabled(scope.row) : false"
+              :disabled="isOperationDisabled(o, scope.row)"
               :accept="
                 o.accept
                   ? o.accept
@@ -188,7 +186,11 @@
               <el-button
                 link
                 type="primary"
-                :disabled="o.disabled ? o.disabled(scope.row) : false"
+                :disabled="isOperationDisabled(o, scope.row)"
+                :style="{
+                  color: getOperationColor(o, scope.row),
+                  fontWeight: 'bold',
+                }"
                 >{{ o.name }}</el-button
               >
             </el-upload>
@@ -373,6 +375,69 @@
   } else return "";
 };
 
+const isOperationDisabled = (operation, row) => {
+  if (!operation?.disabled) return false;
+  return typeof operation.disabled === "function"
+    ? !!operation.disabled(row)
+    : !!operation.disabled;
+};
+
+const parseHexToRgb = (hex) => {
+  const normalized = String(hex || "").trim().replace("#", "");
+  if (normalized.length === 3) {
+    const r = parseInt(normalized[0] + normalized[0], 16);
+    const g = parseInt(normalized[1] + normalized[1], 16);
+    const b = parseInt(normalized[2] + normalized[2], 16);
+    if ([r, g, b].some((n) => Number.isNaN(n))) return null;
+    return { r, g, b };
+  }
+  if (normalized.length === 6 || normalized.length === 8) {
+    const r = parseInt(normalized.slice(0, 2), 16);
+    const g = parseInt(normalized.slice(2, 4), 16);
+    const b = parseInt(normalized.slice(4, 6), 16);
+    if ([r, g, b].some((n) => Number.isNaN(n))) return null;
+    return { r, g, b };
+  }
+  return null;
+};
+
+const fadeColor = (color, alpha = 0.35) => {
+  const c = String(color || "").trim();
+  if (!c) return undefined;
+  if (c.startsWith("#")) {
+    const rgb = parseHexToRgb(c);
+    if (!rgb) return c;
+    return `rgba(${rgb.r}, ${rgb.g}, ${rgb.b}, ${alpha})`;
+  }
+  const rgbMatch = c.match(/^rgba?\(\s*([\d.]+)\s*,\s*([\d.]+)\s*,\s*([\d.]+)(?:\s*,\s*[\d.]+\s*)?\)$/i);
+  if (rgbMatch) {
+    const r = Number(rgbMatch[1]);
+    const g = Number(rgbMatch[2]);
+    const b = Number(rgbMatch[3]);
+    if ([r, g, b].some((n) => Number.isNaN(n))) return c;
+    return `rgba(${r}, ${g}, ${b}, ${alpha})`;
+  }
+  if (c.includes("--el-color-primary")) {
+    return "var(--el-color-primary-light-5)";
+  }
+  if (c.includes("--el-color-danger")) {
+    return "var(--el-color-danger-light-5)";
+  }
+  return "var(--el-text-color-disabled)";
+};
+
+const getOperationColor = (operation, row) => {
+  const baseColor =
+    operation?.name === "鍒犻櫎" || operation?.name === "delete"
+      ? "#D93025"
+      : operation?.color || "var(--el-color-primary)";
+
+  if (isOperationDisabled(operation, row)) {
+    return fadeColor(baseColor, 0.35);
+  }
+  return baseColor;
+};
+
 // 鏂囦欢鍙樺寲澶勭悊
 const handleChange = (file, fileList, index) => {
   if (fileList.length > 1) {

--
Gitblit v1.9.3