|
@@ -538,8 +538,11 @@ export default {
|
|
return true;
|
|
return true;
|
|
}
|
|
}
|
|
});
|
|
});
|
|
- console.log(listTMP);
|
|
|
|
- this.gradeOption = listTMP.reverse();
|
|
|
|
|
|
+ let listNew =[]
|
|
|
|
+ listNew= listTMP.filter((item)=>{
|
|
|
|
+ return item.value!=-1
|
|
|
|
+ })
|
|
|
|
+ this.gradeOption = listNew.reverse();
|
|
//--------------------------------结束
|
|
//--------------------------------结束
|
|
let resAdd = this.addPro(res.data);
|
|
let resAdd = this.addPro(res.data);
|
|
this.ppData = JSON.parse(JSON.stringify(resAdd));
|
|
this.ppData = JSON.parse(JSON.stringify(resAdd));
|