mirror of
https://github.com/m1ngsama/FUJI.git
synced 2025-12-25 02:56:38 +00:00
- 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>
15 lines
431 B
Text
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>
|