設置默認屬性
ct_month: null
方法:
//默認顯示今天
getdatatime(){
this.ct_month= new Date();
},
//默認顯示昨天
getdatatime(){
this.ct_month= new Date();
this.ct_month.setTime(this.ct_month.getTime() - 3600 * 1000 * 24);
},
//默認顯示上周
getdatatime(){
this.ct_month= new Date();
this.ct_month.setTime(this.ct_month.getTime() - 3600 * 1000 * 24 * 7);
},
//默認顯示上個月
getdatatime(){
this.ct_month= new Date();
this.ct_month.setTime(this.ct_month.getTime() - 3600 * 1000 * 24 * 30);
},