U 优化配置中心表格视图某些情况下的展示效果

4.0
vapao 2022-10-08 15:55:53 +08:00
parent 8f037576f1
commit 0ccae4f461
2 changed files with 6 additions and 0 deletions

View File

@ -11,6 +11,7 @@ import { Action } from 'components';
import ComForm from './Form';
import { http, hasPermission } from 'libs';
import store from './store';
import styles from './index.module.css';
@observer
class TableView extends React.Component {
@ -32,6 +33,7 @@ class TableView extends React.Component {
}, {
title: 'Value',
dataIndex: 'value',
className: styles.value
}, {
title: '修改人',
width: 120,

View File

@ -29,3 +29,7 @@
text-overflow: ellipsis;
white-space: nowrap;
}
.value {
word-break: break-all;
}