feat: enhance CompanyAddModal with industry and scale enums, and update company list fetching

This commit is contained in:
2026-06-25 12:52:58 +08:00
parent 9e0afffef2
commit 7fe22c3dfb
2 changed files with 104 additions and 25 deletions

View File

@@ -22,9 +22,11 @@ declare namespace API.CompanyList {
code: string;
description: string;
companyContactList?: CompanyContact[];
contactPerson?: string;
contactPersonPhone?: string;
notPassReason?: string;
updateTime?: string;
status?: 1 | 2; // 1 通过, 2 驳回
status?: 0 | 1 | 2; // 0 待审核, 1 通过, 2 驳回
}
export interface Params {
@@ -35,6 +37,7 @@ declare namespace API.CompanyList {
industry?: string;
scale?: string;
code?: string;
status?: 0 | 1 | 2;
startDate?: string;
endDate?: string;
}