From 35cf8d289a09a6a4a34cf3d73fb41d84969ae4ee Mon Sep 17 00:00:00 2001 From: zhangwei <1504152376@qq.com> Date: 星期一, 18 八月 2025 17:30:26 +0800 Subject: [PATCH] '注册修改' --- src/views/system/dept/utils/types.ts | 30 +++++++++++++++++++++++++++++- 1 files changed, 29 insertions(+), 1 deletions(-) diff --git a/src/views/system/dept/utils/types.ts b/src/views/system/dept/utils/types.ts index cbf0301..2a03a0f 100644 --- a/src/views/system/dept/utils/types.ts +++ b/src/views/system/dept/utils/types.ts @@ -1,8 +1,11 @@ interface FormItemProps { + id: string; projectCode: string; // 椤圭洰缂栧彿锛堝繀濉級 projectName: string; // 椤圭洰鍚嶇О锛堝繀濉級 hangyepinmu: any | null; // 琛屼笟鍝佺洰锛堝彲閫夛級 + hangyepinmuName?: any | null; caigoufangshi: any | null; // 閲囪喘鏂瑰紡锛堝彲閫夛級 + caigoufangshiName: any | null; // 閲囪喘鏂瑰紡锛堝彲閫夛級 caigouyusuan: any | null; // 閲囪喘棰勭畻锛堝彲閫夛級 dingbiaoguize: any | null; // 瀹氭爣瑙勫垯锛堝彲閫夛級 baomingfei: any | null; // 鎶ュ悕璐癸紙鍙�夛級 @@ -31,8 +34,33 @@ dailiXiangmujingli: string | null; // 浠g悊鏈烘瀯椤圭洰缁忕悊锛堝彲閫夛級 dailijingliLianxidianhua: string | null; // 浠g悊鏈烘瀯椤圭洰缁忕悊鑱旂郴鐢佃瘽锛堝彲閫夛級 } + +// 鎷涙爣淇℃伅绫诲瀷瀹氫箟 +interface TenderInfo { + // 涓婚敭Id + id: string; + // 鎶曟爣鎶ュ悕寮�濮嬫椂闂达紝鏍煎紡涓簓yyy-MM-dd HH:mm:ss + projectName: string; + toubiaoStartDate: string; + // 鎶曟爣鎶ュ悕缁撴潫鏃堕棿锛屾牸寮忎负yyyy-MM-dd HH:mm:ss + toubiaoEndDate: string; + // 寮�鏍囨椂闂达紝鏍煎紡涓簓yyy-MM-dd HH:mm:ss + kaibiaoDate: string; + // 鎷涙爣鏂囦欢锛岄暱搴�1-512瀛楃 + zhaobiaowenjian: string; + biangengwenjian: string; + // 闄勪欢锛屽彲涓虹┖锛屾渶澶ч暱搴�512瀛楃 + fujian?: string; + // 寮�鏍囧湴鐐癸紝闀垮害1-250瀛楃 + kaibiaodidian: string; +} interface FormProps { formInline: FormItemProps; } -export type { FormItemProps, FormProps }; +interface TenderProps { + formInline: TenderInfo; + isChange: boolean; +} + +export type { FormItemProps, FormProps, TenderInfo, TenderProps }; -- Gitblit v1.9.1