//优化前
sectionList(){
this.sel_config.forEach(item => {
if(item.name == 'temperature_max'){
this.temperature_max = Number(item.value)
} else if(item.name == 'temperature_min'){
this.temperature_min = Number(item.value)
} else if(item.name == 'voltage_max'){
this.voltage_max = Number(item.value)
} else if(item.name == 'voltage_min'){
this.voltage_min = Number(item.value)
} else if(item.name == 'electric_current_max'){
this.electric_current_max = Number(item.value)
} else if(item.name == 'electric_current_min'){
this.electric_current_min = Number(item.value)
} else if(item.name == 'pressure_max'){
this.pressure_max = Number(item.value)
} else if(item.name == 'pressure_min'){
this.pressure_min = Number(item.value)
} else if(item.name == 'device_temperature_max'){
this.device_temperature_max = Number(item.value)
} else if(item.name == 'device_temperature_min'){
this.device_temperature_min = Number(item.value)
} else if(item.name == 'humidity_max'){
this.humidity_max = Number(item.value)
} else if(item.name == 'humidity_min'){
this.humidity_min = Number(item.value)
}
});
},
//优化后企鹅交流330586621
sectionList(){
const gather = ['temperature_max','temperature_min','voltage_max','voltage_min','electric_current_max','electric_current_min','pressure_max','pressure_min','device_temperature_max','device_temperature_min','humidity_max','humidity_min']
this.sel_config.forEach(item => {
gather.forEach(item1=>{
if(item.name == item1){
this[item.name] = Number(item.value)
}
})
});
},