longyvfengyun
2023-12-25 d8d792a6842832e8f6af6604274c438b25053afe
1
2
3
4
5
6
7
8
9
10
11
12
//根据low_type,low_nametype获取阀值
function getLow(lowtype,lownametype){
    if(lowtype!=undefined && low_list!=undefined && lownametype!=undefined){
        for(var i=0;i<low_list.length;i++){
            if(lowtype==low_list[i].low_type && lownametype==low_list[i].low_nametype){
                return low_list[i];
            }
        }
    }
}
 
export default getLow;