Commit 3c9fd60ac766ddb9c33e0b94db06979171d00d83

Authored by ww
1 parent e2056a64

fix: 修复脚本管理转换脚本页面存在滚动条

... ... @@ -103,6 +103,7 @@
103 103 beforeFetch: (params: Recordable) => {
104 104 return { ...unref(getSearchInfo), ...params };
105 105 },
  106 + resizeHeightOffset: 30,
106 107 actionColumn: {
107 108 width: 180,
108 109 title: '操作',
... ...
... ... @@ -123,6 +123,7 @@
123 123 const [registerTable, { reload, setProps, setSelectedRowKeys }] = useTable({
124 124 api: ScriptPage,
125 125 ...defaultTableAttribtes,
  126 + resizeHeightOffset: 30,
126 127 beforeFetch: (params: Recordable) => {
127 128 return { ...unref(props.searchInfo), ...params };
128 129 },
... ...