feat: manage venue booth templates in job fair admin
Some checks failed
Node CI / build (14.x, macOS-latest) (push) Has been cancelled
Node CI / build (14.x, ubuntu-latest) (push) Has been cancelled
Node CI / build (14.x, windows-latest) (push) Has been cancelled
Node CI / build (16.x, macOS-latest) (push) Has been cancelled
Node CI / build (16.x, ubuntu-latest) (push) Has been cancelled
Node CI / build (16.x, windows-latest) (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
coverage CI / build (push) Has been cancelled
Node pnpm CI / build (16.x, macOS-latest) (push) Has been cancelled
Node pnpm CI / build (16.x, ubuntu-latest) (push) Has been cancelled
Node pnpm CI / build (16.x, windows-latest) (push) Has been cancelled

This commit is contained in:
2026-07-22 17:06:13 +08:00
parent 48325cefa4
commit 9d1dfe962f
6 changed files with 491 additions and 3 deletions

View File

@@ -19,6 +19,8 @@ export interface OutdoorFairItem {
address: string;
/** 展位数量 */
boothCount: number;
/** 已预定摊位数 */
reservedBoothCount?: number;
/** 举办时间 */
holdTime: string;
/** 截止时间 */
@@ -86,6 +88,8 @@ export interface OutdoorFairForm {
applyEndTime: string;
onlineApply: boolean;
photoUrl: string;
/** 更换场地时确认清空旧展位图与预定,并按新模板重建 */
resetBoothMap?: boolean;
}
/** 通用响应 */