FUJI/src/pages/repair/history.astro
Clas Wen 7d5960ae87 Add comprehensive repair system functionality
- Add repair ticket form and detail components
- Implement repair history tracking and display
- Create repair event detail view
- Add repair landing section and modal components
- Update repair header and main page

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-29 23:56:33 +08:00

15 lines
431 B
Text

---
import BaseLayout from "../../layouts/BaseLayout.astro"
import RepairHeader from "../../components/header/RepairHeader.astro"
import RepairHistoryPage from "./RepairHistoryPage.tsx"
---
<BaseLayout primaryTitle="维修历史">
<section class="box-border">
<RepairHeader></RepairHeader>
<!-- Repair history page content -->
<RepairHistoryPage client:only="react"></RepairHistoryPage>
</section>
</BaseLayout>