zl程序教程

您现在的位置是:首页 >  其它

当前栏目

修改 Table Form 的 label 样式

修改 Table 样式 Form Label
2023-09-11 14:15:29 时间

场景:

Table Form 默认的 labelWidth 为 80px,但是有些 label 文字比较多时,就会出现省略符

思路:

通过 formProps,修改 Form 的 labelWidth

方案:

<Table
  className={styles['tree-table']}
  dataSet={ds}
  columns={columns}
  autoHeight={{ type: 'maxHeight', diff: 100 }}
  queryBarProps={{
    formProps: {
      labelWidth: 100,
    },
  }}
/>

.