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:
parent
0fe580ea89
commit
54666ebe14
@ -4,6 +4,9 @@ import {
|
|||||||
BuildOutlined,
|
BuildOutlined,
|
||||||
ImportOutlined,
|
ImportOutlined,
|
||||||
TeamOutlined,
|
TeamOutlined,
|
||||||
|
ApartmentOutlined,
|
||||||
|
DollarOutlined,
|
||||||
|
AuditOutlined,
|
||||||
} from '@ant-design/icons';
|
} from '@ant-design/icons';
|
||||||
import { useNavigate } from 'umi';
|
import { useNavigate } from 'umi';
|
||||||
|
|
||||||
@ -26,6 +29,21 @@ const QuickActionIcons: React.FC = () => {
|
|||||||
title: '导入员工',
|
title: '导入员工',
|
||||||
path: '/company/employees',
|
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 (
|
return (
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user