feat: expand header shortcuts to 6 icons

Add 3 new quick action icons to header: import buildings, create charge standard, and audit registration.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Your Name 2026-04-01 10:56:14 +08:00
parent 0fe580ea89
commit 54666ebe14

View File

@ -4,6 +4,9 @@ import {
BuildOutlined,
ImportOutlined,
TeamOutlined,
ApartmentOutlined,
DollarOutlined,
AuditOutlined,
} from '@ant-design/icons';
import { useNavigate } from 'umi';
@ -26,6 +29,21 @@ const QuickActionIcons: React.FC = () => {
title: '导入员工',
path: '/company/employees',
},
{
icon: <ApartmentOutlined style={{ fontSize: 20 }} />,
title: '导入楼栋',
path: '/asset/houses',
},
{
icon: <DollarOutlined style={{ fontSize: 20 }} />,
title: '创建收费标准',
path: '/charge/standard',
},
{
icon: <AuditOutlined style={{ fontSize: 20 }} />,
title: '登记审核',
path: '/examine/house_registers_audit',
},
];
return (