Browse Source

上下班修改

seimin 3 years ago
parent
commit
d0c18cd57a

+ 9 - 2
pages/homePage/homePage.vue

@@ -390,6 +390,13 @@
390
           uni.removeStorageSync("setDeptConfg"); //清空选择的科室配置,初始化
390
           uni.removeStorageSync("setDeptConfg"); //清空选择的科室配置,初始化
391
         }
391
         }
392
         if (obj.ruleType == 1) {
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
           this.GoWork();
401
           this.GoWork();
395
         } else if (obj.ruleType == 3) {
402
         } else if (obj.ruleType == 3) {
@@ -529,7 +536,7 @@
529
           mask: true,
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
           let userId = uni.getStorageSync("userData").user.id;
540
           let userId = uni.getStorageSync("userData").user.id;
534
           let setDeptConfg = uni.getStorageSync("setDeptConfg");
541
           let setDeptConfg = uni.getStorageSync("setDeptConfg");
535
           let postData = {
542
           let postData = {
@@ -546,7 +553,7 @@
546
             postData.deptIds = depts;
553
             postData.deptIds = depts;
547
             postData.quickId = setDeptConfg.id;
554
             postData.quickId = setDeptConfg.id;
548
             postData.classId = setDeptConfg.classesId;
555
             postData.classId = setDeptConfg.classesId;
549
-          }else if(this.ruleType == 2){
556
+          }else if(this.ruleType == 2 || this.ruleType == 1){
550
             postData.quickId = setDeptConfg.id;
557
             postData.quickId = setDeptConfg.id;
551
             postData.classId = setDeptConfg.classesId;
558
             postData.classId = setDeptConfg.classesId;
552
           }
559
           }

+ 2 - 2
pages/mypage/mypage.vue

@@ -260,7 +260,7 @@
260
               let workType = ress.settings ? ress.settings.workType : -1; //1是综合,2是自主
260
               let workType = ress.settings ? ress.settings.workType : -1; //1是综合,2是自主
261
               let ruleType = ress.settings ? ress.settings.ruleType : -1; //3是科室绑定人员,4是科室绑定分组,2是绑定分组
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
                 post("/auth/onOrOffLine", {
264
                 post("/auth/onOrOffLine", {
265
                   type: "off",
265
                   type: "off",
266
                   customWorking: "off",
266
                   customWorking: "off",
@@ -322,7 +322,7 @@
322
               uni.hideLoading();
322
               uni.hideLoading();
323
               uni.showToast({
323
               uni.showToast({
324
                 icon: "none",
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
       this.getMenu();
721
       this.getMenu();
722
       post("/auth/getUserWorkDept", {}).then((ress) => {
722
       post("/auth/getUserWorkDept", {}).then((ress) => {
723
         if (ress.status == 200) {
723
         if (ress.status == 200) {
724
-          // let userId = uni.getStorageSync("userData").user.id;
724
+          let userId = uni.getStorageSync("userData").user.id;
725
           let groupManager = ress.settings && ress.settings.groupManager; //当前工作组合选择的组
725
           let groupManager = ress.settings && ress.settings.groupManager; //当前工作组合选择的组
726
           let workType = ress.settings ? ress.settings.workType : -1; //1是综合,2是自主
726
           let workType = ress.settings ? ress.settings.workType : -1; //1是综合,2是自主
727
           let ruleType = ress.settings ? ress.settings.ruleType : -1; //3是科室绑定人员,4是科室绑定分组,2是绑定分组
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
             this.content.unshift({
730
             this.content.unshift({
731
               text: "负责科室",
731
               text: "负责科室",

+ 2 - 2
pages/setDept/setDept.vue

@@ -281,8 +281,8 @@
281
           if (res.status == 200) {
281
           if (res.status == 200) {
282
             this.zxzData = res.data;
282
             this.zxzData = res.data;
283
             if (res.settings) {
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
                 uni.setStorageSync('setDeptConfg', setDeptConfg);
286
                 uni.setStorageSync('setDeptConfg', setDeptConfg);
287
               }
287
               }
288
             }
288
             }