打卡记录
This commit is contained in:
parent
ecf619eb17
commit
02ad2dda9b
|
|
@ -559,6 +559,7 @@
|
||||||
openAttCountList(row){
|
openAttCountList(row){
|
||||||
this.title = "打卡记录(当天12:00至第二天凌晨05:00)";
|
this.title = "打卡记录(当天12:00至第二天凌晨05:00)";
|
||||||
this.queryAttCount.userId = row.userId;
|
this.queryAttCount.userId = row.userId;
|
||||||
|
this.queryAttCount.userName = row.userName;
|
||||||
this.queryAttCount.attCurrentDay = row.attCurrentDay;
|
this.queryAttCount.attCurrentDay = row.attCurrentDay;
|
||||||
this.showAttCount = true;
|
this.showAttCount = true;
|
||||||
this.getAttCountList();
|
this.getAttCountList();
|
||||||
|
|
|
||||||
|
|
@ -293,7 +293,7 @@
|
||||||
var nowDate = new Date();
|
var nowDate = new Date();
|
||||||
var date = {
|
var date = {
|
||||||
year: nowDate.getFullYear(),
|
year: nowDate.getFullYear(),
|
||||||
month: nowDate.getMonth() ,
|
month: nowDate.getMonth() + 1,
|
||||||
day: nowDate.getDate()
|
day: nowDate.getDate()
|
||||||
};
|
};
|
||||||
const dayDate = date.year + "-" + (date.month >= 10 ? date.month : "0" + date.month);
|
const dayDate = date.year + "-" + (date.month >= 10 ? date.month : "0" + date.month);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue