ソースを参照

账号密码登录的时候10天内记住账号密码

seimin 3 年 前
コミット
b1d3440ff3
共有5 個のファイルを変更した122 個の追加19 個の削除を含む
  1. 11 0
      package-lock.json
  2. 1 0
      package.json
  3. 1 1
      pages.json
  4. 96 13
      pages/homePage/homePage.vue
  5. 13 5
      pages/receiptpage/receiptpage.vue

+ 11 - 0
package-lock.json

@@ -9,6 +9,7 @@
9 9
       "version": "1.0.0",
10 10
       "license": "ISC",
11 11
       "dependencies": {
12
+        "crypto-js": "^4.1.1",
12 13
         "weixin-jsapi": "^1.1.0"
13 14
       },
14 15
       "devDependencies": {
@@ -92,6 +93,11 @@
92 93
         "node": ">=8.0.0"
93 94
       }
94 95
     },
96
+    "node_modules/crypto-js": {
97
+      "version": "4.1.1",
98
+      "resolved": "https://registry.npmmirror.com/crypto-js/-/crypto-js-4.1.1.tgz",
99
+      "integrity": "sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw=="
100
+    },
95 101
     "node_modules/err-code": {
96 102
       "version": "2.0.3",
97 103
       "resolved": "https://registry.npmmirror.com/err-code/download/err-code-2.0.3.tgz",
@@ -456,6 +462,11 @@
456 462
         "nan": "^2.14.1"
457 463
       }
458 464
     },
465
+    "crypto-js": {
466
+      "version": "4.1.1",
467
+      "resolved": "https://registry.npmmirror.com/crypto-js/-/crypto-js-4.1.1.tgz",
468
+      "integrity": "sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw=="
469
+    },
459 470
     "err-code": {
460 471
       "version": "2.0.3",
461 472
       "resolved": "https://registry.npmmirror.com/err-code/download/err-code-2.0.3.tgz",

+ 1 - 0
package.json

@@ -14,6 +14,7 @@
14 14
   "author": "",
15 15
   "license": "ISC",
16 16
   "dependencies": {
17
+    "crypto-js": "^4.1.1",
17 18
     "weixin-jsapi": "^1.1.0"
18 19
   },
19 20
   "devDependencies": {

+ 1 - 1
pages.json

@@ -187,7 +187,7 @@
187 187
   ],
188 188
   "globalStyle": {
189 189
     "navigationBarTextStyle": "black",
190
-    "navigationBarTitleText": "大势恒通转运系统",
190
+    "navigationBarTitleText": "医疗服务中心转运系统",
191 191
     "navigationBarBackgroundColor": "#F8F8F8",
192 192
     "backgroundColor": "#F8F8F8"
193 193
   }

+ 96 - 13
pages/homePage/homePage.vue

@@ -42,13 +42,21 @@
42 42
     </view>
43 43
     <!-- APP或H5账号密码登录页面 start -->
44 44
     <view class="login" v-if="!workSchemeType && (isApp||isH5AndPwd)">
45
-      <view class="title"> 转运系统登录 </view>
45
+      <view class="title"> 医疗服务中心转运系统 </view>
46 46
       <input class="login_input" v-model="username" placeholder="请输入用户名" />
47 47
       <input class="login_input" password v-model="password" placeholder="请输入密码" />
48 48
       <input class="login_input" v-show="!isH5AndPwd" v-model="ip" placeholder="请输入域名或IP地址,如:http(s)://192.168.3.108" />
49
+      <view class="savePassword">
50
+        <checkbox-group @change="checkboxChange">
51
+          <label>
52
+            <checkbox v-for="(item,index) in savePassword" :key="item.value" color="#42b983" :value="item.value"
53
+              :checked="item.checked" />记住密码
54
+          </label>
55
+        </checkbox-group>
56
+      </view>
49 57
       <view class="page_item_btn" @click="login()"> 登录 </view>
50 58
       <view class="tips" v-show="isH5AndPwd">
51
-        (此系统为药房使用,其他科室人员请勿进行操作)
59
+        (此系统为服务中心及药房人员使用,其他科室人员请勿进行操作)
52 60
       </view>
53 61
     </view>
54 62
     <!-- APP或H5账号密码登录页面 end -->
@@ -73,12 +81,24 @@
73 81
     webHandle
74 82
   } from "../../http/http.js";
75 83
   import showModel from "../../components/showModel/showModel.vue";
