关于回波损耗 和 驻波比的摘要 以下摘自:http://www.soontai.com/cal_rtvswr.html RL = 20log((VSWR+1) / (VSWR-1)) VSWR = (1+(10^RL/20)) / ((10^RL/20)-1) * RL = Return Loss Return Loss :This is the dB value of absolute reflection coefficient.It is rather curious concept of
validator.js中添加验证 beforeCurrentTime : {// 时间不能大于当前时间 validator : function(value) { var myDate = new Date(); var now = myDate.valueOf(); var time = new Date(value).valueOf(); if(now>time){ return true; }else{ return false; } },