vue 获取接口地址,在另一页打开pdf文件,并且有下载和打印功能

直接window.open就行了,剩下的后端处理了

   methodPrint(row) {

      doctorAPI.monitoringTransactionPDF({ compositeId: row.compositeId }).then(response => {

        window.open(response.data.uri,"blank");

      });

    }

你可能感兴趣的:(vue 获取接口地址,在另一页打开pdf文件,并且有下载和打印功能)