| | |
| | | }); |
| | | } |
| | | |
| | | /** 运营端 导出投保订单 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, |