|
@@ -4,6 +4,7 @@ import path from 'node:path'
|
|
|
import { fileURLToPath } from 'node:url';
|
|
|
|
|
|
async function run(fileName) {
|
|
|
+ console.log(7, fileName)
|
|
|
const pdfName = `${fileName}`.replace('.html', '.pdf')
|
|
|
try {
|
|
|
const browser = await puppeteer.launch({
|
|
@@ -11,12 +12,13 @@ async function run(fileName) {
|
|
|
// ignoreHTTPSErrors: false, // 在导航期间忽略 HTTPS 错误
|
|
|
// headless: false,
|
|
|
defaultViewport: { // 为每个页面设置一个默认视口大小
|
|
|
- width: 1057,
|
|
|
+ width: 1240,
|
|
|
height: 1080
|
|
|
}
|
|
|
});
|
|
|
const page = await browser.newPage();
|
|
|
- await page.goto(`file://${process.env.PWD}/${fileName}`);
|
|
|
+ // await page.goto(`file://${process.env.PWD}/${fileName}`);
|
|
|
+ await page.goto(`file://${fileName}`);
|
|
|
let inputElement = await page.$('html');
|
|
|
const offsetHeight = await page.evaluate(() => document.querySelector('body').offsetHeight);
|
|
|
console.log(offsetHeight,21);
|
|
@@ -26,7 +28,7 @@ async function run(fileName) {
|
|
|
}catch ( e ) {
|
|
|
console.log(e)
|
|
|
}
|
|
|
- await page.pdf({path: pdfName, height: offsetHeight + 110,width: 1057,margin: {left: 20,top: 20,right: 20,bottom: 20}})
|
|
|
+ await page.pdf({path: pdfName, height: offsetHeight + 110,width: 1240,margin: {left: 20,top: 20,right: 20,bottom: 20}})
|
|
|
// await page.pdf({path: 'index_002.pdf', format:'A4'})
|
|
|
await browser.close();
|
|
|
} catch ( e ) {
|