Commit d86017cc by zhaochengxiang

增加小屏上的优化

parent 3ef16aff
...@@ -952,7 +952,7 @@ const ImportActionTable = (props) => { ...@@ -952,7 +952,7 @@ const ImportActionTable = (props) => {
title: '规范', title: '规范',
dataIndex: 'validate', dataIndex: 'validate',
//小屏幕下隐藏规范, 给编辑多点空间 //小屏幕下隐藏规范, 给编辑多点空间
width: (tableWidth>1300)?200:0, width: (tableWidth<1300 && editable)?0:200,
fixed: 'right', fixed: 'right',
render: (text, record, index) => { render: (text, record, index) => {
let shortCauses = []; let shortCauses = [];
......
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