字典缓存

This commit is contained in:
仲么了
2023-12-28 11:27:03 +08:00
parent afeadbe26a
commit c1b08dabd4
7 changed files with 102 additions and 20 deletions

2
types/table.d.ts vendored
View File

@@ -56,7 +56,7 @@ declare global {
// 自定义组件/函数渲染
customRender?: string | Component
// 使用了 render 属性时,渲染前对字段值的预处理方法,请返回新值
renderFormatter?: (row: TableRow, field: TableColumn, value: any, column: VxeColumnProps, index: number) => any
renderFormatter?: (row: TableRow, field: TableColumn, value: any, column: any, index: number) => any
// 自定义渲染模板方法可返回html内容
customTemplate?: (
row: TableRow,