9bcbe676 by lihua

fix: 核验通过检验

1 parent 2539b68c
...@@ -465,9 +465,7 @@ const verifyDialogBtnClick = (btn, info) => { ...@@ -465,9 +465,7 @@ const verifyDialogBtnClick = (btn, info) => {
465 return; 465 return;
466 } 466 }
467 verifyDialogInfo.value.footer.btns[1].loading = true; 467 verifyDialogInfo.value.footer.btns[1].loading = true;
468 verifyDetailStatusChange(Object.assign({}, info, { 468 verifyDetailStatusChange(currTableData.value.guid).then((res: any) => {
469 deliveryGuid: currTableData.value.guid
470 })).then((res: any) => {
471 if (res?.code == proxy.$passCode) { 469 if (res?.code == proxy.$passCode) {
472 let exec = () => { 470 let exec = () => {
473 verifyDialogInfo.value.footer.btns[1].loading = true; 471 verifyDialogInfo.value.footer.btns[1].loading = true;
...@@ -487,6 +485,9 @@ const verifyDialogBtnClick = (btn, info) => { ...@@ -487,6 +485,9 @@ const verifyDialogBtnClick = (btn, info) => {
487 if (res.data) { 485 if (res.data) {
488 proxy.$openMessageBox("合约策略执行的检验结果存在‘拒绝’,是否继续核验通过?", () => { 486 proxy.$openMessageBox("合约策略执行的检验结果存在‘拒绝’,是否继续核验通过?", () => {
489 exec(); 487 exec();
488 }, () => {
489 verifyDialogInfo.value.footer.btns[1].loading = false;
490 proxy.$ElMessage.info('已取消');
490 }) 491 })
491 } else { 492 } else {
492 exec(); 493 exec();
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!