feat: Complete Admin Phase 6 Job screens migration

- Migrate 4 admin job screens to OS_Wrapper (dashboard, list, detail, form)
- Add enableKeyboardHandling to reject-input form screen
- Update TASK-005 with Admin Phase 6 completion status
- Total: 132 files migrated (~79% complete)

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
2026-04-14 12:24:58 +08:00
parent eb64c30d49
commit 0823a1c26a
6 changed files with 57 additions and 40 deletions

View File

@@ -1,5 +1,5 @@
/* eslint-disable @typescript-eslint/no-unused-vars */
import { Spacing, StackCustom, ViewWrapper } from "@/components";
import { OS_Wrapper, Spacing, StackCustom } from "@/components";
import {
IconPublish,
IconReject,
@@ -42,7 +42,7 @@ export default function AdminJob() {
return (
<>
<ViewWrapper>
<OS_Wrapper>
<AdminTitlePage title="Job Vacancy" />
<Spacing />
<StackCustom gap={"xs"}>
@@ -50,7 +50,7 @@ export default function AdminJob() {
<AdminComp_BoxDashboard key={i} item={item} />
))}
</StackCustom>
</ViewWrapper>
</OS_Wrapper>
</>
);
}