From e19d522b1996ecd64654557bde30315502a2dc9b Mon Sep 17 00:00:00 2001 From: zjj <3272660260@qq.com> Date: 星期五, 23 五月 2025 18:06:19 +0800 Subject: [PATCH] #移库 --- rsf-admin/src/config/MyDataProvider.js | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/rsf-admin/src/config/MyDataProvider.js b/rsf-admin/src/config/MyDataProvider.js index cfc312f..897d7ab 100644 --- a/rsf-admin/src/config/MyDataProvider.js +++ b/rsf-admin/src/config/MyDataProvider.js @@ -60,7 +60,6 @@ // create a record create: async (resource, params) => { - console.log("create", resource, params); const res = await request.post(resource + "/save", params?.data); const { code, msg, data } = res.data; if (code === 200) { @@ -75,7 +74,6 @@ // update a record based on a patch update: async (resource, params) => { - console.log("update", resource, params); const res = await request.post(resource + "/update", { id: params.id, ...params.data, -- Gitblit v1.9.1