diff --git a/apps/web-antd/src/views/system/client/data.tsx b/apps/web-antd/src/views/system/client/data.tsx index 6240e9c0..f9e52c73 100644 --- a/apps/web-antd/src/views/system/client/data.tsx +++ b/apps/web-antd/src/views/system/client/data.tsx @@ -51,9 +51,13 @@ export const columns: VxeGridProps['columns'] = [ if (!row.grantTypeList) { return '无'; } - return renderDictTags( - row.grantTypeList, - getDict(DictEnum.SYS_GRANT_TYPE), + return ( +
+ {renderDictTags( + row.grantTypeList, + getDict(DictEnum.SYS_GRANT_TYPE), + )} +
); }, }, diff --git a/apps/web-antd/src/views/system/client/index.vue b/apps/web-antd/src/views/system/client/index.vue index 1ba490fc..979a3ade 100644 --- a/apps/web-antd/src/views/system/client/index.vue +++ b/apps/web-antd/src/views/system/client/index.vue @@ -63,7 +63,6 @@ const gridOptions: VxeGridProps = { rowConfig: { isHover: true, keyField: 'id', - height: 90, }, id: 'system-client-index', };