feat: enhance CompanyAddModal with industry and scale enums, and update company list fetching
This commit is contained in:
5
src/types/company/list.d.ts
vendored
5
src/types/company/list.d.ts
vendored
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user