From a4856a5392f1a9db8e7400b21411acf96d496c5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A6=BA=E7=8B=A8?= <18119604035@163.com> Date: Tue, 28 Mar 2023 10:31:53 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A6=96=E9=A1=B5=E5=BA=95=E9=83=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/latest-learn/index.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/pages/latest-learn/index.tsx b/src/pages/latest-learn/index.tsx index 5926434..719d339 100644 --- a/src/pages/latest-learn/index.tsx +++ b/src/pages/latest-learn/index.tsx @@ -5,9 +5,11 @@ import { Row, Col, Spin, Image, Progress } from "antd"; import { Empty } from "../../compenents"; import mediaIcon from "../../assets/images/commen/icon-medal.png"; import { useNavigate } from "react-router-dom"; +import { useSelector } from "react-redux"; const LatestLearnPage = () => { const navigate = useNavigate(); + const systemConfig = useSelector((state: any) => state.systemConfig.value); const [loading, setLoading] = useState(false); const [courses, setCourses] = useState([]); @@ -114,7 +116,7 @@ const LatestLearnPage = () => { ))} -
~莫道桑榆晚,为霞尚满天~
+
{systemConfig.pcIndexFooterMsg}
); };