feat(wms): 添加收货单位列并优化发货单明细查询

- 在发货单表格中添加收货单位列
- 隐藏负责人电话列
- 优化发货单明细查询逻辑,增加waybillId判空
- 默认关闭加载遮罩层
This commit is contained in:
砂糖
2026-03-04 09:41:16 +08:00
parent a41e86a329
commit 4a83a6ce2b
2 changed files with 7 additions and 3 deletions

View File

@@ -164,7 +164,7 @@ export default {
// 按钮loading
buttonLoading: false,
// 遮罩层
loading: true,
loading: false,
// 选中数组
ids: [],
// 非单个禁用
@@ -218,7 +218,10 @@ export default {
},
methods: {
/** 查询发货单明细列表 */
getList() {
getList() {
if (!this.waybillId) {
return;
}
this.loading = true;
listDeliveryWaybillDetail({ ...this.queryParams, waybillId: this.waybillId }).then(response => {
this.deliveryWaybillDetailList = response.rows;