From 06e4c8c1bad514992186d94a65c0dc6250e34716 Mon Sep 17 00:00:00 2001 From: zhangwei <1504152376@qq.com> Date: 星期四, 28 八月 2025 13:33:32 +0800 Subject: [PATCH] '解决招标文件pdf无法加载问题' --- src/api/types.ts | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/src/api/types.ts b/src/api/types.ts index 7939579..77504ed 100644 --- a/src/api/types.ts +++ b/src/api/types.ts @@ -1,3 +1,5 @@ +import type { TenderInfo } from "@/views/system/dept/utils/types"; + export type Result = { success: boolean; result: Array<any>; @@ -85,6 +87,7 @@ refreshToken: string | null; exRoles: any | null; // exRoles涓簄ull锛屽叿浣撶被鍨嬪彲鏍规嵁瀹為檯涓氬姟鍦烘櫙缁嗗寲 code: string; + isManager: boolean; customerExs: CustomerEx[]; expires: string; roles: []; @@ -116,3 +119,10 @@ code: string | number; result: RoleItem[]; }; + +export type ChangeDetail = { + message: string; + success: boolean; + code: string | number; + result: TenderInfo; +}; -- Gitblit v1.9.1