Explorar el Código

add 备案号

visuddhinanda hace 2 años
padre
commit
75452b0ba8

+ 4 - 1
dashboard/src/components/library/FooterBar.tsx

@@ -1,5 +1,6 @@
 import { Link } from "react-router-dom";
 import { Link } from "react-router-dom";
 import { Layout, Row, Col, Typography } from "antd";
 import { Layout, Row, Col, Typography } from "antd";
+import BeiAn from "../general/BeiAn";
 
 
 const { Footer } = Layout;
 const { Footer } = Layout;
 const { Paragraph } = Typography;
 const { Paragraph } = Typography;
@@ -26,7 +27,9 @@ const FooterBarWidget = () => {
         </Col>
         </Col>
       </Row>
       </Row>
       <Row>
       <Row>
-        <Col>Powered by PCDS</Col>
+        <Col>
+          <BeiAn />
+        </Col>
       </Row>
       </Row>
     </Footer>
     </Footer>
   );
   );

+ 7 - 1
dashboard/src/components/studio/Footer.tsx

@@ -1,5 +1,11 @@
+import BeiAn from "../general/BeiAn";
+
 const FooterWidget = () => {
 const FooterWidget = () => {
-  return <div>Studio Footer</div>;
+  return (
+    <div>
+      <BeiAn />
+    </div>
+  );
 };
 };
 
 
 export default FooterWidget;
 export default FooterWidget;