|
@@ -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>
|