feat: 更新分组名称渲染逻辑
为分组名称添加了渲染函数,若未分组则显示“未分组”。
This commit is contained in:
@@ -62,7 +62,10 @@ export default defineComponent({
|
||||
},
|
||||
{
|
||||
title: '分组名称',
|
||||
dataIndex: 'groupName'
|
||||
dataIndex: 'groupName',
|
||||
render(data) {
|
||||
return data.groupName || '未分组';
|
||||
}
|
||||
},
|
||||
{
|
||||
title: '账户情况',
|
||||
|
||||
Reference in New Issue
Block a user