From 05db93c48c69b1fc5db8bb2fce4c37014e92e450 Mon Sep 17 00:00:00 2001
From: doum <doum>
Date: 星期二, 19 八月 2025 10:01:30 +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