|
@@ -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;
|