|
@@ -51,6 +51,11 @@ export class ConfigurationSpecimenComponent implements OnInit {
|
51
|
51
|
{label:'是否开启',value: 0}
|
52
|
52
|
];
|
53
|
53
|
|
|
54
|
+ // 默认扫描标本进入标本扫描页
|
|
55
|
+ defaultScanSpe:any[] = [
|
|
56
|
+ {label:'是否开启',value: 0}
|
|
57
|
+ ];
|
|
58
|
+
|
54
|
59
|
// 配置
|
55
|
60
|
configs:any = {};
|
56
|
61
|
// 任务类型
|
|
@@ -145,6 +150,7 @@ export class ConfigurationSpecimenComponent implements OnInit {
|
145
|
150
|
bigScanShowSignBtn: this.bigScanShowSignBtn[0].checked ? 1 : 0,
|
146
|
151
|
bigScanArriveNotOwner: this.bigScanArriveNotOwner[0].checked ? 1 : 0,
|
147
|
152
|
bigScanShowCreateBtn: this.bigScanShowCreateBtn[0].checked ? 1 : 0,
|
|
153
|
+ defaultScanSpe: this.defaultScanSpe[0].checked ? 1 : 0,
|
148
|
154
|
deptNotAlertIds: this.deptNotAlertIds.length ? this.deptNotAlertIds.toString() : undefined,
|
149
|
155
|
};
|
150
|
156
|
this.btnLoading = true;
|
|
@@ -212,6 +218,7 @@ export class ConfigurationSpecimenComponent implements OnInit {
|
212
|
218
|
this.bigScanShowSignBtn[0].checked = this.configs.bigScanShowSignBtn == 1;
|
213
|
219
|
this.bigScanArriveNotOwner[0].checked = this.configs.bigScanArriveNotOwner == 1;
|
214
|
220
|
this.bigScanShowCreateBtn[0].checked = this.configs.bigScanShowCreateBtn == 1;
|
|
221
|
+ this.defaultScanSpe[0].checked = this.configs.defaultScanSpe == 1;
|
215
|
222
|
this.deptNotAlertIds = this.configs.deptNotAlertIds ? this.configs.deptNotAlertIds.split(',').map(v => +v) : [];
|
216
|
223
|
this.deptList = this.configs.deptNotAlertList || [];
|
217
|
224
|
}
|