add webuser API

Change-Id: I525da55355631991fd9554346b539c1c09593113
diff --git a/front/src/GamePage.js b/front/src/GamePage.js
index 2528acd..1de4d30 100644
--- a/front/src/GamePage.js
+++ b/front/src/GamePage.js
@@ -9,6 +9,7 @@
 import AccountCircleIcon from "@mui/icons-material/AccountCircle";

 import "./App.css";

 import { useNavigate } from "react-router-dom";

+import { API_BASE_URL } from "./config";

 

 const navItems = [

   { label: "电影", icon: <MovieIcon />, path: "/movie" },

@@ -46,7 +47,7 @@
 

   React.useEffect(() => {

     const area = areaTabs[activeTab].label;

-    fetch(`http://192.168.5.9:8080/api/get-seed-list-by-tag?tag=${encodeURIComponent(area)}`)

+    fetch(`${API_BASE_URL}/api/get-seed-list-by-tag?tag=${encodeURIComponent(area)}`)

       .then(res => res.json())

       .then(data => setGameList(data))

       .catch(() => setGameList([]));