ソースを参照

自选排班新增工作模式

seimin 3 年 前
コミット
3a0740aea5
共有4 個のファイルを変更した172 個の追加36 個の削除を含む
  1. 140 21
      pages/homePage/homePage.vue
  2. 9 3
      pages/mypage/mypage.vue
  3. 6 2
      pages/receiptpage/receiptpage.vue
  4. 17 10
      pages/setDept/setDept.vue

+ 140 - 21
pages/homePage/homePage.vue

@@ -18,9 +18,12 @@
18 18
           :refresher-triggered="triggered" @refresherrefresh="refresherrefresh" @refresherrestore="refresherrestore"
19 19
           @scrolltolower="scrolltolower" :scroll-top="scroll_top" @refresherabort="refresherabort" @scroll="scroll">
20 20
           <radio-group @change="radioChange1">
21
-            <label class="goWorkSelect-item" v-for="item in zxzData" :key="item.str">
21
+            <label class="goWorkSelect-item relative" v-for="item in zxzData" :key="item.str">
22 22
               <radio :value="item.str" :checked="item.checked" />
23
-              <view>{{ item.configName }}</view>
23
+              <picker class="picker" v-if="item.ruleType == 4" @change="bindPickerChange" :value="index" :range="groups" range-key="groupName">
24
+                <view>{{ item.configName }}</view>
25
+              </picker>
26
+              <view v-else>{{ item.configName }}</view>
24 27
             </label>
25 28
           </radio-group>
26 29
         </scroll-view>
@@ -70,6 +73,10 @@
70 73
     <showModel :title="modelsLock.title" :icon="modelsLock.icon" :disjunctor="modelsLock.disjunctor"
71 74
       :content="modelsLock.content" @ok="okLock" @cancel="cancelLock" :operate="modelsLock.operate" @know="knowLock">
72 75
     </showModel>
76
+    <!-- 自选排班-科室绑定分组-弹窗 -->
77
+    <showModel :title="models2.title" :icon="models2.icon" :disjunctor="models2.disjunctor"
78
+      :content="models2.content" @ok="ok2" @cancel="cancel2" :operate="models2.operate">
79
+    </showModel>
73 80
   </view>
74 81
 </template>
75 82
 
@@ -136,6 +143,14 @@
136 143
         modelsLock: {
137 144
           disjunctor: false,
138 145
         },
146
+        groups: [],
147
+        index: 0,
148
+        quickObj:{},//选择的上班快捷组合
149
+        // 自选排班-科室绑定分组-弹窗model
150
+        models2: {
151
+          disjunctor: false,
152
+        },
153
+        objHistory:{}
139 154
       };
140 155
     },
141 156
     methods: {
@@ -237,6 +252,9 @@
237 252
       // 选择历史上班记录
238 253
       radioChange2(value) {
239 254
         this.objHistory = JSON.parse(value.target.value);
255
+        if(!this.objHistory.deptList){
256
+          this.objHistory.deptList = [];
257
+        }
240 258
         let depts = this.objHistory.deptList.map((item) => item.dept).join();
241 259
         this.models = {
242 260
           disjunctor: true,
@@ -309,30 +327,98 @@
309 327
           }
310 328
         );
311 329
       },
