Kaynağa Gözat

急诊患者是否第三方接入

seimin 1 yıl önce
ebeveyn
işleme
e2e13090a4

+ 6 - 0
src/app/views/inspect-and-patient-transport-config/inspect-and-patient-transport-config.component.html

@@ -111,6 +111,12 @@
111
           <nz-checkbox-group [(ngModel)]="isThirdOutpatient"></nz-checkbox-group>
111
           <nz-checkbox-group [(ngModel)]="isThirdOutpatient"></nz-checkbox-group>
112
         </div>
112
         </div>
113
 
113
 
114
+        <!-- 急诊患者是否第三方接入 -->
115
+        <div class="display_flex align-items_center mb8">
116
+          <nz-form-label class="label">急诊患者是否第三方接入</nz-form-label>
117
+          <nz-checkbox-group [(ngModel)]="isThirdEmergencyPatient"></nz-checkbox-group>
118
+        </div>
119
+
114
         <!-- 自动关单 -->
120
         <!-- 自动关单 -->
115
         <!-- <div class="display_flex align-items_center mb8">
121
         <!-- <div class="display_flex align-items_center mb8">
116
           <nz-form-label class="label">自动关单</nz-form-label>
122
           <nz-form-label class="label">自动关单</nz-form-label>

+ 6 - 0
src/app/views/inspect-and-patient-transport-config/inspect-and-patient-transport-config.component.ts

@@ -54,6 +54,10 @@ export class InspectAndPatientTransportConfigComponent implements OnInit {
54
   isThirdOutpatient:any[] = [
54
   isThirdOutpatient:any[] = [
55
     {label:'是否开启',value: 0}
55
     {label:'是否开启',value: 0}
56
   ];
56
   ];
57
+  // 急诊患者是否第三方接入
58
+  isThirdEmergencyPatient:any[] = [
59
+    {label:'是否开启',value: 0}
60
+  ];
57
 
61
 
58
 
62
 
59
   timeMod:any;
63
   timeMod:any;
@@ -226,6 +230,7 @@ export class InspectAndPatientTransportConfigComponent implements OnInit {
226
       handoverOrder: this.handoverOrder[0].checked ? 1 : 0,
230
       handoverOrder: this.handoverOrder[0].checked ? 1 : 0,
227
       finishService: this.finishService[0].checked ? 1 : 0,
231
       finishService: this.finishService[0].checked ? 1 : 0,
228
       isThirdOutpatient: this.isThirdOutpatient[0].checked ? 1 : 0,
232
       isThirdOutpatient: this.isThirdOutpatient[0].checked ? 1 : 0,
233
+      isThirdEmergencyPatient: this.isThirdEmergencyPatient[0].checked ? 1 : 0,
229
       addService: this.addService[0].checked ? 1 : 0,
234
       addService: this.addService[0].checked ? 1 : 0,
230
       addServiceTaskIds: this.addServiceTaskIds.length ? this.addServiceTaskIds.toString() : undefined,
235
       addServiceTaskIds: this.addServiceTaskIds.length ? this.addServiceTaskIds.toString() : undefined,
231
 
236
 
@@ -346,6 +351,7 @@ export class InspectAndPatientTransportConfigComponent implements OnInit {
346
           this.handoverOrder[0].checked = this.configs.handoverOrder == 1;
351
           this.handoverOrder[0].checked = this.configs.handoverOrder == 1;
347
           this.finishService[0].checked = this.configs.finishService == 1;
352
           this.finishService[0].checked = this.configs.finishService == 1;
348
           this.isThirdOutpatient[0].checked = this.configs.isThirdOutpatient == 1;
353
           this.isThirdOutpatient[0].checked = this.configs.isThirdOutpatient == 1;
354
+          this.isThirdEmergencyPatient[0].checked = this.configs.isThirdEmergencyPatient == 1;
349
           this.addService[0].checked = this.configs.addService == 1;
355
           this.addService[0].checked = this.configs.addService == 1;
350
           this.addServiceTaskIds = this.configs.addServiceTaskIds ? this.configs.addServiceTaskIds.split(',').map(v => +v) : [];
356
           this.addServiceTaskIds = this.configs.addServiceTaskIds ? this.configs.addServiceTaskIds.split(',').map(v => +v) : [];
351
 
357