From a1221fcaa6d7712a63f922e60393d959d1a1d386 Mon Sep 17 00:00:00 2001 From: zjj <3272660260@qq.com> Date: 星期四, 17 四月 2025 16:08:43 +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