fix(wms): 修正异常钢卷导出接口路径和文件名

将导出接口从'materialCoil/export'改为'materialCoil/exportAbnormal',同时将导出文件名从'materialCoil'改为'abnormalCoil'以更准确反映功能
This commit is contained in:
2026-05-06 17:45:22 +08:00
parent 484d16017d
commit bb97d0d2a7

View File

@@ -348,9 +348,9 @@ export default {
this.$message.warning('暂无数据可导出') this.$message.warning('暂无数据可导出')
return return
} }
this.download('wms/materialCoil/export', { this.download('wms/materialCoil/exportAbnormal', {
coilIds: this.outList.map(item => item.coilId).join(',') coilIds: this.outList.map(item => item.coilId).join(',')
}, `materialCoil_${new Date().getTime()}.xlsx`) }, `abnormalCoil_${new Date().getTime()}.xlsx`)
}, },
// 导出消耗钢卷 // 导出消耗钢卷