Commit d1d53969 authored by 廖旭伟's avatar 廖旭伟

Merge remote-tracking branch 'origin/master'

parents dfc69bc9 47ff1242
...@@ -201,10 +201,15 @@ export default { ...@@ -201,10 +201,15 @@ export default {
}, },
], ],
columns: [ columns: [
{ type: "selection", width: 50 }, { type: "selection", width: 50, fixed: "left" },
{ type: "index", label: "序号", width: 50 }, { type: "index", label: "序号", width: 50, fixed: "left" },
{ label: "姓名", prop: "staffName", formatter: this.formatter }, {
label: "姓名",
prop: "staffName",
formatter: this.formatter,
fixed: "left",
},
{ label: "窗口编号", prop: "windowNum", formatter: this.formatter }, { label: "窗口编号", prop: "windowNum", formatter: this.formatter },
...@@ -221,20 +226,20 @@ export default { ...@@ -221,20 +226,20 @@ export default {
{ {
label: "异常时间", label: "异常时间",
prop: "errorTime", prop: "errorTime",
width: 240, width: 100,
formatter: this.formatterDate, formatter: this.formatterDate,
}, },
{ {
label: "上下班时间", label: "上下班时间",
width: 100, width: 110,
prop: "goOffTimeStr", prop: "goOffTimeStr",
}, },
{ {
label: "实际打卡时间", label: "实际打卡时间",
prop: "actualAttendTime", prop: "actualAttendTime",
width: 240, width: 100,
formatter: this.formatterDate, formatter: this.formatterDate,
}, },
...@@ -274,7 +279,7 @@ export default { ...@@ -274,7 +279,7 @@ export default {
{ {
label: "加分/扣分时间", label: "加分/扣分时间",
prop: "deductTime", prop: "deductTime",
width: 150, width: 100,
formatter: this.formatterDate, formatter: this.formatterDate,
}, },
...@@ -313,6 +318,7 @@ export default { ...@@ -313,6 +318,7 @@ export default {
{ {
label: "操作", label: "操作",
width: 110,
fixed: "right", fixed: "right",
formatter: (row) => { formatter: (row) => {
return row.checkStatus == 1 ? ( return row.checkStatus == 1 ? (
......
...@@ -100,7 +100,7 @@ public abstract class AbstractDingTalkService implements IDingPersonService { ...@@ -100,7 +100,7 @@ public abstract class AbstractDingTalkService implements IDingPersonService {
throw new AppException(String.format("code:{},errorMsg:{}", rsp.getErrcode(), rsp.getErrmsg())); throw new AppException(String.format("code:{},errorMsg:{}", rsp.getErrcode(), rsp.getErrmsg()));
} }
} else { } else {
log.info("redis dingding token:{}",dingToken); // log.info("redis dingding token:{}",dingToken);
return dingToken; return dingToken;
} }
} catch (Exception e) { } catch (Exception e) {
......
...@@ -38,8 +38,8 @@ Authorization: {{authToken}} ...@@ -38,8 +38,8 @@ Authorization: {{authToken}}
Content-Type: application/json Content-Type: application/json
{ {
"attendanceDateStart":"2024-02-01", "attendanceDateStart":"2024-03-01",
"attendanceDateEnd":"2024-03-01" "attendanceDateEnd":"2024-03-13"
} }
###海康考勤打卡记录计算1 ###海康考勤打卡记录计算1
...@@ -71,8 +71,8 @@ POST {{baseUrl}}/attendance/record/hik/addAttendanceHikRecordCustom ...@@ -71,8 +71,8 @@ POST {{baseUrl}}/attendance/record/hik/addAttendanceHikRecordCustom
Content-Type: application/json Content-Type: application/json
{ {
"attendanceDateStart":"2024-03-11", "attendanceDateStart":"2024-03-01",
"attendanceDateEnd":"2024-03-11" "attendanceDateEnd":"2024-03-13"
} }
...@@ -80,7 +80,7 @@ Content-Type: application/json ...@@ -80,7 +80,7 @@ Content-Type: application/json
POST {{baseUrl}}//attendance/stat/summary POST {{baseUrl}}//attendance/stat/summary
Content-Type: application/json Content-Type: application/json
{"summaryTimeStart":"2024-02-01","summaryTimeEnd":"2024-02-29"} {"summaryTimeStart":"2024-03-01","summaryTimeEnd":"2024-03-13"}
###短信设置编辑 ###短信设置编辑
...@@ -107,8 +107,8 @@ Authorization: {{authToken}} ...@@ -107,8 +107,8 @@ Authorization: {{authToken}}
Content-Type: application/json Content-Type: application/json
{ {
"startTimeStart":"2024-03-12", "startTimeStart":"2024-03-04",
"endTimeEnd":"2024-03-12" "endTimeEnd":"2024-03-05"
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment