修改Footer
原来的Footer
修改代码
在src\components\Footer\index.tsx修改代码为
import { GithubOutlined } from '@ant-design/icons';
import { DefaultFooter } from '@ant-design/pro-layout';
import NoticeIcon from '../NoticeIcon/NoticeIcon';
import { HeartTwoTone } from '@ant-design/icons';
export default () => {
const currentYear = new Date().getFullYear();
const defaultMessage = "听我一言-技术修改"
return (
<DefaultFooter
copyright={`${currentYear} ${defaultMessage}`}
links={[
{
key: 'listening2',
title: '听我一言',
href: 'https://blog.csdn.net/halo_hsuh?spm=1000.2115.3001.5113',
blankTarget: true,
},
{
key: 'hearticon',
title: <HeartTwoTone twoToneColor="#eb2f96" />,
href: 'https://blog.csdn.net/halo_hsuh?spm=1000.2115.3001.5113',
blankTarget: true,
},
{
key: 'listening2',
title: '听我一言',
href: 'https://blog.csdn.net/halo_hsuh?spm=1000.2115.3001.5113',
blankTarget: true,
},
]}
/>
);
};
效果
Ant design pro (一) 环境搭建篇 Ant Design Pro (二) 添加页面+使用mock(无model) Ant Design Pro (三) Golang+Gin后端简单实现 Ant Design Pro (四) 解决调用接口返回错误时出现的BizErro
参考: 插入图标
|