-
导出
+
导出
diff --git a/admin-hanhai-vue/src/views/xcx/ClockinTeamLogList.vue b/admin-hanhai-vue/src/views/xcx/ClockinTeamLogList.vue
index 8a4647a..329f0df 100644
--- a/admin-hanhai-vue/src/views/xcx/ClockinTeamLogList.vue
+++ b/admin-hanhai-vue/src/views/xcx/ClockinTeamLogList.vue
@@ -133,9 +133,9 @@
}
},
{
- title:'用户编号',
+ title:'用户昵称',
align:"center",
- dataIndex: 'userId'
+ dataIndex: 'userId_dictText'
},
{
title:'团队编号',
diff --git a/admin-hanhai-vue/src/views/xcx/modules/ClockinAuthForm.vue b/admin-hanhai-vue/src/views/xcx/modules/ClockinAuthForm.vue
index 96defec..7391540 100644
--- a/admin-hanhai-vue/src/views/xcx/modules/ClockinAuthForm.vue
+++ b/admin-hanhai-vue/src/views/xcx/modules/ClockinAuthForm.vue
@@ -3,11 +3,18 @@
+
+
+
+
+
+
-
-
+
+
+
diff --git a/admin-hanhai-vue/src/views/xcx/modules/ClockinTeamLogForm.vue b/admin-hanhai-vue/src/views/xcx/modules/ClockinTeamLogForm.vue
index 965d094..21e9de7 100644
--- a/admin-hanhai-vue/src/views/xcx/modules/ClockinTeamLogForm.vue
+++ b/admin-hanhai-vue/src/views/xcx/modules/ClockinTeamLogForm.vue
@@ -3,9 +3,14 @@
+
+
+
+
+
-
-
+
+
diff --git a/jeecg-boot-base/jeecg-boot-base-core/src/main/java/org/jeecg/modules/clockinauth/entity/ClockinAuth.java b/jeecg-boot-base/jeecg-boot-base-core/src/main/java/org/jeecg/modules/clockinauth/entity/ClockinAuth.java
index aaad38d..15d8953 100644
--- a/jeecg-boot-base/jeecg-boot-base-core/src/main/java/org/jeecg/modules/clockinauth/entity/ClockinAuth.java
+++ b/jeecg-boot-base/jeecg-boot-base-core/src/main/java/org/jeecg/modules/clockinauth/entity/ClockinAuth.java
@@ -36,10 +36,11 @@ public class ClockinAuth implements Serializable {
@TableId(type = IdType.ASSIGN_ID)
@ApiModelProperty(value = "id")
private java.lang.String id;
- /**用户编号*/
- @Excel(name = "用户编号", width = 15)
- @ApiModelProperty(value = "用户编号")
- private java.lang.String userId;
+ /**用户标识*/
+ @Excel(name = "用户标识", width = 15, dictTable = "han_hai_member", dicText = "nick_name", dicCode = "id")
+ @Dict(dictTable = "han_hai_member", dicText = "nick_name", dicCode = "id")
+ @ApiModelProperty(value = "用户标识")
+ private java.lang.String userId;
/**姓名*/
@Excel(name = "姓名", width = 15)
@ApiModelProperty(value = "姓名")
diff --git a/jeecg-boot-base/jeecg-boot-base-core/src/main/java/org/jeecg/modules/clockinlog/controller/ClockinLogController.java b/jeecg-boot-base/jeecg-boot-base-core/src/main/java/org/jeecg/modules/clockinlog/controller/ClockinLogController.java
index e34a92d..0baf760 100644
--- a/jeecg-boot-base/jeecg-boot-base-core/src/main/java/org/jeecg/modules/clockinlog/controller/ClockinLogController.java
+++ b/jeecg-boot-base/jeecg-boot-base-core/src/main/java/org/jeecg/modules/clockinlog/controller/ClockinLogController.java
@@ -109,6 +109,10 @@ public class ClockinLogController extends JeecgController queryWrapper = QueryGenerator.initQueryWrapper(clockinLog, req.getParameterMap());
+ //如果clockStartTime不为空
+ if(clockinLog.getClockStartTime()!=null){
+ queryWrapper.like("clock_in_time",clockinLog.getClockStartTime());
+ }
Page page = new Page(pageNo, pageSize);
IPage pageList = clockinLogService.page(page, queryWrapper);
return Result.OK(pageList);
@@ -201,7 +205,7 @@ public class ClockinLogController extends JeecgController