diff --git a/src/views/wms/issueManage/repleinsh/repleinshJobMain/index.vue b/src/views/wms/issueManage/repleinsh/repleinshJobMain/index.vue index 3a4f229a0..4ed66d5b7 100644 --- a/src/views/wms/issueManage/repleinsh/repleinshJobMain/index.vue +++ b/src/views/wms/issueManage/repleinsh/repleinshJobMain/index.vue @@ -304,7 +304,8 @@ const buttonTableClick = async (val, row) => { } else if (val == 'mainJobAba') { // 放弃 RepleinshJobMainApi.abandonRepleinshMain(row.masterId) } else if (val == 'mainJobClo') { // 关闭 - RepleinshJobMainApi.closeRepleinshMain(row.masterId) + await RepleinshJobMainApi.closeRepleinshMain(row.masterId) + getList() } else if (val == 'mainJobAcc') { // 承接 RepleinshJobMainApi.acceptRepleinshMain(row.masterId) } diff --git a/src/views/wms/productionManage/productreceipt/productreceiptJobMain/index.vue b/src/views/wms/productionManage/productreceipt/productreceiptJobMain/index.vue index 121c40439..e84e4f14d 100644 --- a/src/views/wms/productionManage/productreceipt/productreceiptJobMain/index.vue +++ b/src/views/wms/productionManage/productreceipt/productreceiptJobMain/index.vue @@ -323,7 +323,8 @@ const buttonTableClick = async (val, row) => { } else if (val == 'mainJobAba') { // 放弃 ProductreceiptJobMainApi.abandonProductreceiptMain(row.masterId) } else if (val == 'mainJobClo') { // 关闭 - ProductreceiptJobMainApi.closeProductreceiptMain(row.masterId) + await ProductreceiptJobMainApi.closeProductreceiptMain(row.masterId) + getList() } else if (val == 'mainJobAcc') { // 承接 ProductreceiptJobMainApi.acceptProductreceiptMain(row.masterId) }