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