|
@@ -1178,7 +1178,10 @@ export default {
|
|
|
this.resultFormula[0].children = formula.resultFormula[0].children;
|
|
|
|
|
|
//允许偏差值范围
|
|
|
- this.deviationRange.datas = JSON.parse(JSON.parse(detail.map).deviationRangeJson);
|
|
|
+ let mapObj = JSON.parse(detail.map);
|
|
|
+ if(mapObj.deviationRangeJson){
|
|
|
+ this.deviationRange.datas = JSON.parse(mapObj.deviationRangeJson);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
if(detail.scale > -1){
|