From 11c9d33f94cb0cd46a69499c55a0ab0478328a35 Mon Sep 17 00:00:00 2001 From: wxy <714453439@qq.com> Date: Mon, 4 Aug 2025 16:25:43 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=A1=E6=81=AF=E6=A3=80=E7=B4=A2=E3=80=81?= =?UTF-8?q?=E7=88=AC=E8=99=AB=E8=AE=BE=E7=BD=AE=E7=9B=B8=E5=85=B3=E7=BB=84?= =?UTF-8?q?=E4=BB=B6=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../airport-management/index.vue | 431 ++++++++++++++++++ .../components/InformationTable.vue | 344 ++++++++++++++ .../bidding/information-retrieval/index.vue | 415 +++++++++++++++++ .../bidding/information-retrieval/types.ts | 64 +++ 4 files changed, 1254 insertions(+) create mode 100644 src/views/construction-operation-platform/airport-management/index.vue create mode 100644 src/views/project-management/bidding/information-retrieval/components/InformationTable.vue create mode 100644 src/views/project-management/bidding/information-retrieval/index.vue create mode 100644 src/views/project-management/bidding/information-retrieval/types.ts diff --git a/src/views/construction-operation-platform/airport-management/index.vue b/src/views/construction-operation-platform/airport-management/index.vue new file mode 100644 index 0000000..5a338ce --- /dev/null +++ b/src/views/construction-operation-platform/airport-management/index.vue @@ -0,0 +1,431 @@ + + + + + \ No newline at end of file diff --git a/src/views/project-management/bidding/information-retrieval/components/InformationTable.vue b/src/views/project-management/bidding/information-retrieval/components/InformationTable.vue new file mode 100644 index 0000000..e83096a --- /dev/null +++ b/src/views/project-management/bidding/information-retrieval/components/InformationTable.vue @@ -0,0 +1,344 @@ + + + + + \ No newline at end of file diff --git a/src/views/project-management/bidding/information-retrieval/index.vue b/src/views/project-management/bidding/information-retrieval/index.vue new file mode 100644 index 0000000..2ce8c8c --- /dev/null +++ b/src/views/project-management/bidding/information-retrieval/index.vue @@ -0,0 +1,415 @@ + + + + + \ No newline at end of file diff --git a/src/views/project-management/bidding/information-retrieval/types.ts b/src/views/project-management/bidding/information-retrieval/types.ts new file mode 100644 index 0000000..4ce4c47 --- /dev/null +++ b/src/views/project-management/bidding/information-retrieval/types.ts @@ -0,0 +1,64 @@ +// 项目状态枚举 +export enum ProjectStatus { + NOT_STARTED = 'not_started', + IN_PROGRESS = 'in_progress', + COMPLETED = 'completed', + PAUSED = 'paused', + CANCELLED = 'cancelled' +} + +// 项目数据接口 +export interface ProjectData { + id: number + projectName: string + unitCount: number + startDate: string + endDate: string + status: ProjectStatus + progress: number + manager: string + isMyProject: boolean + description?: string + location?: string + client?: string + budget?: number + team?: string[] +} + +// 选项卡类型 +export type TabKey = 'all' | 'my' | 'pending' + +// 项目筛选条件 +export interface ProjectFilter { + keyword?: string + status?: ProjectStatus + manager?: string + dateRange?: [string, string] +} + +// 项目统计信息 +export interface ProjectStats { + total: number + inProgress: number + completed: number + notStarted: number + myProjects: number +} + +// 招标详情 +export interface BiddingDetail { + id: number + projectName: string + biddingUnit: string + budgetAmount: number + deadline: string + crawlingTime: string + projectLocation: string + projectDuration: string + biddingScope: string + qualificationRequirements: string + sourcePlatform: string + biddingDocuments: string + biddingContent: string + contentItems?: string[] +}