花名册列宽修复

This commit is contained in:
Chengliang 2024-08-27 14:42:37 +08:00
parent 13da1c14bc
commit 87d395d197
1 changed files with 1 additions and 1 deletions

View File

@ -506,7 +506,7 @@ export default class Resource extends React.Component {
getTableWidth = (columns) => {
const columnLength = columns.filter((col)=>col.display === 'true').length;
if(columnLength>10){
return columnLength*150;
return columnLength*100;
}else{
return '100%'
}