module-menu 0.3.5 → 0.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -2
- package/src/pages/Footer/index.jsx +11 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "module-menu",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.6",
|
|
4
4
|
"description": "城市大数据平台公共头部及尾部",
|
|
5
5
|
"main": "src/pages/index.jsx",
|
|
6
6
|
"scripts": {
|
|
@@ -16,7 +16,6 @@
|
|
|
16
16
|
},
|
|
17
17
|
"lint-staged": {
|
|
18
18
|
"**/*.less": "stylelint --syntax less",
|
|
19
|
-
"**/*.{js,jsx,ts,tsx}": "npm run lint-staged:js",
|
|
20
19
|
"*.{js,jsx,less,md,json}": [
|
|
21
20
|
"prettier --write"
|
|
22
21
|
],
|
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
import { DefaultFooter } from '@ant-design/pro-layout';
|
|
2
|
-
const Footer = ()=>{
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
<DefaultFooter
|
|
6
|
-
}
|
|
2
|
+
const Footer = () => {
|
|
3
|
+
const copyright = '中移系统集成有限公司';
|
|
4
|
+
return (
|
|
5
|
+
<DefaultFooter
|
|
6
|
+
copyright={copyright}
|
|
7
|
+
links={[]}
|
|
8
|
+
style={{ display: 'none' }}
|
|
9
|
+
/>
|
|
10
|
+
);
|
|
11
|
+
};
|
|
7
12
|
|
|
8
|
-
export default Footer;
|
|
13
|
+
export default Footer;
|