84
+  import {
85
+    AES,
86
+    mode,
87
+    pad,
88
+    enc
89
+  } from "crypto-js";
76 90
   export default {
77 91
     data() {
78 92
       return {
79 93
         //#ifdef H5
80 94
         type: "",
81 95
         //#endif
96
+        //记住密码
97
+        savePassword: [{
98
+          value: 'savePassword',
99
+          name: '记住密码',
100
+          checked: true
101
+        }],
82 102
         // 是否上班了
83 103
         online: undefined,
84 104
         // 是否是app
@@ -119,6 +139,39 @@
119 139
       };
120 140
     },
121 141
     methods: {
142
+      //aes加密
143
+      encryptByEnAES(data) {
144
+        let Key = "dsadmin";
145
+        let tmpAES = AES.encrypt(data, Key, {
146
+          mode: mode.CBC,
147
+          padding: pad.Pkcs7,
148
+        });
149
+        return tmpAES.toString();
150
+      },
151
+      //aes解密
152
+      encryptByDeAES(data) {
153
+        let Key = "dsadmin";
154
+        let tmpDeAES = AES.decrypt(data, Key, {
155
+          mode: mode.CBC,
156
+          padding: pad.Pkcs7,
157
+        });
158
+        return tmpDeAES.toString(enc.Utf8);
159
+      },
160
+      //记住密码
161
+      checkboxChange(e) {
162
+        console.log(e.detail.value);
163
+        let arr = e.detail.value;
164
+        if (arr.length) {
165
+          this.savePassword.forEach(v => {
166
+            v.checked = true;
167
+          })
168
+        } else {
169
+          this.savePassword.forEach(v => {
170
+            v.checked = false;
171
+          })
172
+        }
173
+        console.log(this.savePassword)
174
+      },
122 175
       // 锁定
123 176
       lock(data) {
124 177
         console.log(data);
@@ -477,7 +530,13 @@
477 530
           });
478 531
           return;
479 532
         }
480
-        uni.setStorageSync("ip", this.ip);
533
+        if (this.savePassword[0].checked) {
534
+          //记住密码
535
+          uni.setStorageSync("ip", this.ip);
536
+        } else {
537
+          // 不记住密码
538
+          uni.removeStorageSync('ip');
539
+        }
481 540
         changeIP(this.ip);
482 541
         uni.showLoading({
483 542
           title: "登录中",
@@ -503,9 +562,17 @@
503 562
               });
504 563
               return;
505 564
             }
565
+            if (this.savePassword[0].checked) {
566
+              //记住密码
567
+              uni.setStorageSync("username", this.encryptByEnAES(this.username)); //存储用户名
568
+              uni.setStorageSync("password", this.encryptByEnAES(this.password)); //存储密码
569
+              uni.setStorageSync("savePasswordTime", Date.now()); //存储当前时间戳
570
+            } else {
571
+              uni.removeStorageSync('username');
572
+              uni.removeStorageSync('password');
573
+              uni.removeStorageSync('savePasswordTime');
574
+            }
506 575
             uni.setStorageSync("userData", res.user);
507
-            uni.setStorageSync("username", this.username); //存储用户名
508
-            uni.setStorageSync("password", this.password); //存储密码
509 576
             this.getWorkScheme(false, res.user.user.currentHospital.id); //获取当前启动中的工作分配方案
510 577
             this.getHistorys(res.user.user.id); //获取上班历史记录
511 578
             this.offWork("app", this.ip);
@@ -633,11 +700,11 @@
633 700
               });
