#
luxiaotao1123
2024-02-07 b6019b10ba9b9b98d63a77c6d340fc049b3aa99f
#
1个文件已修改
1个文件已添加
1个文件已删除
64 ■■■■■ 已修改文件
zy-asrs-flow/src/components/Footer/index.jsx 27 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
zy-asrs-flow/src/components/Footer/index.tsx 35 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
zy-asrs-flow/tsconfig.json 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
zy-asrs-flow/src/components/Footer/index.jsx
New file
@@ -0,0 +1,27 @@
import { GithubOutlined } from '@ant-design/icons';
import { DefaultFooter } from '@ant-design/pro-components';
import React from 'react';
const Footer = () => {
  return (
    <DefaultFooter
      style={{
        background: 'none',
      }}
      links={[
        {
          key: 'Vincent Admin',
          title: 'Vincent Admin',
        },
        {
          key: 'github',
          title: <GithubOutlined />,
          href: 'https://github.com/luxiaotao1123',
          blankTarget: true,
        },
      ]}
    />
  );
};
export default Footer;
zy-asrs-flow/src/components/Footer/index.tsx
File was deleted
zy-asrs-flow/tsconfig.json
@@ -19,5 +19,5 @@
      "@@test/*": ["./src/.umi-test/*"]
    }
  },
  "include": ["./**/*.d.ts", "./**/*.ts", "./**/*.tsx", "src/app.tsx", "src/utils/icon-util.js", "src/pages/User/Login/index.jsx"]
  "include": ["./**/*.d.ts", "./**/*.ts", "./**/*.tsx", "src/app.tsx", "src/utils/icon-util.js", "src/pages/User/Login/index.jsx", "src/components/Footer/index.jsx"]
}