提交 83374e52 authored 作者: 钟是志's avatar 钟是志

元数据字段的宽度设置

在一站式后台搞事情
上级 7c8ecaee
......@@ -103,11 +103,11 @@ export default class Index extends React.Component {
response = response.filter((x) => {
return x.title !== '流程进度';
});
for(let item of response){
if(!item.width){
item.width = 50; // 给一个默认宽度
}
}
// for(let item of response){
// if(!item.width){
// // item.width = 90; // 给一个默认宽度
// }
// }
if (response && response.length) {
this.setState(
{
......
......@@ -336,7 +336,7 @@ export function handleColumns(columns) {
点击查看
</a>
);
} else if (typeof text === 'string' && text.length > 50) {
} else if (typeof text === 'string' && text.length > 20) {
const oldTitle = text;
const newTitle = text.slice(0, 20) + '...';
return (
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论