From 254816a712847b099184d84ca8631a50fb32f39e Mon Sep 17 00:00:00 2001
From: wujingjing <gersonwu@qq.com>
Date: 星期一, 03 三月 2025 15:24:09 +0800
Subject: [PATCH] 初步对接

---
 src/api/attach/index.ts |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/api/attach/index.ts b/src/api/attach/index.ts
index 6c7deaf..17e6a54 100644
--- a/src/api/attach/index.ts
+++ b/src/api/attach/index.ts
@@ -3,14 +3,14 @@
 export const getAttachTableList = () => {
 	return request({
 		url: '/attach/get_attach_table_list',
-		method: 'get',
+		method: 'POST',
 	});
 };
 
 export const queryAttachTableRecords = (params: any) => {
 	return request({
 		url: '/attach/query_attach_table_records',
-		method: 'get',
-		params,
+		method: 'POST',
+		data: params,
 	});
 };

--
Gitblit v1.9.3