如何使用代码控制swal弹窗关闭

我在做付款操作的时候使用了swal弹窗,提示正在付款中……,想要在付款完成之后关闭这个swal弹窗,如何关闭这个swal弹出框呢?


swal({
            title: values[title],
            text: textHtml,
            html: true,
            type: type,
            showConfirmButton: showConfirmButton,
            confirmButtonText: values[confirm],
        });

img