From 30e858fa504b268b9b436afca0a1259cf6e8c488 Mon Sep 17 00:00:00 2001
From: MrShi <1878285526@qq.com>
Date: 星期二, 19 八月 2025 11:01:40 +0800
Subject: [PATCH] 优化

---
 admin/src/utils/request/decryption.js |    4 ----
 1 files changed, 0 insertions(+), 4 deletions(-)

diff --git a/admin/src/utils/request/decryption.js b/admin/src/utils/request/decryption.js
index ae73403..f539e72 100644
--- a/admin/src/utils/request/decryption.js
+++ b/admin/src/utils/request/decryption.js
@@ -10,15 +10,11 @@
 // const privateKey = uni.getStorageSync('aes_private_key')
 
 export function decryptedData (msg, data) {
-  console.log(msg)
-  console.log(data)
   // 鍙樻崲key:灏嗗綋鏈堜綅鏁板瓧绗︿覆鍘婚櫎锛岀劧鍚庡�掑簭
   const monthIndex = new Date().getMonth() + 1
   const msgStr = msg.slice(0, monthIndex) + msg.slice(monthIndex + 1)
   const reverseMsgStr = msgStr.split('').reverse().join('')
   const str1 = data.replace(/\s/g, '')
-  console.log(reverseMsgStr)
-  console.log(str1)
   // 瑙e瘑骞惰繑鍥炵粨鏋�
   return (
     JSON.parse(

--
Gitblit v1.9.3