feat: 更新分组名称渲染逻辑

为分组名称添加了渲染函数,若未分组则显示“未分组”。
This commit is contained in:
danial
2025-04-27 17:04:05 +08:00
parent 2c43dd9fc3
commit c2cd419492

View File

@@ -62,7 +62,10 @@ export default defineComponent({
},
{
title: '分组名称',
dataIndex: 'groupName'
dataIndex: 'groupName',
render(data) {
return data.groupName || '未分组';
}
},
{
title: '账户情况',