feat(合卷操作): 扩展合卷操作类型范围支持200-299
fix(文件上传): 添加docx到默认支持文件类型列表 refactor(员工信息): 统一部门字段命名并修复备注字段 feat(酸轧合卷): 实现酸轧合卷页面功能 feat(员工入职): 新增员工入职页面及功能 style(合卷页面): 优化合卷页面布局和样式
This commit is contained in:
@@ -922,7 +922,7 @@ export default {
|
||||
path = '/wms/split'
|
||||
}
|
||||
// 合卷操作:200-299
|
||||
else if (actionType == 200) {
|
||||
else if (actionType >= 200 && actionType <= 299) {
|
||||
path = '/wms/merge'
|
||||
}
|
||||
// 其他操作类型
|
||||
@@ -950,6 +950,7 @@ export default {
|
||||
query: {
|
||||
coilId: row.coilId,
|
||||
actionId: row.actionId,
|
||||
actionTypeCode: row.actionType,
|
||||
...(currentActionTypeLabel ? { actionType: currentActionTypeLabel } : {})
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user