js试用期

			//试用期
			countDown:function(){
				var nTime = new Date()//现在
				var sTime = new Date(2019,02,29,00,00,00)//提示时间到期  3月29
				var dTime = new Date(2019,03,29,00,00,00)//正式时间到期  4月29
				//console.log("现在时间:"+ (nTime.getMonth()+1 )  +"月"+ nTime.getDate()+"日");
				//console.log("提示时间:"+ (sTime.getMonth()+1 )  +"月"+ sTime.getDate()+"日");
				//console.log("到期时间:"+ (dTime.getMonth()+1 )  +"月"+ dTime.getDate()+"日");
				
				//提示时间到期 1小时显一遍
		 		if(nTime >= sTime){
					layer.msg('试用期即将结束,请购买正式产品',{shade: [0.3, '#393D49']}, function(index){
						setTimeout("vm.countDown()",60000);	
					});
				}else{
					setTimeout("vm.countDown()",100000);
				} 					
				
				//正式到期 2秒显一遍
		 		if(nTime >= dTime){
					layer.msg('试用期已结束,请购买正式产品',{shade: [0.3, '#393D49']}, function(index){
						setTimeout("vm.countDown()",3000);	
					});
				}else{
					setTimeout("vm.countDown()",100000);
				} 
上一篇:在PostgreSQL或MySQL中是否存在反向“AUTO_INCREMENT”的现有实现?


下一篇:CountDownLatch简单用法