feat(wms): 添加leftWarehouseQuery属性并优化表格显示

优化线圈信息显示格式,移除单位后缀
调整移库记录表格列宽和显示内容
修改批量调拨和技术部改判的前后状态显示格式
This commit is contained in:
2026-04-25 15:59:14 +08:00
parent 5729f2ee1a
commit 0cfffc3adb
4 changed files with 28 additions and 18 deletions

View File

@@ -1222,6 +1222,8 @@ export default {
if (this.useWarehouseIds) {
query.warehouseIds = this.warehouseIds;
}
const { orderBy, ...statisticQuery } = query;
if (this.showWaybill) {
const { shipmentTime, ...query } = {
...this.queryParams,
@@ -1243,6 +1245,7 @@ export default {
listBoundCoil({ ...query, status: 1 }).then(res => {
this.shippedCount = res.total;
})
getCoilStatisticsList(query).then(res => {
this.statistics = res.data || [];
})
@@ -1253,7 +1256,7 @@ export default {
this.total = response.total;
this.loading = false;
});
getCoilStatisticsList(query).then(res => {
getCoilStatisticsList(statisticQuery).then(res => {
this.statistics = res.data || [];
})
},