From 718a13554dbb2f99e27adeb7b95edfc3096dacc5 Mon Sep 17 00:00:00 2001 From: 董国庆 <364620639@qq.com> Date: 星期四, 26 六月 2025 14:24:27 +0800 Subject: [PATCH] 删除打印和路由返回 --- laboratory/src/utils/request.js | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/laboratory/src/utils/request.js b/laboratory/src/utils/request.js index 750d723..6e01fc4 100644 --- a/laboratory/src/utils/request.js +++ b/laboratory/src/utils/request.js @@ -19,14 +19,12 @@ if (config.method == 'get') { if (!config.params) config.params = {}; - console.log('请求数据',config.params) config.params = { ...config.params, } } if (config.method == 'post') { if (!config.data) config.data = {}; - console.log('请求数据',config.data) if (needEncrypt) { config.data = { param: encryptBySM4(config.data) }; } -- Gitblit v1.7.1