5 天以前 91c82965b2d987452ca276e3a03b48c8dcda2ae9
src/adapter/vxe-table.ts
@@ -1,19 +1,19 @@
import type { VxeTableGridOptions } from '..\packages\effects\plugins\src\vxe-table';
import type { Recordable } from '..\packages\types\src';
import type { VxeTableGridOptions } from '@vben/plugins/vxe-table';
import type { Recordable } from '@vben/types';
import type { ComponentPropsMap, ComponentType } from './component';
import { h } from 'vue';
import { IconifyIcon } from '..\packages\icons\src';
import { $te } from '..\packages\locales\src';
import { IconifyIcon } from '@vben/icons';
import { $te } from '@vben/locales';
import {
  AsyncVxeColumn,
  AsyncVxeTable,
  createRequiredValidation,
  setupVbenVxeTable,
  useVbenVxeGrid as useGrid,
} from '..\packages\effects\plugins\src\vxe-table';
} from '@vben/plugins/vxe-table';
import {
  erpCountInputFormatter,
  erpNumberFormatter,
@@ -22,7 +22,7 @@
  formatPast2,
  isFunction,
  isString,
} from '..\packages\utils\src';
} from '@vben/utils';
import {
  Button,
@@ -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);
      },
    });
@@ -374,4 +405,4 @@
  ...rest: Parameters<typeof useGrid<T, ComponentType, ComponentPropsMap>>
) => useGrid<T, ComponentType, ComponentPropsMap>(...rest);
export type * from '..\packages\effects\plugins\src\vxe-table';
export type * from '@vben/plugins/vxe-table';