330
+      //确定
331
+      ok2() {
332
+        uni.setStorageSync("manager", this.groups[this.index].manager);//储存分组组长
333
+        this.models2.disjunctor = false;
334
+        //进入设置科室界面
335
+        uni.setStorageSync("setDeptConfg", {
336
+          //存设置科室的配置信息
337
+          configName: this.quickObj.configName,
338
+          workSchemeType: this.workSchemeType,
339
+          ruleType: this.quickObj.ruleType,
340
+          id: this.quickObj.id,
341
+          classesId: this.quickObj.classes.id,
342
+          selectGroupId:this.groups[this.index].id,
343
+        });
344
+        uni.navigateTo({
345
+          url: `../setDept/setDept?configName=${this.quickObj.configName}&id=${this.quickObj.id}`,
346
+        });
347
+      },
348
+      //取消
349
+      cancel2() {
350
+        this.models2.disjunctor = false;
351
+      },
352
+      //工作组合的工作模式是2(科室绑定分组)或4(绑定分组)
353
+      bindPickerChange: function(e) {
354
+          console.log('picker发送选择改变,携带值为', e.detail.value)
355
+          this.index = e.target.value;
356
+          let userId = uni.getStorageSync("userData").user.id;
357
+          let groupObj = this.groups[this.index];
358
+          if(groupObj.manager == userId){
359
+            //当前登陆人是该分组组长-弹窗确定
360
+            this.models2 = {
361
+              disjunctor: true,
362
+              title: "提示",
363
+              content: `请确认您选择了‘${this.quickObj.classes.name}’班次,并选择了‘${groupObj.groupName}’分组!`,
364
+              icon: "warn",
365
+              operate: {
366
+                ok: "确定",
367
+                cancel: "取消",
368
+              },
369
+            };
370
+          }else{
371
+            //当前登陆人不是该分组组长
372
+            uni.setStorageSync("setDeptConfg", {
373
+              //存设置科室的配置信息
374
+              configName: this.quickObj.configName,
375
+              workSchemeType: this.workSchemeType,
376
+              ruleType: this.quickObj.ruleType,
377
+              id: this.quickObj.id,
378
+              classesId: this.quickObj.classes.id,
379
+            });
380
+            this.GoWork(this.groups);
381
+          }
382
+      },
312 383
       // 选择上班快捷组合
313 384
       radioChange1(value) {
314 385
         let obj = JSON.parse(value.target.value);
315 386
         console.log(obj);
387
+        this.quickObj = obj;
316 388
         this.ruleType = obj.ruleType;
389
+        if (uni.getStorageSync("setDeptConfg")) {
390
+          uni.removeStorageSync("setDeptConfg"); //清空选择的科室配置,初始化
391
+        }
317 392
         if (obj.ruleType == 1) {
318 393
           //自由抢单,直接上班
319
-          if (uni.getStorageSync("setDeptConfg")) {
320
-            uni.removeStorageSync("setDeptConfg"); //清空选择的科室配置,初始化
321
-          }
322 394
           this.GoWork();
323 395
         } else if (obj.ruleType == 3) {
324 396
           //科室绑定人员,进入设置科室界面
325 397
           uni.setStorageSync("setDeptConfg", {
326 398
             //存设置科室的配置信息
327
-            configName: obj.configName,
399
+            configName: this.quickObj.configName,
328 400
             workSchemeType: this.workSchemeType,
329
-            ruleType: obj.ruleType,
330
-            id: obj.id,
331
-            classesId: obj.classes.id,
401
+            ruleType: this.quickObj.ruleType,
402
+            id: this.quickObj.id,
403
+            classesId: this.quickObj.classes.id,
332 404
           });
333 405
           uni.navigateTo({
334
-            url: `../setDept/setDept?configName=${obj.configName}&id=${obj.id}`,
406
+            url: `../setDept/setDept?configName=${this.quickObj.configName}&id=${this.quickObj.id}`,
407
+          });
408
+        }else if(obj.ruleType == 2){
409
+          //绑定分组,直接上班
410
+          uni.setStorageSync("setDeptConfg", {
411
+            //存设置科室的配置信息
412
+            configName: this.quickObj.configName,
413
+            workSchemeType: this.workSchemeType,
414
+            ruleType: this.quickObj.ruleType,
415
+            id: this.quickObj.id,
416
+            classesId: this.quickObj.classes.id,
335 417
           });
418
+          this.GoWork(obj.groups);
419
+        }else if(obj.ruleType == 4){
420
+          //科室绑定分组,弹出分组选择
421
+          this.groups = obj.groups;
336 422
         }
337 423
       },
338 424
       // 连接上下班的websocket  baba type如果是wx则是微信,app则是app;有app必有ip
@@ -436,23 +522,43 @@
436 522
         }
437 523
       },
438 524
       // 上班
