feat(wms): 添加收货单位列并优化发货单明细查询
- 在发货单表格中添加收货单位列 - 隐藏负责人电话列 - 优化发货单明细查询逻辑,增加waybillId判空 - 默认关闭加载遮罩层
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user