commit | 9eb3e0517e8c4d9e90adcdb1115dd162e5919809 | [log] [tgz] |
---|---|---|
author | zhaoyumao <2451882060@qq.com> | Sun Jun 08 00:26:32 2025 +0800 |
committer | zhaoyumao <2451882060@qq.com> | Sun Jun 08 00:28:47 2025 +0800 |
tree | 63c0dc29a7ed7bec29cf03ed69a28e380366f87f | |
parent | 96e467ea584de35d6f6d4312435a1b837c187407 [diff] |
修改了所有前端整体设计 整合现有的创作中心,悬赏中心 修改菜单栏,对应的路由定向 整体界面为深色,界面配色,加入了星球基本样式和背景色设计动效 修改了悬赏中心的一点小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 {