fix(wms): 修复三处业务显示与逻辑不一致问题

1. 修复异常报表接口数据字段使用错误,将rows改为data
2. 调整标签渲染PDF的图片缩放和位置,避免内容超出页面
3. 修改考勤审核页面的请假天数列标题为请假小时,匹配实际展示数据
This commit is contained in:
2026-06-05 10:44:56 +08:00
parent 5e0dc848bb
commit 66f0b3fdd7
3 changed files with 10 additions and 8 deletions

View File

@@ -273,7 +273,7 @@ export default {
this.loading = true;
const actions = await listLightPendingAction({ ...this.queryParams, actionTypes: this.actionTypes, actionStatus: 2 });
const outIds = actions.rows.map(item => item.processedCoilIds).join(',');
const outIds = actions.data.map(item => item.processedCoilIds).join(',');
if (!outIds) {
this.outList = []