修改了所有前端整体设计
整合现有的创作中心,悬赏中心
修改菜单栏,对应的路由定向
整体界面为深色,界面配色,加入了星球基本样式和背景色设计动效
修改了悬赏中心的一点小bug,留出个人信息卡片,排行榜通知公告空间

Change-Id: Ie119b297df2754c0a4d7f0d36fade9563bca3ac5
diff --git a/ruoyi-system/src/main/java/bounty/controller/BountyController.java b/ruoyi-system/src/main/java/bounty/controller/BountyController.java
index 7c47e1b..333887f 100644
--- a/ruoyi-system/src/main/java/bounty/controller/BountyController.java
+++ b/ruoyi-system/src/main/java/bounty/controller/BountyController.java
@@ -37,6 +37,7 @@
     @GetMapping("/{id}")
     public ResponseEntity<Bounty> getBountyById(@PathVariable Long id) {
         Bounty bounty = bountyService.getBountyById(id);
+        System.out.println(bounty);
         if (bounty == null) {
             return ResponseEntity.notFound().build();
         } else {