From 4ca2696896ec6682b3dfa9991a2a7c2742a43ae7 Mon Sep 17 00:00:00 2001 From: wxy <714453439@qq.com> Date: Mon, 4 Aug 2025 16:57:59 +0800 Subject: [PATCH] =?UTF-8?q?Revert=20"=E4=BF=A1=E6=81=AF=E6=A3=80=E7=B4=A2?= =?UTF-8?q?=E3=80=81=E7=88=AC=E8=99=AB=E8=AE=BE=E7=BD=AE=E7=9B=B8=E5=85=B3?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=E6=8F=90=E4=BA=A4"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 11c9d33f94cb0cd46a69499c55a0ab0478328a35. --- .../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 deletions(-) delete mode 100644 src/views/construction-operation-platform/airport-management/index.vue delete mode 100644 src/views/project-management/bidding/information-retrieval/components/InformationTable.vue delete mode 100644 src/views/project-management/bidding/information-retrieval/index.vue delete 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 deleted file mode 100644 index 5a338ce..0000000 --- a/src/views/construction-operation-platform/airport-management/index.vue +++ /dev/null @@ -1,431 +0,0 @@ - - - - - \ 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 deleted file mode 100644 index e83096a..0000000 --- a/src/views/project-management/bidding/information-retrieval/components/InformationTable.vue +++ /dev/null @@ -1,344 +0,0 @@ - - - - - \ 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 deleted file mode 100644 index 2ce8c8c..0000000 --- a/src/views/project-management/bidding/information-retrieval/index.vue +++ /dev/null @@ -1,415 +0,0 @@ - - - - - \ 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 deleted file mode 100644 index 4ce4c47..0000000 --- a/src/views/project-management/bidding/information-retrieval/types.ts +++ /dev/null @@ -1,64 +0,0 @@ -// 项目状态枚举 -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[] -}