12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- var mathFormat = function (num) {
- var patt = getRegExp('\.','g');
- var formatnum
- if(!patt.test(num)){
- formatnum= num
- }else{
- formatnum= Number(num).toFixed(1)||'--';
- }
- return formatnum
- }
- var initItemNum = function(project,value,name) {
-
- if(name==="PM2.5"&&value){
- value = parseInt(value);
- }
- if(name==="CO₂"&&value){
- value = parseInt(value);
- }
- if(name==="甲醛"&&value){
- value =Number(value).toFixed(2);
- }
- if(name==="湿度"&&value){
- value = parseInt(value);
- }
- if(name==="温度"&&value){
- value = Number(value).toFixed(1);
- }
- return (value||value==0)?value:'--'
- }
- module.exports = {
- mathFormat: mathFormat,
- initItemNum:initItemNum
- }
|