From f6748abe2ad85f0600f905f22f92f53e603b885d Mon Sep 17 00:00:00 2001 From: zhengyiming <540361168@qq.com> Date: 星期一, 07 七月 2025 14:45:26 +0800 Subject: [PATCH] fix: 江佑保系统健壮性修复 --- src/services/api/TaiPing.ts | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/src/services/api/TaiPing.ts b/src/services/api/TaiPing.ts index c0153a7..98f44c4 100644 --- a/src/services/api/TaiPing.ts +++ b/src/services/api/TaiPing.ts @@ -2,6 +2,18 @@ // @ts-ignore import { request } from '@/utils/request'; +/** 涓�姝ュ嚭鍗� POST /api/TaiPing/Proposal */ +export async function proposal(body: API.ProposalInput, options?: API.RequestConfig) { + return request<API.ProposalOutput>('/api/TaiPing/Proposal', { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + }); +} + /** 澶钩淇濋櫓鎵夸繚鎴愬姛閫氱煡 POST /api/TaiPing/Success */ export async function success(body: Record<string, any>, options?: API.RequestConfig) { return request<any>('/api/TaiPing/Success', { -- Gitblit v1.9.1