Browse Source

同济登录不加密及其他BUG修复

seimin 1 year ago
parent
commit
fe21b9fa83
2 changed files with 64 additions and 58 deletions
  1. 62 56
      pages/homePage/homePage.vue
  2. 2 2
      pages/receiptpage/receiptpage.vue

+ 62 - 56
pages/homePage/homePage.vue

@@ -692,67 +692,73 @@
692 692
           title: "登录中",
693 693
           mask: true,
694 694
         });
695
-        let data = {
696
-          username: this.username.trim(),
697
-          password: this.password.trim(),
698
-          type: 'APP'
699
-        };
700
-        data = {
701
-          k: this.encryptByEnAESLogin(JSON.stringify(data))
702
-        };
703
-        post("/auth/login", data).then((res) => {
704
-          uni.hideLoading();
705
-          if (res.status == 200) {
706
-            //获取角色信息
707
-            let role = res.user.user.role;
708
-            // 配药师和支助人员才能登录
709
-            let workerFlag = role.some((item) => item.rolecode === "worker");
710
-            let pharmacistFlag = role.some((item) => item.rolecode === "pharmacist");
711
-            if (!workerFlag && !pharmacistFlag) {
695
+        
696
+        get("/auth/getSysNameAndLogo").then((resultLog) => {
697
+          let data = {
698
+            username: this.username.trim(),
699
+            password: this.password.trim(),
700
+            type: 'APP'
701
+          };
702
+          if(resultLog.project !== 'tongji'){
703
+            data = {
704
+              k: this.encryptByEnAESLogin(JSON.stringify(data))
705
+            };
706
+          }
707
+          post("/auth/login", data).then((res) => {
708
+            uni.hideLoading();
709
+            if (res.status == 200) {
710
+              //获取角色信息
711
+              let role = res.user.user.role;
712
+              // 配药师和支助人员才能登录
713
+              let workerFlag = role.some((item) => item.rolecode === "worker");
714
+              let pharmacistFlag = role.some((item) => item.rolecode === "pharmacist");
715
+              if (!workerFlag && !pharmacistFlag) {
716
+                uni.showToast({
717
+                  icon: "none",
718
+                  title: "暂无权限登录!",
719
+                });
720
+                return;
721
+              }
722
+              if (this.savePassword[0].checked) {
723
+                //记住密码
724
+                uni.setStorageSync("username", this.encryptByEnAES(this.username)); //存储用户名
725
+                uni.setStorageSync("password", this.encryptByEnAES(this.password)); //存储密码
726
+                uni.setStorageSync("savePasswordTime", Date.now()); //存储当前时间戳
727
+              } else {
728
+                uni.removeStorageSync('username');
729
+                uni.removeStorageSync('password');
730
+                uni.removeStorageSync('savePasswordTime');
731
+              }
732
+              uni.setStorageSync("userData", res.user);
733
+              this.getWorkScheme(false, res.user.user.currentHospital.id); //获取当前启动中的工作分配方案
734
+              this.getHistorys(res.user.user.id); //获取上班历史记录
735
+              this.offWork("app", this.ip);
736
+              if (workerFlag) { //有配药师角色
737
+                if (!res.user.user.online) {
738
+                  this.online = false;
739
+                } else {
740
+                  this.online = true;
741
+                  // 建立websocket连接
742
+                  webHandle("receiptpage", "app", this.ip);
743
+                }
744
+              } else {
745
+                webHandle("pharmacy", "app", this.ip);
746
+              }
747
+            } else if (!res.status && !res.remarks) {
748
+              //如果乱填写域名或ip
712 749
               uni.showToast({
713 750
                 icon: "none",
714
-                title: "暂无权限登录!",
751
+                title: "服务器连接失败!请检查输入的域名(IP)及端口号",
715 752
               });
716
-              return;
717
-            }
718
-            if (this.savePassword[0].checked) {
719
-              //记住密码
720
-              uni.setStorageSync("username", this.encryptByEnAES(this.username)); //存储用户名
721
-              uni.setStorageSync("password", this.encryptByEnAES(this.password)); //存储密码
722
-              uni.setStorageSync("savePasswordTime", Date.now()); //存储当前时间戳
723
-            } else {
724
-              uni.removeStorageSync('username');
725
-              uni.removeStorageSync('password');
726
-              uni.removeStorageSync('savePasswordTime');
727
-            }
728
-            uni.setStorageSync("userData", res.user);
729
-            this.getWorkScheme(false, res.user.user.currentHospital.id); //获取当前启动中的工作分配方案
730
-            this.getHistorys(res.user.user.id); //获取上班历史记录
731
-            this.offWork("app", this.ip);
732
-            if (workerFlag) { //有配药师角色
733
-              if (!res.user.user.online) {
734
-                this.online = false;
735
-              } else {
736
-                this.online = true;
737
-                // 建立websocket连接
738
-                webHandle("receiptpage", "app", this.ip);
739
-              }
740 753
             } else {
741
-              webHandle("pharmacy", "app", this.ip);
754
+              uni.showToast({
755
+                icon: "none",
756
+                title: res.remarks ? res.remarks : "请求失败",
757
+              });
742 758
             }
743
-          } else if (!res.status && !res.remarks) {
744
-            //如果乱填写域名或ip
745
-            uni.showToast({
746
-              icon: "none",
747
-              title: "服务器连接失败!请检查输入的域名(IP)及端口号",
748
-            });
749
-          } else {
750
-            uni.showToast({
751
-              icon: "none",
752
-              title: res.remarks ? res.remarks : "请求失败",
753
-            });
754
-          }
755
-        });
759
+          });
760
+        })
761
+        
756 762
       },
757 763
       // 微信登录公用方法
758 764
       // user:当前登录用户对象

+ 2 - 2
pages/receiptpage/receiptpage.vue

@@ -283,9 +283,9 @@
283 283
     <!-- 底部扫一扫 -->
284 284
     <view class="bigScreenWrap">
285 285
       <bigScreen ref="bigscreen"></bigScreen>
286
-      <view class="more"></view>
286
+      <view class="more" v-if="arrayBigScreen.length"></view>
287 287
       <picker class="more_picker" @click.stop @change="execFilterBigScreen($event)" :value="indexBigScreen"
288
-        :range="arrayBigScreen" range-key="name">
288
+        :range="arrayBigScreen" range-key="name" v-if="arrayBigScreen.length">
289 289
         <view class="uni-input">{{ arrayBigScreen[indexBigScreen].name }}</view>
290 290
       </picker>
291 291
     </view>