feat(wms): 新增报结果存储API及页面

refactor(aps): 修改导出接口为POST并调整表格高度
This commit is contained in:
砂糖
2026-03-27 13:00:58 +08:00
parent 19b48d711a
commit ab3914811a
4 changed files with 47 additions and 3 deletions

View File

@@ -29,7 +29,7 @@
</el-form-item>
</el-form>
<el-table v-loading="loading" :data="planSheetList" height="600px" @row-click="handleRowClick">
<el-table v-loading="loading" :data="planSheetList" height="400px" @row-click="handleRowClick">
<el-table-column label="排产日期" align="center" prop="planDate" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.planDate, '{y}-{m}-{d}') }}</span>
@@ -330,7 +330,7 @@ export default {
},
/** 导出按钮操作 */
handleExport() {
this.download('aps/planSheet/export', {
this.download('aps/planSheet/exportAll', {
...this.queryParams
}, `planSheet_${new Date().getTime()}.xlsx`)
}