界面列表宽度优化

This commit is contained in:
季圣华
2021-05-24 23:28:58 +08:00
parent a152f3ae61
commit 51f670e42f
26 changed files with 92 additions and 43 deletions

View File

@@ -89,7 +89,7 @@
title: '#',
dataIndex: '',
key:'rowIndex',
width:60,
width:40,
align:"center",
customRender:function (t,r,index) {
return parseInt(index)+1;
@@ -98,17 +98,20 @@
{
title: '姓名',
align:"center",
dataIndex: 'name'
dataIndex: 'name',
width: 100,
},
{
title: '类型',
align:"center",
dataIndex: 'type'
dataIndex: 'type',
width: 100,
},
{
title: '操作',
dataIndex: 'action',
align:"center",
width: 150,
scopedSlots: { customRender: 'action' },
}
],