bug修复
This commit is contained in:
parent
f4186a150c
commit
e73ed86470
|
|
@ -255,6 +255,9 @@
|
|||
// 表单重置
|
||||
reset() {
|
||||
this.queryForm = {};
|
||||
const lastMonth = new Date();
|
||||
lastMonth.setMonth(lastMonth.getMonth() - 1)
|
||||
this.searchAttCurrentMonth = lastMonth;
|
||||
this.resetForm("queryForm");
|
||||
this.getList();
|
||||
},
|
||||
|
|
|
|||
|
|
@ -379,7 +379,11 @@
|
|||
reset() {
|
||||
// this.searchAttCurrentMonth = '';
|
||||
// this.queryParams.attCurrentMonth = null;
|
||||
|
||||
this.queryForm = {};
|
||||
const lastMonth = new Date();
|
||||
lastMonth.setMonth(lastMonth.getMonth() - 1)
|
||||
this.searchAttCurrentMonth = lastMonth;
|
||||
this.resetForm("queryForm");
|
||||
|
||||
this.getList();
|
||||
|
|
|
|||
|
|
@ -386,8 +386,10 @@
|
|||
//打开月异常详情页面
|
||||
openRecord(row,titleBoss){
|
||||
this.id = row.id;
|
||||
|
||||
this.title = titleBoss;
|
||||
this.queryRecord.userId = row.userId;
|
||||
this.queryRecord.orgId = row.orgId;
|
||||
this.queryRecord.attCurrent = row.attCurrentMonth;
|
||||
if(titleBoss=='打卡记录'){
|
||||
this.queryRecord.attStatis=1;
|
||||
|
|
|
|||
Loading…
Reference in New Issue