Compare commits

...

2 Commits

Author SHA1 Message Date
砂糖
667c411997 Merge branch '0.8.X' of http://49.232.154.205:10100/DeXun/klp-oa into 0.8.X 2026-03-30 09:29:46 +08:00
砂糖
05fb0358a2 fix(wms): 在导出功能中添加waybillId参数
确保导出功能包含必要的waybillId参数以正确过滤数据
2026-03-30 09:29:40 +08:00

View File

@@ -397,7 +397,8 @@ export default {
/** 导出按钮操作 */ /** 导出按钮操作 */
handleExport() { handleExport() {
this.download('wms/deliveryWaybillDetail/export', { this.download('wms/deliveryWaybillDetail/export', {
...this.queryParams ...this.queryParams,
waybillId: this.waybillId,
}, `deliveryWaybillDetail_${new Date().getTime()}.xlsx`) }, `deliveryWaybillDetail_${new Date().getTime()}.xlsx`)
} }
} }