From 05951bf4f4eacc72552eb6763c640aa8b2067105 Mon Sep 17 00:00:00 2001
From: skyouc
Date: 星期二, 08 四月 2025 17:27:40 +0800
Subject: [PATCH] Merge branch 'devlop' of http://47.97.1.152:5880/r/wms-master 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