diff --git a/src/views/abuwx/wxuser/project.vue b/src/views/abuwx/wxuser/project.vue index b597edc..8a06038 100644 --- a/src/views/abuwx/wxuser/project.vue +++ b/src/views/abuwx/wxuser/project.vue @@ -77,10 +77,10 @@
+
+
项目名称:{{ this.titles }}
-
项目名称:{{ this.titles }}
-
- +
@@ -313,18 +313,25 @@ export default { } @media print { + @page { + size: auto; /* 设置打印页面大小为自动 */ margin: 0; /* 设置打印页面的页边距为0,去除默认页眉和页脚 */ - } #printdata { display: flex; justify-content: center; /* 水平居中 */ align-items: center; /* 垂直居中 */ + width: 100vw; height: 100vh; /* 设置高度为视口高度,使内容居中显示 */ + // transform: scale(2); /* 设置二维码放大倍数,这里是放大2倍,可以根据需要调整 */ + } + + .printdata-item{ transform: scale(3); /* 设置二维码放大倍数,这里是放大2倍,可以根据需要调整 */ } + /* 如果需要额外样式,可以在这里添加 */ }