feat(wms/attendance): 新增批量修改排班功能,优化设备巡检表格展示

1. 新增批量修改排班API接口和页面弹窗功能
2. 设备巡检表格移除固定宽度并添加溢出提示,新增现场图像展示列
This commit is contained in:
2026-05-25 15:39:03 +08:00
parent 015ec7d70b
commit 501abc4821
4 changed files with 170 additions and 21 deletions

View File

@@ -60,3 +60,12 @@ export function batchGenerateSchedule(data) {
data: data
})
}
// 批量修改指定日期多个员工的班次
export function batchUpdateSchedule(data) {
return request({
url: '/wms/attendanceSchedule/batchUpdate',
method: 'put',
data: data
})
}