|
@@ -351,8 +351,8 @@ export default {
|
|
|
let arr = new Date(new Date(new Date().toLocaleDateString()).getTime()); //今日0时日期
|
|
|
this.reqData.begin = Format("yyyy-MM-dd hh:mm:ss", arr);
|
|
|
this.reqData.end = Format("yyyy-MM-dd hh:mm:ss", date);
|
|
|
- this.dateMan[0] = this.reqData.begin;
|
|
|
- this.dateMan[1] = this.reqData.end;
|
|
|
+ // this.dateMan[0] = this.reqData.begin;
|
|
|
+ // this.dateMan[1] = this.reqData.end;
|
|
|
this.getData();
|
|
|
},
|
|
|
getWeeks() {
|
|
@@ -370,8 +370,8 @@ export default {
|
|
|
" 00:00:00";
|
|
|
this.reqData.begin = begin;
|
|
|
this.reqData.end = Format("yyyy-MM-dd hh:mm:ss", new Date());
|
|
|
- this.dateMan[0] = this.reqData.begin;
|
|
|
- this.dateMan[1] = this.reqData.end;
|
|
|
+ // this.dateMan[0] = this.reqData.begin;
|
|
|
+ // this.dateMan[1] = this.reqData.end;
|
|
|
this.getData();
|
|
|
},
|
|
|
getMonths() {
|
|
@@ -384,14 +384,15 @@ export default {
|
|
|
var monthStartDate = new Date(nowYear, nowMonth, 1);
|
|
|
this.reqData.begin = Format("yyyy-MM-dd hh:mm:ss", monthStartDate);
|
|
|
this.reqData.end = Format("yyyy-MM-dd hh:mm:ss", now);
|
|
|
- this.dateMan[0] = this.reqData.begin;
|
|
|
- this.dateMan[1] = this.reqData.end;
|
|
|
+ // this.dateMan[0] = this.reqData.begin;
|
|
|
+ // this.dateMan[1] = this.reqData.end;
|
|
|
this.getData();
|
|
|
},
|
|
|
serachDate() {
|
|
|
//日期范围查询
|
|
|
this.reqData.begin = Format("yyyy-MM-dd hh:mm:ss", this.dateMan[0]);
|
|
|
this.reqData.end = Format("yyyy-MM-dd hh:mm:ss", this.dateMan[1]);
|
|
|
+ debugger;
|
|
|
this.getData();
|
|
|
},
|
|
|
goTo() {
|