diff --git a/src/api/mes/record/recordStaffAttendance.js b/src/api/mes/record/recordStaffAttendance.js new file mode 100644 index 0000000..2c37a7d --- /dev/null +++ b/src/api/mes/record/recordStaffAttendance.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询员工打卡记录列表 +export function listRecordStaffAttendance(query) { + return request({ + url: '/mes/record/recordStaffAttendance/list', + method: 'get', + params: query + }) +} + +// 查询员工打卡记录详细 +export function getRecordStaffAttendance(objId) { + return request({ + url: '/mes/record/recordStaffAttendance/' + objId, + method: 'get' + }) +} + +// 新增员工打卡记录 +export function addRecordStaffAttendance(data) { + return request({ + url: '/mes/record/recordStaffAttendance', + method: 'post', + data: data + }) +} + +// 修改员工打卡记录 +export function updateRecordStaffAttendance(data) { + return request({ + url: '/mes/record/recordStaffAttendance', + method: 'put', + data: data + }) +} + +// 删除员工打卡记录 +export function delRecordStaffAttendance(objId) { + return request({ + url: '/mes/record/recordStaffAttendance/' + objId, + method: 'delete' + }) +} diff --git a/src/views/mes/prod/prodOrderInfo/index.vue b/src/views/mes/prod/prodOrderInfo/index.vue index f724b0f..4e96fa1 100644 --- a/src/views/mes/prod/prodOrderInfo/index.vue +++ b/src/views/mes/prod/prodOrderInfo/index.vue @@ -56,10 +56,10 @@ end-placeholder="结束时间" > - - + + - + @@ -319,7 +319,7 @@ - + +
+ + + + + + + + + + + + + + + + + + + + + + 搜索 + 重置 + + + + + + 新增 + + + + 修改 + + + + 删除 + + + + 导出 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {{ dict.label }} + + + + + + + + + {{ dict.label }} + + + + + + + + + {{ dict.label }} + + + + + + +
+ + +