zhengyiming
5 天以前 eed2448d2e9d3dd2b1ec17d5c4ae74b102d793c5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* eslint-disable */
// @ts-ignore
import { request } from '@/utils/request';
 
/** 太平保险承保成功通知 POST /api/TaiPing/Success */
export async function success(body: Record<string, any>, options?: API.RequestConfig) {
  return request<any>('/api/TaiPing/Success', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}