diff --git a/src/components/Table/src/hooks/useRender.ts b/src/components/Table/src/hooks/useRender.ts index bb52dab..f408099 100644 --- a/src/components/Table/src/hooks/useRender.ts +++ b/src/components/Table/src/hooks/useRender.ts @@ -94,7 +94,7 @@ export const useRender = { */ renderDict: (text, type, dictType?) => { if (type) { - return h(DictTag, { type: type, value: text, dictType: dictType || 'number' }) + return h(DictTag, { type: type, value: text || '', dictType: dictType || 'number' }) } return '' },