|
@@ -105,6 +105,7 @@ export class InspectAutoComponent implements OnInit {
|
105
|
105
|
result.list.forEach((item) => {
|
106
|
106
|
if (item.extra1 === "1") {
|
107
|
107
|
//急查
|
|
108
|
+ this.urgencyInspectNo = Boolean(item.autoDispatch);
|
108
|
109
|
this.urgencyInspect = true;
|
109
|
110
|
this.inspectType_u = this.inspectTypeList_u.some((v) => {
|
110
|
111
|
if (v.id == item.typeId) {
|
|
@@ -129,6 +130,7 @@ export class InspectAutoComponent implements OnInit {
|
129
|
130
|
}
|
130
|
131
|
if (item.extra1 === "0") {
|
131
|
132
|
//普查
|
|
133
|
+ this.ordinaryInspectNo = Boolean(item.autoDispatch);
|
132
|
134
|
this.ordinaryInspect = true;
|
133
|
135
|
this.inspectType_o = this.inspectTypeList_o.some((v) => {
|
134
|
136
|
if (v.id == item.typeId) {
|