diff --git a/src/views/wms/moveManage/inventorymove/inventorymoveJobMain/index.vue b/src/views/wms/moveManage/inventorymove/inventorymoveJobMain/index.vue index d0d9b58cb..f3cd6989c 100644 --- a/src/views/wms/moveManage/inventorymove/inventorymoveJobMain/index.vue +++ b/src/views/wms/moveManage/inventorymove/inventorymoveJobMain/index.vue @@ -250,11 +250,14 @@ const buttonTableClick = async (val, row) => { if (val == 'mainJobExe') { // 执行 InventorymoveJobMainApi.executeInventorymoveMain(row.masterId) } else if (val == 'mainJobAba') { // 放弃 - InventorymoveJobMainApi.abandonInventorymoveMain(row.masterId) + await InventorymoveJobMainApi.abandonInventorymoveMain(row.masterId) + getList() } else if (val == 'mainJobClo') { // 关闭 - InventorymoveJobMainApi.closeInventorymoveMain(row.masterId) + await InventorymoveJobMainApi.closeInventorymoveMain(row.masterId) + getList() } else if (val == 'mainJobAcc') { // 承接 - InventorymoveJobMainApi.acceptInventorymoveMain(row.masterId) + await InventorymoveJobMainApi.acceptInventorymoveMain(row.masterId) + getList() } } // 获取部门 用于详情 部门回显