|
@@ -119,7 +119,6 @@ export class TaskTypeManagementComponent implements OnInit {
|
119
|
119
|
validateForm: FormGroup; //新增/编辑备注快捷选择输入
|
120
|
120
|
isAddQRemarks = true; //添加新的备注快捷选择输入是否禁用
|
121
|
121
|
qRemarksId = 1; //备注快捷选择输入自增id
|
122
|
|
- carryShow = false; //携带设备显示隐藏字段
|
123
|
122
|
leadTime: any = 20; //提前生效时间,默认20分钟
|
124
|
123
|
formatterDollar = (value) => Number(value);
|
125
|
124
|
// 护士端是否允许预约建单,选中
|
|
@@ -573,11 +572,6 @@ export class TaskTypeManagementComponent implements OnInit {
|
573
|
572
|
id:'',
|
574
|
573
|
value:''
|
575
|
574
|
}
|
576
|
|
- if (data.id == 260 || data.id == 255) {
|
577
|
|
- this.carryShow = true;
|
578
|
|
- } else {
|
579
|
|
- this.carryShow = false;
|
580
|
|
- }
|
581
|
575
|
if (data.id == 260) {
|
582
|
576
|
this.carryingCourses = [
|
583
|
577
|
{
|
|
@@ -680,7 +674,6 @@ export class TaskTypeManagementComponent implements OnInit {
|
680
|
674
|
data.associationType.value == "patientTransport" ||
|
681
|
675
|
data.associationType.value == "inspect"
|
682
|
676
|
) {
|
683
|
|
- this.carryShow = true;
|
684
|
677
|
for (var i = 0; i < this.carryEquipmentIds.length; i++) {
|
685
|
678
|
this.carryEquipmentIds[i]["label"] = this.carryEquipmentIds[i].name;
|
686
|
679
|
this.carryEquipmentIds[i]["checked"] = false;
|
|
@@ -694,8 +687,6 @@ export class TaskTypeManagementComponent implements OnInit {
|
694
|
687
|
}
|
695
|
688
|
}
|
696
|
689
|
}
|
697
|
|
- } else {
|
698
|
|
- this.carryShow = false;
|
699
|
690
|
}
|
700
|
691
|
|
701
|
692
|
this.scheduleClassChecked = [];
|