diff --git a/.env.development b/.env.development deleted file mode 100644 index 2f34c73..0000000 --- a/.env.development +++ /dev/null @@ -1,22 +0,0 @@ -# 环境变量 (命名必须以 VITE_ 开头) -# 接口前缀 -VITE_API_PREFIX = '/dev-api' - -# 接口地址 -# VITE_API_BASE_URL = 'http://pms.dtyx.net:9158/' -VITE_API_BASE_URL = 'http://localhost:8888/' - -# 接口地址 (WebSocket) -VITE_API_WS_URL = 'ws://localhost:8000' - -# 地址前缀 -VITE_BASE = '/' - -# 是否开启开发者工具 -VITE_OPEN_DEVTOOLS = false - -# 应用配置面板 -VITE_APP_SETTING = true - -# 客户端ID -VITE_CLIENT_ID = 'ef51c9a3e9046c4f2ea45142c8a8344a' \ No newline at end of file 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 @@ - - - - - - - - - - 新建机场 - - - - - - - - - 运营中 - 停运 - - - - - - - - 查询 - - - - - - 重置 - - - - - - - - - - - - {{ record.status === '1' ? '运营中' : '停运' }} - - - - - 编辑 - - - 查看详情 - - - - 删除 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 运营中 - 停运 - - - - - - - - - - - - - - - \ 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 @@ - - - - - - - {{ record.projectName }} - - - - - - {{ record.biddingUnit }} - - - - - {{ record.budgetAmount }} - - - - - {{ record.deadline }} - - - - - {{ record.crawlingTime }} - - - - - {{ record.sourcePlatform }} - - - - - {{ record.biddingDocuments }} - - - - - - {{ getStatusText(record.status) }} - - - - - - - - 详情 - - - 报名 - - - - - - - - - - \ 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[] -}