feat: 更新应用版本至1.3.17并添加钢卷导出功能

- 在config.js、manifest.json和version.json中更新版本号至1.3.17
- 新增钢卷导出API接口
- 在接收和编辑页面添加长度输入字段
- 修改钢卷发货逻辑,增加质量状态校验并使用新的导出接口
This commit is contained in:
砂糖
2025-12-29 17:32:36 +08:00
parent fa37b697e6
commit 3da3488189
7 changed files with 32 additions and 8 deletions

View File

@@ -68,3 +68,10 @@ export function getMaterialCoilTrace(enterCoilNo, currentCoilNo) {
}
})
}
export function exportCoil(coilId) {
return request({
url: '/wms/materialCoil/exportCoil/' + coilId,
method: 'get'
})
}