Commit ee5a3279 by zhaochengxiang

模型表结构表头拖拉问题

parent d4f7bfa6
...@@ -470,7 +470,6 @@ export const ImportActionTable = (props) => { ...@@ -470,7 +470,6 @@ export const ImportActionTable = (props) => {
dataIndex: 'valueRange', dataIndex: 'valueRange',
editable: true, editable: true,
ellipsis: true, ellipsis: true,
width: 100,
render: (text, record, __) => { render: (text, record, __) => {
return ( return (
<React.Fragment> <React.Fragment>
...@@ -1173,7 +1172,9 @@ export const ImportActionTable = (props) => { ...@@ -1173,7 +1172,9 @@ export const ImportActionTable = (props) => {
pagination={false} pagination={false}
sticky sticky
scroll={{ scroll={{
x: '100%', x: 1500,
//解决屏幕尺寸窄时,字段不好横向拖动的问题
y: tableWidth>1500?'100%':630,
}} }}
/> />
</Form> </Form>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment