Browse Source

feat: 账号密码登录

seimin 9 months ago
parent
commit
0a165936ac
6 changed files with 74 additions and 2 deletions
  1. 7 0
      http/api.js
  2. 5 0
      node_modules/.package-lock.json
  3. 6 0
      package-lock.json
  4. 1 0
      package.json
  5. 39 2
      pages/homePage/homePage.vue
  6. 16 0
      utils/index.js

+ 7 - 0
http/api.js

@@ -202,3 +202,10 @@ export function api_sj(){
202 202
 export function api_incidentCategoryConsumable(data){
203 203
   return post("/user/data/fetchDataList/incidentCategoryConsumable", data);
204 204
 }
205
+
206
+/**
207
+ * 账号密码登录
208
+ */
209
+export function api_loginEncrypt(data){
210
+  return post("/auth/loginEncrypt", data);
211
+}

+ 5 - 0
node_modules/.package-lock.json

@@ -64,6 +64,11 @@
64 64
         "typedarray": "^0.0.6"
65 65
       }
66 66
     },
67
+    "node_modules/crypto-js": {
68
+      "version": "4.2.0",
69
+      "resolved": "https://registry.npmmirror.com/crypto-js/-/crypto-js-4.2.0.tgz",
70
+      "integrity": "sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q=="
71
+    },
67 72
     "node_modules/date-fns": {
68 73
       "version": "3.6.0",
69 74
       "resolved": "https://registry.npmmirror.com/date-fns/-/date-fns-3.6.0.tgz",

+ 6 - 0
package-lock.json

@@ -5,6 +5,7 @@
5 5
   "packages": {
6 6
     "": {
7 7
       "dependencies": {
8
+        "crypto-js": "^4.2.0",
8 9
         "date-fns": "^3.6.0",
9 10
         "lodash-es": "^4.17.21",
10 11
         "weixin-jsapi": "^1.1.0"
@@ -100,6 +101,11 @@
100 101
         "node": ">=10.0.0"
101 102
       }
102 103
     },
104
+    "node_modules/crypto-js": {
105
+      "version": "4.2.0",
106
+      "resolved": "https://registry.npmmirror.com/crypto-js/-/crypto-js-4.2.0.tgz",
107
+      "integrity": "sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q=="
108
+    },
103 109
     "node_modules/date-fns": {
104 110
       "version": "3.6.0",
105 111
       "resolved": "https://registry.npmmirror.com/date-fns/-/date-fns-3.6.0.tgz",

+ 1 - 0
package.json

@@ -3,6 +3,7 @@
3 3
     "production": "node ./upload/production.js"
4 4
   },
5 5
   "dependencies": {
6
+    "crypto-js": "^4.2.0",
6 7
     "date-fns": "^3.6.0",
7 8
     "lodash-es": "^4.17.21",
8 9
     "weixin-jsapi": "^1.1.0"

+ 39 - 2
pages/homePage/homePage.vue

@@ -7,9 +7,10 @@
7 7
 <script setup>
8 8
   // 添加路由拦截
9 9
   import '@/interceptor/routeInterceptor.js'
10
+  import { encryptByEnAESLogin } from '@/utils/index.js'
10 11
   import { onLoad } from '@dcloudio/uni-app'
11 12
   import { defaultColor } from '@/static/js/theme.js'
12
-  import { api_wechatLoginEncrypt } from "@/http/api.js"
13
+  import { api_wechatLoginEncrypt, api_loginEncrypt } from "@/http/api.js"
13 14
   import { useWechatAuth } from '@/share/useWechatAuth.js'
14 15
   import { useLoginSuccess } from '@/share/useLoginSuccess.js'
15 16
   import { useSetTitle } from '@/share/useSetTitle.js'
@@ -59,9 +60,45 @@
59 60
       });
60 61
     }
61 62
   }
63
+  
64
+  /**
65
+   * 账号密码登录
66
+   */
67
+  function loginEncrypt(username, password) {
68
+    uni.showLoading({
69
+      title: "登录中",
70
+      mask: true,
71
+    });
72
+    let postData = {
73
+        k: encryptByEnAESLogin(JSON.stringify({username, password}))
74
+    };
75
+    api_loginEncrypt(postData).then(res => {
76
+      uni.hideLoading();
77
+      if (res.state == 200) {
78
+        loginSuccess(res.data);
79
+      } else {
80
+        uni.showToast({
81
+          icon: 'none',
82
+          title: res.remarks || '请求数据失败!'
83
+        });
84
+      }
85
+    });
86
+  }
62 87
 
63 88
   onLoad((option) => {
64 89
     uni.clearStorageSync();
65
-    wechatLoginEncrypt();
90
+    // 获取当前页面的实例
91
+    const pages = getCurrentPages();
92
+    const currentPage = pages[pages.length - 1];
93
+    // 获取URL参数
94
+    const options = currentPage.options;
95
+    if (process.env.NODE_ENV === 'development' && options.username && options.password) {
96
+      // http://localhost:8081/user/#/?username=liaomingming&password=Dstech@123
97
+      // 本地开发调试用
98
+    	loginEncrypt(options.username, options.password)
99
+    } else {
100
+    	wechatLoginEncrypt();
101
+    }
102
+
66 103
   })
67 104
 </script>

+ 16 - 0
utils/index.js

@@ -1,4 +1,5 @@
1 1
 import { isDate } from 'date-fns';
2
+import { AES, mode, pad, enc } from "crypto-js";
2 3
 
3 4
 /**
4 5
  * @description 判断是否是时间戳
@@ -25,3 +26,18 @@ export const isTimestamp = (value) => {
25 26
 export const generateNumberArray = (start, end) => {
26 27
   return Array.from(new Array(end + 1).keys()).slice(start);
27 28
 }
29
+
30
+/**
31
+ * @description 登录加密
32
+ * @param {string} str 待加密的字符串  
33
+ * @return {string} 
34
+ */
35
+export const encryptByEnAESLogin = (str) => {
36
+  str = enc.Utf8.parse(str);
37
+  let Key = enc.Utf8.parse('Aes2Util666AQWER');
38
+  let tmpAES = AES.encrypt(str, Key, {
39
+    mode: mode.ECB,
40
+    padding: pad.Pkcs7,
41
+  });
42
+  return tmpAES.toString();
43
+}