seimin 3 anni fa
parent
commit
d0c18cd57a

+ 9 - 2
pages/homePage/homePage.vue

@@ -390,6 +390,13 @@
390 390
           uni.removeStorageSync("setDeptConfg"); //清空选择的科室配置,初始化
391 391
         }
392 392
         if (obj.ruleType == 1) {
393
+          uni.setStorageSync("setDeptConfg", {
394
+            configName: this.quickObj.configName,
395
+            workSchemeType: this.workSchemeType,
396
+            ruleType: this.quickObj.ruleType,
397
+            id: this.quickObj.id,
398
+            classesId: this.quickObj.classes.id,
399
+          });
393 400
           //自由抢单,直接上班
394 401
           this.GoWork();
395 402
         } else if (obj.ruleType == 3) {
@@ -529,7 +536,7 @@
529 536
           mask: true,
530 537
         });
531 538
         //自选排班,科室绑定人员,科室绑定分组,绑定分组
532
-        if (this.workSchemeType == 2 && (this.ruleType == 2||this.ruleType == 3||this.ruleType == 4)) {
539
+        if (this.workSchemeType == 2 && (this.ruleType == 1 || this.ruleType == 2||this.ruleType == 3||this.ruleType == 4)) {
533 540
           let userId = uni.getStorageSync("userData").user.id;
534 541
           let setDeptConfg = uni.getStorageSync("setDeptConfg");
535 542
           let postData = {
@@ -546,7 +553,7 @@
546 553
             postData.deptIds = depts;
547 554
             postData.quickId = setDeptConfg.id;
548 555
             postData.classId = setDeptConfg.classesId;
549
-          }else if(this.ruleType == 2){
556
+          }else if(this.ruleType == 2 || this.ruleType == 1){
550 557
             postData.quickId = setDeptConfg.id;
551 558
             postData.classId = setDeptConfg.classesId;
552 559
           }

+ 2 - 2
pages/mypage/mypage.vue

@@ -260,7 +260,7 @@
260 260
               let workType = ress.settings ? ress.settings.workType : -1; //1是综合,2是自主
261 261
               let ruleType = ress.settings ? ress.settings.ruleType : -1; //3是科室绑定人员,4是科室绑定分组,2是绑定分组
262 262
               // 自主下班,并且是科室绑定人员,科室绑定分组,绑定分组
263
-              if (workType == 2 && (ruleType == 2||ruleType == 3||ruleType == 4)) {
263
+              if (workType == 2 && (ruleType == 1||ruleType == 2||ruleType == 3||ruleType == 4)) {
264 264
                 post("/auth/onOrOffLine", {
265 265
                   type: "off",
266 266
                   customWorking: "off",
@@ -322,7 +322,7 @@
322 322
               uni.hideLoading();
323 323
               uni.showToast({
324 324
                 icon: "none",
325
-                title: "请求失败!",
325
+                title: ress.msg || "请求失败!",
326 326
               });
327 327
             }
328 328
           });

+ 2 - 2
pages/receiptpage/receiptpage.vue

@@ -721,11 +721,11 @@
721 721
       this.getMenu();
722 722
       post("/auth/getUserWorkDept", {}).then((ress) => {
723 723
         if (ress.status == 200) {
724
-          // let userId = uni.getStorageSync("userData").user.id;
724
+          let userId = uni.getStorageSync("userData").user.id;
725 725
           let groupManager = ress.settings && ress.settings.groupManager; //当前工作组合选择的组
726 726
           let workType = ress.settings ? ress.settings.workType : -1; //1是综合,2是自主
727 727
           let ruleType = ress.settings ? ress.settings.ruleType : -1; //3是科室绑定人员,4是科室绑定分组,2是绑定分组
728
-          if (workType == 2 && (ruleType == 3 || (ruleType == 4 && groupManager))) {
728
+          if (workType == 2 && (ruleType == 3 || (ruleType == 4 && userId == groupManager.manager))) {
729 729
             //自选排班,科室绑定分组,当前登陆人是组长
730 730
             this.content.unshift({
731 731
               text: "负责科室",

+ 2 - 2
pages/setDept/setDept.vue

@@ -281,8 +281,8 @@
281 281
           if (res.status == 200) {
282 282
             this.zxzData = res.data;
283 283
             if (res.settings) {
284
-              if (res.settings.groupManager) {
285
-                setDeptConfg.selectGroupId = res.settings.groupManager.groupIds;
284
+              if (res.settings.groupManager && this.changedept == 1) {
285
+                setDeptConfg.selectGroupId = res.settings.groupManager.id;
286 286
                 uni.setStorageSync('setDeptConfg', setDeptConfg);
287 287
               }
288 288
             }