//hold是保留位,例,元,角,分 //integerType是在保留位的基础上,如果后面有值,向上向下取整 calAmount:function(hold,integerType,amount){ if(hold=='YUAN'){ if(integerType=='ROUND'){ //四舍五入 return amount.toFixed(0); }else if(integerType=='LASTINTERCEPT'){ //舍0(去掉保留位后面的数字) return parseInt