Browse Source

类型转换

langfang-develop
liwei 3 years ago
parent
commit
f58f0e2306
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      src/views/plant/processData/technology/documentPrinting.vue

+ 4
- 1
src/views/plant/processData/technology/documentPrinting.vue View File

@ -211,7 +211,10 @@ export default {
//
getWhetherCheckList(){
this.getStanderOne({ statid: 'WhetherCheckContent' }).then(({data=[]}) => {
this.whetherCheckList=data;
this.whetherCheckList=data.map(e=>{
e['stdeftab-stdeftyp']=Number(e['stdeftab-stdeftyp']);
return e;
});
})
},


Loading…
Cancel
Save