@@ -283,6 +292,7 @@ export default {
title8: "轮休记录",
title9: "临时外出记录",
title10: "外勤记录",
+ title11: "培训记录",
// 是否显示弹出层
open: false,
dialogQueryForm: {
@@ -414,6 +424,8 @@ export default {
this.dialogQueryForm.attStatus = 7;
} else if(titleBoss == '外勤记录'){
this.dialogQueryForm.attStatus = 26;
+ } else if (titleBoss == '培训记录') {
+ this.dialogQueryForm.attStatus = 28;
}
this.open = true;
this.resetForm("dialogQueryForm");
diff --git a/src/views/report/monthReport/index.vue b/src/views/report/monthReport/index.vue
index 833d1c1..00f5efb 100644
--- a/src/views/report/monthReport/index.vue
+++ b/src/views/report/monthReport/index.vue
@@ -116,6 +116,14 @@
+
+
+
+ {{ scope.row.trainNum }}
+
+
+
+
@@ -300,6 +308,7 @@ export default {
title10: "出差天数",
title11: "打卡记录",
title12: "外勤记录",
+ title13: "培训记录",
// 是否显示弹出层
open: false,
showRecord: false,
@@ -465,8 +474,10 @@ export default {
this.queryRecord.attStatis = 7;
} else if (titleBoss == '出差天数') {
this.queryRecord.attStatis = 10;
- }else if(titleBoss == '外勤记录'){
+ } else if(titleBoss == '外勤记录'){
this.queryRecord.attStatis = 26;
+ } else if(titleBoss == '培训记录'){
+ this.queryRecord.attStatis = 28;
}
this.showRecord = true;
this.getListRecord();