From 885d19a5852cb66e99a10f8e1bddf7e42a9fb3c8 Mon Sep 17 00:00:00 2001 From: wangqiujuan0808 <578331299@qq.com> Date: Mon, 12 May 2025 23:36:31 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web-ele/src/api/core/template.ts | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/apps/web-ele/src/api/core/template.ts b/apps/web-ele/src/api/core/template.ts index 373f11f..7838c1f 100644 --- a/apps/web-ele/src/api/core/template.ts +++ b/apps/web-ele/src/api/core/template.ts @@ -10,12 +10,6 @@ export namespace TemplateApi { page_size: number; template_type?: string; } - /** 新增模板*/ - export interface TemplateAddRequest { - name?: string; - template_type?: string; - description?: string; - } } /** @@ -32,14 +26,3 @@ export async function TemplateQueryPage( }, }); } -// 新增模板 - -export async function TemplateAdd(data: any) { - return cdcmRequestClient.post('/template', data, { - responseReturn: 'data', - headers: { - cdcm: token, - action: 52_012, - }, - }); -}