439
-      GoWork() {
525
+      GoWork(groups) {
526
+        console.log(groups)
440 527
         uni.showLoading({
441 528
           title: "加载中",
442 529
           mask: true,
443 530
         });
444
-        if (this.workSchemeType == 2 && this.ruleType == 3) {
445
-          let obj = uni.getStorageSync("setDeptConfg");
446
-          let depts = this.objHistory.deptList.map((item) => item.id).join();
531
+        //自选排班,科室绑定人员,科室绑定分组,绑定分组
532
+        if (this.workSchemeType == 2 && (this.ruleType == 2||this.ruleType == 3||this.ruleType == 4)) {
447 533
           let userId = uni.getStorageSync("userData").user.id;
448
-          post("/auth/onOrOffLine", {
534
+          let setDeptConfg = uni.getStorageSync("setDeptConfg");
535
+          let postData = {
449 536
             type: "on",
450 537
             customWorking: "on",
451
-            quickId: obj.id,
452
-            deptIds: depts,
453 538
             userId: userId,
454
-            classId: uni.getStorageSync("setDeptConfg").classesId
455
-          }).then((result) => {
539
+          };
540
+          console.log(postData,this.objHistory)
541
+          if(this.ruleType == 3||this.ruleType == 4){
542
+            if(!this.objHistory.deptList){
543
+              this.objHistory.deptList = [];
544
+            }
545
+            let depts = this.objHistory.deptList.map((item) => item.id).join();
546
+            postData.deptIds = depts;
547
+            postData.quickId = setDeptConfg.id;
548
+            postData.classId = setDeptConfg.classesId;
549
+          }else if(this.ruleType == 2){
550
+            postData.quickId = setDeptConfg.id;
551
+            postData.classId = setDeptConfg.classesId;
552
+          }
553
+          console.log(postData,this.ruleType,setDeptConfg)
554
+          if(groups){
555
+            postData.groupIds = groups.map(v=>v.id).toString();
556
+            if(this.ruleType == 4){
557
+              //科室绑定分组,并且当前登陆人不是组长
558
+              delete postData.deptIds;
559
+            }
560
+          }
561
+          post("/auth/onOrOffLine", postData).then((result) => {
456 562
             uni.hideLoading();
457 563
             if (result.status == 200) {
458 564
               let obj = uni.getStorageSync("userData");
@@ -483,10 +589,14 @@
483 589
             }
484 590
           });
485 591
         } else {
486
-          post("/auth/onOrOffLine", {
592
+          let postData = {
487 593
             type: "on",
488 594
             classId: uni.getStorageSync("setDeptConfg").classesId
489
-          }).then((res) => {
595
+          };
596
+          if(groups){//caocao
597
+            postData.groupIds = groups.map(v=>v.id).toString();
598
+          }
599
+          post("/auth/onOrOffLine", postData).then((res) => {
490 600
             uni.hideLoading();
491 601
             if (res.status == 200) {
492 602
               let obj = uni.getStorageSync("userData");
@@ -1106,6 +1216,15 @@
1106 1216
             border-bottom: 2rpx solid #e5e9ed;
1107 1217
             padding: 16rpx;
1108 1218
 
1219
+            &.relative{
1220
+              position:relative;
1221
+              .picker{
1222
+                position: absolute;
1223
+                width: 100%;
1224
+                padding-left:64rpx;
1225
+              }
1226
+            }
1227
+
1109 1228
             button {
1110 1229
               font-size: 32rpx;
1111 1230
               height: 52rpx;

+ 9 - 3
pages/mypage/mypage.vue

@@ -258,9 +258,9 @@
258 258
           this.getWorkSchemeAndRule().then((ress) => {
259 259
             if (ress.status == 200) {
260 260
               let workType = ress.settings ? ress.settings.workType : -1; //1是综合,2是自主
261
-              let ruleType = ress.settings ? ress.settings.ruleType : -1; //3是科室绑定人员
262
-              // 自主下班,并且是科室绑定人员
263
-              if (workType == 2 && ruleType == 3) {
261
+              let ruleType = ress.settings ? ress.settings.ruleType : -1; //3是科室绑定人员,4是科室绑定分组,2是绑定分组
262
+              // 自主下班,并且是科室绑定人员,科室绑定分组,绑定分组
263
+              if (workType == 2 && (ruleType == 2||ruleType == 3||ruleType == 4)) {
264 264
                 post("/auth/onOrOffLine", {
265 265
                   type: "off",
266 266
                   customWorking: "off",
@@ -276,6 +276,9 @@
276 276
                     if (uni.getStorageSync("setDepts")) {
277 277
                       uni.removeStorageSync("setDepts"); //清空选择的科室,初始化
278 278
                     }
279
+                    if (uni.getStorageSync("manager")) {
280
+                      uni.removeStorageSync("manager"); //清空选择的分组组长,初始化
281
+                    }
279 282
                     uni.setStorageSync("userData", obj);
280 283
                     this.getCurrentUser();
281 284
                     this.getTabData();
@@ -299,6 +302,9 @@
299 302
                     if (uni.getStorageSync("setDepts")) {
300 303
                       uni.removeStorageSync("setDepts"); //清空选择的科室,初始化
301 304
                     }
305
+                    if (uni.getStorageSync("manager")) {
306
+                      uni.removeStorageSync("manager"); //清空选择的分组组长,初始化
307
+                    }
302 308
                     let obj = uni.getStorageSync("userData");
303 309
                     obj.user.online = false;
304 310
                     uni.setStorageSync("userData", obj);

+ 6 - 2
pages/receiptpage/receiptpage.vue

@@ -689,8 +689,12 @@
689 689
     onLoad() {
690 690
       // 获取菜单权限
691 691
       this.getMenu();
692
-      if (uni.getStorageSync("setDeptConfg")) {
693
-        //如果有设置科室的配置,则显示
692
+      let setDeptConfg = uni.getStorageSync("setDeptConfg");
693
+      let manager = uni.getStorageSync("manager");
694
+      let userId = uni.getStorageSync("userData").user.id;
695
+      console.log(setDeptConfg,manager,userId)
696
+      if (setDeptConfg.workSchemeType == 2 && (setDeptConfg.ruleType == 3 || (setDeptConfg.ruleType == 4 && userId == manager) )) {
697
+        //自选排班,科室绑定人员 || 科室绑定分组 && 组长是当前登陆人
694 698
         this.content.unshift({
695 699
           text: "负责科室",
696 700
         });

+ 17 - 10
pages/setDept/setDept.vue

@@ -118,6 +118,7 @@
118 118
             },
119 119
           };
120 120
         } else {
121
+          let setDeptConfg = uni.getStorageSync("setDeptConfg");
121 122
           let ids1 = this.zxzData.map((item) => item.id);
122 123
           let ids2 = this.zxzData.map((item) => {
123 124
             return {
@@ -129,8 +130,13 @@
129 130
             deptIds: ids1.join(),
130 131
             userId: this.userId,
131 132
             changeDept: 1,
132
-            classId: uni.getStorageSync("setDeptConfg").classesId
133
+            classId: setDeptConfg.classesId
133 134
           };
135
+          if(setDeptConfg.workSchemeType == 2 && setDeptConfg.ruleType == 4){
136
+            //自选排班,科室绑定分组
137
+            postData1.groupIds = setDeptConfg.selectGroupId.toString();
138
+            postData1.isManager = true;
139
+          }
134 140
           let postData2 = {
135 141
             workConfigHistory: {
136 142
               user: {
@@ -141,7 +147,7 @@
141 147
               },
142 148
               deptList: ids2,
143 149
               hosId: uni.getStorageSync("userData").user.currentHospital.id,
144
-              classId: uni.getStorageSync("setDeptConfg").classesId
150
+              classId: setDeptConfg.classesId
145 151
             },
146 152
           };
147 153
           uni.showLoading({
@@ -196,14 +202,20 @@
196 202
               }
197 203
             });
198 204
           } else {
199
-            post("/auth/onOrOffLine", {
205
+            let postData = {
200 206
               type: "on",
201 207
               customWorking: "on",
202 208
               quickId: this.id,
203 209
               deptIds: ids1.join(),
204 210
               userId: this.userId,
205
-              classId: uni.getStorageSync("setDeptConfg").classesId
206
-            }).then((res) => {
211
+              classId: setDeptConfg.classesId
212
+            };
213
+            if(setDeptConfg.workSchemeType == 2 && setDeptConfg.ruleType == 4){
214
+              //自选排班,科室绑定分组
215
+              postData.groupIds = setDeptConfg.selectGroupId.toString();
216
+              postData.isManager = true;
217
+            }
218
+            post("/auth/onOrOffLine", postData).then((res) => {
207 219
               if (res.status == 200) {
208 220
                 post("/configuration/addData/workConfigHistory", postData2).then(
209 221
                   (result) => {
@@ -254,11 +266,6 @@
254 266
           if (res.status == 200) {
255 267
             this.zxzData = res.data;
256 268
             uni.setStorageSync("setDepts", this.zxzData); //存科室列表
257
-          } else {
258
-            uni.showToast({
259
-              icon: "none",
260
-              title: "请求失败!",
261
-            });
262 269
           }
263 270
         });
264 271
       },