From 908fae82bbf0476df66c9213b49a8199571e8333 Mon Sep 17 00:00:00 2001
From: 云 <2163098428@qq.com>
Date: 星期三, 29 七月 2026 11:05:38 +0800
Subject: [PATCH] fix(datepicker): 修复日期选择器时间格式化问题

---
 src/adapter/vxe-table.ts |   33 ++++++++++++++++++++++++++++++++-
 1 files changed, 32 insertions(+), 1 deletions(-)

diff --git a/src/adapter/vxe-table.ts b/src/adapter/vxe-table.ts
index 554ae3a..01f7374 100644
--- a/src/adapter/vxe-table.ts
+++ b/src/adapter/vxe-table.ts
@@ -120,11 +120,42 @@
     });
 
     // 琛ㄦ牸閰嶇疆椤瑰彲浠ョ敤 cellRender: { name: 'CellTag' },
+    // props: { data: [{value, color}], labels?: {[value]: label} }
+    // 鏀寔涓ょ鍖归厤妯″紡:
+    //   1. 绮剧‘鍖归厤: data 鍜� labels 涓兘鏄簿纭�� (鐘舵��/绫诲瀷鏋氫妇)
+    //   2. 闃堝�煎尮閰�: data 涓洪檷搴忛槇鍊�, label 鏄剧ず鍘熷鏁板�� (璇勫垎)
     vxeUI.renderer.add('CellTag', {
       renderTableDefault(renderOpts, params) {
         const { props } = renderOpts;
         const { column, row } = params;
-        return h(Tag, { color: props?.color }, () => row[column.field]);
+        const rawValue = row[column.field];
+
+        // 鏌ユ壘鏄剧ず鏂囨湰
+        let label = rawValue;
+        if (props?.labels && rawValue !== undefined && rawValue !== null) {
+          label = props.labels[rawValue] ?? rawValue;
+        }
+
+        // 鏌ユ壘棰滆壊: 浼樺厛绮剧‘鍖归厤锛屽惁鍒欓槇鍊煎尮閰�
+        let color: string | undefined;
+        if (props?.data) {
+          const exact = props.data.find(
+            (item: any) => item.value === rawValue,
+          );
+          if (exact) {
+            color = exact.color;
+          } else {
+            const sorted = [...props.data]
+              .filter((item: any) => typeof item.value === 'number')
+              .sort((a: any, b: any) => b.value - a.value);
+            const threshold = sorted.find(
+              (item: any) => Number(rawValue) >= item.value,
+            );
+            if (threshold) color = threshold.color;
+          }
+        }
+
+        return h(Tag, { color }, () => label);
       },
     });
 

--
Gitblit v1.9.3