634 701
             } else if (this.state == "555") {
635 702
               // 如果需要绑定账号 并且 没有微信号
636
-              if(this.type){
703
+              if (this.type) {
637 704
                 uni.redirectTo({
638 705
                   url: `../bindUser/bindUser?type=${this.type}`
639 706
                 })
640
-              }else{
707
+              } else {
641 708
                 uni.redirectTo({
642 709
                   url: `../bindUser/bindUser`
643 710
                 })
@@ -681,11 +748,11 @@
681 748
             } else if (this.state == "555") {
682 749
               this.type = uni.getStorageSync("type"); //刷新页面后获取type
683 750
               // 如果需要绑定账号 并且 没有微信号
684
-              if(this.type){
751
+              if (this.type) {
685 752
                 uni.redirectTo({
686 753
                   url: `../bindUser/bindUser?type=${this.type}`
687 754
                 })
688
-              }else{
755
+              } else {
689 756
                 uni.redirectTo({
690 757
                   url: `../bindUser/bindUser`
691 758
                 })
@@ -877,9 +944,17 @@
877 944
         uni.removeStorageSync("setDepts"); //清空选择的科室,初始化
878 945
       }
879 946
       console.log(options);
880
-      this.ip = uni.getStorageSync("ip") || this.ip;
881
-      this.username = uni.getStorageSync("username") || this.username;
882
-      this.password = uni.getStorageSync("password") || this.password;
947
+      console.log(typeof uni.getStorageSync("savePasswordTime"));
948
+      if (Date.now() - uni.getStorageSync("savePasswordTime") < 10 * 24 * 60 * 60 * 1000) {
949
+        //记住密码,10天内有效
950
+        this.ip = uni.getStorageSync("ip") || this.ip;
951
+        if (uni.getStorageSync("username")) {
952
+          this.username = this.encryptByDeAES(uni.getStorageSync("username"));
953
+        }
954
+        if (uni.getStorageSync("password")) {
955
+          this.password = this.encryptByDeAES(uni.getStorageSync("password"));
956
+        }
957
+      }
883 958
       //#ifdef H5
884 959
       this.isApp = false;
885 960
       this.type = options.type || "";
@@ -939,6 +1014,14 @@
939 1014
       position: relative;
940 1015
       z-index: 999;
941 1016
 
1017
+      .savePassword {
1018
+        margin-top: 32rpx;
1019
+      }
1020
+
1021
+      /deep/ uni-checkbox:not([disabled]) .uni-checkbox-input:hover {
1022
+        border-color: #42b983 !important;
1023
+      }
1024
+
942 1025
       .login_input {
943 1026
         margin-top: 32rpx;
944 1027
         background-color: #ffffff;
@@ -955,7 +1038,7 @@
955 1038
 
956 1039
       .tips {
957 1040
         font-size: 28rpx;
958
-        color: #68686b;
1041
+        color: red;
959 1042
         margin-top: 16rpx;
960 1043
       }
961 1044
 

+ 13 - 5
pages/receiptpage/receiptpage.vue

@@ -175,7 +175,9 @@
175 175
                 item.taskType.associationType.value != 'patientTransport' &&
176 176
                 item.taskType.associationType.value != 'inspect' &&
177 177
                 item.taskType.associationType.value != 'other'
178
-              " hover-class="seimin-btn-hover"><smallScreen :sData="item" :sType="2">扫码</smallScreen></view>
178
+              " hover-class="seimin-btn-hover">
179
+              <smallScreen :sData="item" :sType="2">扫码</smallScreen>
180
+            </view>
179 181
             <!-- 如果不是静配,药配,标本配送,标本轮巡 -->
180 182
             <view class="page_item_btn_wrap" v-if="
181 183
                 selectedLabelSlots == '执行中' &&
@@ -190,7 +192,9 @@
190 192
                     item.gdState.value == 4
191 193
                       ? '50%'
192 194
                       : '100%',
193
-                }" hover-class="seimin-btn-hover"><smallScreen :sData="item" :sType="1">扫码</smallScreen></view>
195
+                }" hover-class="seimin-btn-hover">
196
+                <smallScreen :sData="item" :sType="1">扫码</smallScreen>
197
+              </view>
194 198
               <view v-if="
195 199
                   item.taskType.associationType.value != 'other' &&
196 200
                   item.gdState.value == 4
@@ -384,11 +388,15 @@
384 388
           let ip = uni.getStorageSync("ip"); //记住域名或ip
385 389
           let username = uni.getStorageSync("username"); //记住用户名
386 390
           let password = uni.getStorageSync("password"); //记住密码
391
+          let savePasswordTime = uni.getStorageSync("savePasswordTime"); //记住密码的时间戳
387 392
           let clientid = uni.getStorageSync("clientid");
388 393
           uni.clearStorageSync();
389
-          uni.setStorageSync("ip", ip); //记住域名或ip
390
-          uni.setStorageSync("username", username); //记住用户名
391
-          uni.setStorageSync("password", password); //记住密码
394
+          if (username) {
395
+            uni.setStorageSync("ip", ip); //记住域名或ip
396
+            uni.setStorageSync("username", username); //记住用户名
397
+            uni.setStorageSync("password", password); //记住密码
398
+            uni.setStorageSync("savePasswordTime", savePasswordTime); //记住密码的时间戳
399
+          }
392 400
           uni.setStorageSync("clientid", clientid);
393 401
           uni.navigateTo({
394 402
             url: "../homePage/homePage",