fix(wms): 修复三处业务显示与逻辑不一致问题
1. 修复异常报表接口数据字段使用错误,将rows改为data 2. 调整标签渲染PDF的图片缩放和位置,避免内容超出页面 3. 修改考勤审核页面的请假天数列标题为请假小时,匹配实际展示数据
This commit is contained in:
@@ -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 = []
|
||||
|
||||
Reference in New Issue
Block a user