Your Name 1 year ago
parent
commit
e36791a815
2 changed files with 1 additions and 1 deletions
  1. BIN
      public/logo.png
  2. 1
    1
      src/layouts/AuthLayout/components/Footer.jsx

BIN
public/logo.png View File


+ 1
- 1
src/layouts/AuthLayout/components/Footer.jsx View File

@@ -7,7 +7,7 @@ const { Footer } = Layout;
7 7
 const year = new Date().getFullYear();
8 8
 export default React.forwardRef((props, ref) => {
9 9
   const { app } = useModel('system');
10
-  const copyRight = `${app.company || '南京云致'} @ ${year}`;
10
+  const copyRight = `${app.company || ''} @ ${year}`;
11 11
 
12 12
   return (
13 13
     <Footer ref={ref} style={{ textAlign: 'center', color: 'rgba(0,0,0, 0.3)' }}>{copyRight}</Footer>