From 17062f511f1a714e8bf091c9916af8f70872858d Mon Sep 17 00:00:00 2001 From: wupengfei <834520024@qq.com> Date: 星期五, 27 六月 2025 09:30:04 +0800 Subject: [PATCH] feat: 接口 --- src/services/api/InsuranceOrder.ts | 30 ++++++++++++++++++++++++++++++ 1 files changed, 30 insertions(+), 0 deletions(-) diff --git a/src/services/api/InsuranceOrder.ts b/src/services/api/InsuranceOrder.ts index 8a53ec5..f9dd132 100644 --- a/src/services/api/InsuranceOrder.ts +++ b/src/services/api/InsuranceOrder.ts @@ -229,6 +229,21 @@ }); } +/** 杩愯惀绔� 瀵煎嚭鎶曚繚璁㈠崟 POST /api/InsuranceOrder/GetInsurancePageBackExport */ +export async function getInsurancePageBackExport( + body: API.GetInsurancePageInput, + options?: API.RequestConfig +) { + return request<any>('/api/InsuranceOrder/GetInsurancePageBackExport', { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + }); +} + /** 瀵煎嚭鎶曚繚璁㈠崟 POST /api/InsuranceOrder/GetInsurancePageExport */ export async function getInsurancePageExport( body: API.GetInsurancePageInput, @@ -367,6 +382,21 @@ }); } +/** 淇濆崟瀹℃牳 POST /api/InsuranceOrder/InsurancePolicyAudit */ +export async function insurancePolicyAudit( + body: API.InsurancePolicyAuditInput, + options?: API.RequestConfig +) { + return request<number>('/api/InsuranceOrder/InsurancePolicyAudit', { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + }); +} + /** 淇敼淇濆崟浜哄憳淇℃伅 POST /api/InsuranceOrder/UpdateInsuranceStaffInfo */ export async function updateInsuranceStaffInfo( body: API.UpdateInsuranceStaffInfoInput, -- Gitblit v1.9.1