|
@@ -635,7 +635,11 @@ export default {
|
|
|
this.statusOptions = response.data;
|
|
|
});
|
|
|
this.getDicts("spec_approve_status").then(response => {
|
|
|
- this.approveStatusOptions = response.data;
|
|
|
+ for (let i = 0; i < response.data.length; i++) {
|
|
|
+ if ( !["5","6","7","8" ,"16" , "17"].includes(response.data[i].dictValue)){
|
|
|
+ this.approveStatusOptions.push(response.data[i])
|
|
|
+ }
|
|
|
+ }
|
|
|
});
|
|
|
this.getDicts("SPEC_PLANT_MAINT").then(response => {
|
|
|
this.plantMaintOptions = response.data;
|