cfel-base-components 2.2.3 → 2.2.5
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/.vscode/settings.json +3 -0
- package/package.json +1 -1
- package/src/.umi/core/helmet.ts +10 -0
- package/src/.umi/core/helmetContext.ts +4 -0
- package/src/components/base-component/CopyRight/index.module.less +1 -1
- package/src/components/base-component/CopyRight/index.tsx +1 -1
- package/src/components/layout/index.scss +2 -1
- package/src/components/layout/index.tsx +1 -1
- package/src/components/universal-pages/cpcAccount/index.tsx +1 -2
- package/src/components/universal-pages/cpcRole/index.tsx +1 -1
package/package.json
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
// @ts-nocheck
|
|
2
|
+
// This file is generated by Umi automatically
|
|
3
|
+
// DO NOT CHANGE IT MANUALLY!
|
|
4
|
+
import React from 'react';
|
|
5
|
+
import { HelmetProvider } from '/Users/wujingang/Desktop/workspace/base-components/node_modules/@umijs/renderer-react';
|
|
6
|
+
import { context } from './helmetContext';
|
|
7
|
+
|
|
8
|
+
export const innerProvider = (container) => {
|
|
9
|
+
return React.createElement(HelmetProvider, { context }, container);
|
|
10
|
+
}
|
|
@@ -11,7 +11,7 @@ export default function CopyRight({
|
|
|
11
11
|
return (
|
|
12
12
|
<div className={cx("copy-right")}>
|
|
13
13
|
<span className={cx("company-name")}>
|
|
14
|
-
© {new Date().getFullYear() || ''}
|
|
14
|
+
© {new Date().getFullYear() || ''} 杭州骋风而来数字科技有限公司
|
|
15
15
|
</span>
|
|
16
16
|
<span className={cx("icp")}>
|
|
17
17
|
<a href="https://beian.miit.gov.cn/" target="_blank">浙ICP备2023015664号-1</a>
|