From 19a620dc13848cc6759f80d2bd54df888d6e77fa Mon Sep 17 00:00:00 2001 From: wangyufei <2267742828@qq.com> Date: Mon, 24 Jun 2024 09:05:25 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=B7=E6=96=B0=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../inventorymove/inventorymoveJobMain/index.vue | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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() } } // 获取部门 用于详情 部门回显