diff --git a/components/NoData copy.vue b/components/NoData copy.vue deleted file mode 100644 index fc58b1c..0000000 --- a/components/NoData copy.vue +++ /dev/null @@ -1,117 +0,0 @@ - - - - - \ No newline at end of file diff --git a/pages/message/dialogBox/dialogBox copy.vue b/pages/message/dialogBox/dialogBox copy.vue deleted file mode 100644 index 3aee25a..0000000 --- a/pages/message/dialogBox/dialogBox copy.vue +++ /dev/null @@ -1,1351 +0,0 @@ - - - - - diff --git a/pages/message/msgList/msgList copy.vue b/pages/message/msgList/msgList copy.vue deleted file mode 100644 index a40640c..0000000 --- a/pages/message/msgList/msgList copy.vue +++ /dev/null @@ -1,938 +0,0 @@ - - - - - diff --git a/utils/encrypt copy.js b/utils/encrypt copy.js deleted file mode 100644 index 5841fcb..0000000 --- a/utils/encrypt copy.js +++ /dev/null @@ -1,45 +0,0 @@ -import CryptoJS from "crypto-js"; - -// 十六位十六进制数作为密钥 -const SECRET_KEY = CryptoJS.enc.Utf8.parse("xiaoyout!#@12345"); -// 十六位十六进制数作为密钥偏移量 -const SECRET_IV = CryptoJS.enc.Utf8.parse("xiaoyout!#@12345"); -/** - * 加密方法 - * @param data - * @returns {string} - */ -export function encrypt(data) { - if (typeof data === "object") { - try { - // eslint-disable-next-line no-param-reassign - data = JSON.stringify(data); - } catch (error) { - console.log("encrypt error:", error); - } - } - const dataHex = CryptoJS.enc.Utf8.parse(data); - const encrypted = CryptoJS.AES.encrypt(dataHex, SECRET_KEY, { - iv: SECRET_IV, - mode: CryptoJS.mode.CBC, - padding: CryptoJS.pad.Pkcs7 - }); - return encrypted.ciphertext.toString(); -} - -/** - * 解密方法 - * @param data - * @returns {string} - */ -export function decrypt(data) { - const encryptedHexStr = CryptoJS.enc.Hex.parse(data); - const str = CryptoJS.enc.Base64.stringify(encryptedHexStr); - const decrypt = CryptoJS.AES.decrypt(str, SECRET_KEY, { - iv: SECRET_IV, - mode: CryptoJS.mode.CBC, - padding: CryptoJS.pad.Pkcs7 - }); - const decryptedStr = decrypt.toString(CryptoJS.enc.Utf8); - return decryptedStr.toString(); -} \ No newline at end of file