From eab76cd34bff799686f68e6b70f86c9001e4913f Mon Sep 17 00:00:00 2001
From: zjj <3272660260@qq.com>
Date: 星期五, 23 五月 2025 09:41:21 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/devlop' into devlop

---
 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