From c8b32b8bca79a116cfab70eb8c389907b664c9ca Mon Sep 17 00:00:00 2001 From: MrShi <1878285526@qq.com> Date: 星期三, 23 四月 2025 10:43:14 +0800 Subject: [PATCH] 提交 --- h5/utils/decryption.js | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/h5/utils/decryption.js b/h5/utils/decryption.js index ae73403..9324979 100644 --- a/h5/utils/decryption.js +++ b/h5/utils/decryption.js @@ -10,15 +10,15 @@ // const privateKey = uni.getStorageSync('aes_private_key') export function decryptedData (msg, data) { - console.log(msg) - console.log(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) + // console.log(reverseMsgStr) + // console.log(str1) // 瑙e瘑骞惰繑鍥炵粨鏋� return ( JSON.parse( -- Gitblit v1.9.3