|
@@ -110,7 +110,7 @@ export class HushijiandanComponent implements OnInit {
|
110
|
110
|
private mainService: MainService,
|
111
|
111
|
private notification: NzNotificationService,
|
112
|
112
|
private webs: WebsocketNurseService,
|
113
|
|
- private tool: ToolService
|
|
113
|
+ public tool: ToolService
|
114
|
114
|
) {
|
115
|
115
|
this.othersListOptions = {
|
116
|
116
|
onUpdate: (event: any) => {
|
|
@@ -473,7 +473,7 @@ export class HushijiandanComponent implements OnInit {
|
473
|
473
|
.subscribe((result) => {
|
474
|
474
|
if (result.status == 200) {
|
475
|
475
|
let inspectAndPatientTransportConfig = result.list[0] || {};
|
476
|
|
- this.inspectAndPatientTransportConfig = {...this.inspectAndPatientTransportConfig, inspectAndPatientTransportConfig};
|
|
476
|
+ this.inspectAndPatientTransportConfig = {...this.inspectAndPatientTransportConfig, ...inspectAndPatientTransportConfig};
|
477
|
477
|
|
478
|
478
|
// 是否显示排队信息
|
479
|
479
|
if(this.inspectAndPatientTransportConfig.queuingInformation == 1){
|