提交 2e611ac7 authored 作者: 钟是志's avatar 钟是志

28378 表头宽度 有问题 前两个字段不是元数据里面的

上级 3078c0d1
......@@ -104,6 +104,14 @@ export default class Index extends React.Component {
service.getColumns(workId).then((response) => {
if(!response || !Array.isArray(response)){
response = [];
}
for(let item of response){
if(item.dataIndex === 'taskName' && !item.width){
item.width = 200;
}
if(item.dataIndex === 'createTime' && !item.width){
item.width = 200;
}
}
response = response.filter((x) => {
return x.title !== '流程进度';
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论