protected numberSplit = str => {
if (+str >= 1) {
return str.split('.')[0];
} else {
let tepmlue = parseFloat(str);
let result = tepmlue.toString();
return result.split('.')[1].length;
// return str.replace(/(\.\d+[1-9])0+$/, '$1');
}
};