From 12707238212e1778452637be492d23ff827c6cac Mon Sep 17 00:00:00 2001 From: xjs Date: Tue, 29 Apr 2025 18:01:23 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/AntechamberWishList/index.tsx | 224 ++++++++++--------- 1 file changed, 113 insertions(+), 111 deletions(-) diff --git a/src/components/AntechamberWishList/index.tsx b/src/components/AntechamberWishList/index.tsx index 8296078..74bb0ab 100644 --- a/src/components/AntechamberWishList/index.tsx +++ b/src/components/AntechamberWishList/index.tsx @@ -52,123 +52,125 @@ export default function AntechamberWishList() { }; return ( -
-
-
-
- wish-list -
- - -
- 切换志愿表 - arrow + <> + {wishList.length > 0 ? ( +
+
+
+
+ wish-list
- - - - -
- - 请选择志愿表 - - - - + + +
+ 切换志愿表 + arrow
- -
- {wishList.map((item: any) => ( -
-
-
-
- - {item.tableName} - -
- {item.type} -
-
-
-
- - {item.locationName}·{item.score} - - - {item.subjectClaim.split(",").join("/")} - -
-
-
-
- {item.createTime} -
-
handleNavigate(item)} - > - 智能分析 - -
-
+ + + + +
+ + 请选择志愿表 + + + +
+
+
+ {wishList.map((item: any) => ( +
+
+
+
+ + {item.tableName} + +
+ {item.type} +
+
+
+
+ + {item.locationName}·{item.score} + + + {item.subjectClaim.split(",").join("/")} + +
+
+
+
+ {item.createTime} +
+
handleNavigate(item)} + > + 智能分析 + +
+
+
+
+ ))}
- ))} -
- - - <> - - - -
- - {wishList.length > 0 ? ( -
- icon -
-
- - {wishList[0].tableName} - -
- {wishList[0].type} -
-
-
- - {wishList[0].locationName}·{wishList[0].score} - - - {wishList[0].subjectClaim.split(",").join("/")} - -
+ + + <> + + +
-
handleNavigate(wishList[0])} - > - 智能分析 - + +
+ icon +
+
+ + {wishList[0].tableName} + +
+ {wishList[0].type} +
+
+
+ + {wishList[0].locationName}·{wishList[0].score} + + + {wishList[0].subjectClaim.split(",").join("/")} + +
+
+
handleNavigate(wishList[0])} + > + 智能分析 + +
- ) : ( - <> - )} -
-
+
+ ) : ( + <> + )} + ); }