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 (
-
-
-
-
-

-
-
-
-
- 切换志愿表
-

+ <>
+ {wishList.length > 0 ? (
+
+
+
+
+
-
-
-
-
-
-
- 请选择志愿表
-
-
-
-
+
+
+
+ 切换志愿表
+
-
-
- {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 ? (
-
-

-
-
-
- {wishList[0].tableName}
-
-
- {wishList[0].type}
-
-
-
-
- {wishList[0].locationName}·{wishList[0].score}
-
-
- {wishList[0].subjectClaim.split(",").join("/")}
-
-
+
+
+ <>>
+
+
+
-
handleNavigate(wishList[0])}
- >
- 智能分析
-

+
+
+

+
+
+
+ {wishList[0].tableName}
+
+
+ {wishList[0].type}
+
+
+
+
+ {wishList[0].locationName}·{wishList[0].score}
+
+
+ {wishList[0].subjectClaim.split(",").join("/")}
+
+
+
+
handleNavigate(wishList[0])}
+ >
+ 智能分析
+

+
- ) : (
- <>>
- )}
-
-
+
+ ) : (
+ <>>
+ )}
+ >
);
}