seimin 1 year ago
parent
commit
2040a8914c
2 changed files with 3 additions and 3 deletions
  1. 1 1
      main.js
  2. 2 2
      pages/homePage/homePage.vue

+ 1 - 1
main.js

@@ -4,7 +4,7 @@ import App from './App'
4 4
 import wx from 'weixin-jsapi'
5 5
 // import VConsole from 'vconsole';
6 6
 // new VConsole();
7
-console.info('v2.4.28');
7
+console.info('v2.4.29');
8 8
 Vue.prototype.wx = wx //声明扫码
9 9
 Vue.prototype.audios = [] //待播放的语音集合
10 10
 // #endif

+ 2 - 2
pages/homePage/homePage.vue

@@ -165,7 +165,7 @@
165 165
         return tmpAES.toString();
166 166
       },
167 167
       //aes加密-登录
168
-      encryptByEnAES(data) {
168
+      encryptByEnAESLogin(data) {
169 169
         data = enc.Utf8.parse(data);
170 170
         let Key = enc.Utf8.parse('Aes2Util666AQWER');
171 171
         let tmpAES = AES.encrypt(data, Key, {
@@ -698,7 +698,7 @@
698 698
           type: 'APP'
699 699
         };
700 700
         data = {
701
-          k: this.encryptByEnAES(JSON.stringify(data))
701
+          k: this.encryptByEnAESLogin(JSON.stringify(data))
702 702
         };
703 703
         post("/auth/login", data).then((res) => {
704 704
           uni.hideLoading();