|
@@ -8,14 +8,15 @@
|
|
|
}"
|
|
|
>
|
|
|
<div class="coverPageLogo">
|
|
|
- <img :src="schoolImg.logo ? schoolImg.logo : ''" alt="" />
|
|
|
+
|
|
|
+ <img style="height: 50px;" :src="schoolImg.logo ? schoolImg.logo : ''" alt="" />
|
|
|
</div>
|
|
|
<div class="coverPageFrom" style="z-index: 10;">
|
|
|
<div class="coverPageFromTit">{{ worksDialogCon2.course }}</div>
|
|
|
|
|
|
<div
|
|
|
style="
|
|
|
- font-size: 36px;
|
|
|
+ font-size: 45px;
|
|
|
font-weight: 600;
|
|
|
color:rgba(176, 123, 0, 1);
|
|
|
margin: 20px 0;
|
|
@@ -43,7 +44,7 @@
|
|
|
</div>
|
|
|
<div>
|
|
|
<span>指导老师:</span>
|
|
|
- <div class="txt">{{ worksDialogCon2.uname }}</div>
|
|
|
+ <div class="txt"><div style="transform: translate(-1em, 0px);">{{ worksDialogCon2.uname }}</div></div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -685,65 +686,126 @@ export default {
|
|
|
|
|
|
methods: {
|
|
|
// 下载pdf文件
|
|
|
- async getPdf() {
|
|
|
- let domHeight = this.$refs.reportPdf.offsetHeight;
|
|
|
- // console.log('this.$refs.reportPdf',this.$refs.reportPdf.offsetHeight);
|
|
|
- let maxHeight = 64257;
|
|
|
- return new Promise((resolve, reject) => {
|
|
|
- html2canvas(this.$refs.reportPdf, {
|
|
|
- useCORS: true, // 如果截图的内容里有图片,可能会有跨域的情况,加上这个参数,解决文件跨域问题
|
|
|
- scale: maxHeight / domHeight > 1 ? 1 : maxHeight / domHeight
|
|
|
- })
|
|
|
- .then(canvas => {
|
|
|
- const contentWidth = canvas.width;
|
|
|
- const contentHeight = canvas.height;
|
|
|
-
|
|
|
- var pageData = canvas.toDataURL("image/jpeg", 1.0);
|
|
|
-
|
|
|
- var pdf = new jspdf("", "pt", [contentWidth, contentHeight]);
|
|
|
-
|
|
|
- //有两个高度需要区分,一个是html页面的实际高度,和生成pdf的页面高度(841.89)
|
|
|
- //当内容未超过pdf一页显示的范围,无需分页
|
|
|
- // if (leftHeight < pageHeight) {
|
|
|
- pdf.addImage(pageData, "JPEG", 0, 0, contentWidth, contentHeight);
|
|
|
-
|
|
|
- pdf.save(
|
|
|
- this.worksDialogCon2.course +
|
|
|
+ getPdf() {
|
|
|
+
|
|
|
+ const content = this.$refs.reportPdf;
|
|
|
+
|
|
|
+ html2canvas(content)
|
|
|
+ .then(canvas => {
|
|
|
+ const imgData = canvas.toDataURL("image/png");
|
|
|
+ const pdf = new jspdf("p", "pt", [
|
|
|
+ content.offsetWidth,
|
|
|
+ content.offsetHeight
|
|
|
+ ]);
|
|
|
+
|
|
|
+ pdf.addImage(
|
|
|
+ imgData,
|
|
|
+ "PNG",
|
|
|
+ 0,
|
|
|
+ 0,
|
|
|
+ content.offsetWidth,
|
|
|
+ content.offsetHeight
|
|
|
+ );
|
|
|
+ pdf.save(
|
|
|
+ this.worksDialogCon2.course +
|
|
|
"-作业集-" +
|
|
|
this.worksDialogCon2.sName +
|
|
|
".pdf"
|
|
|
- );
|
|
|
- return resolve();
|
|
|
- })
|
|
|
- .catch(err => {
|
|
|
- console.log(err);
|
|
|
- });
|
|
|
- });
|
|
|
+ );
|
|
|
+ })
|
|
|
+
|
|
|
+ // let domHeight = this.$refs.reportPdf.offsetHeight;
|
|
|
+ // // console.log('this.$refs.reportPdf',this.$refs.reportPdf.offsetHeight);
|
|
|
+ // let maxHeight = 64257;
|
|
|
+ // html2canvas(this.$refs.reportPdf, {
|
|
|
+ // useCORS: true, // 如果截图的内容里有图片,可能会有跨域的情况,加上这个参数,解决文件跨域问题
|
|
|
+ // scale: maxHeight / domHeight > 1 ? 1 : maxHeight / domHeight
|
|
|
+ // })
|
|
|
+ // .then(canvas => {
|
|
|
+ // const contentWidth = canvas.width;
|
|
|
+ // const contentHeight = canvas.height;
|
|
|
+
|
|
|
+ // var pageData = canvas.toDataURL("image/jpeg", 1.0);
|
|
|
+
|
|
|
+ // var pdf = new jspdf("", "pt", [contentWidth, contentHeight]);
|
|
|
+
|
|
|
+ // //有两个高度需要区分,一个是html页面的实际高度,和生成pdf的页面高度(841.89)
|
|
|
+ // //当内容未超过pdf一页显示的范围,无需分页
|
|
|
+ // // if (leftHeight < pageHeight) {
|
|
|
+ // pdf.addImage(pageData, "JPEG", 0, 0, contentWidth, contentHeight);
|
|
|
+
|
|
|
+ // pdf.save(
|
|
|
+ // this.worksDialogCon2.course +
|
|
|
+ // "-作业集-" +
|
|
|
+ // this.worksDialogCon2.sName +
|
|
|
+ // ".pdf"
|
|
|
+ // );
|
|
|
+ // return resolve();
|
|
|
+ // })
|
|
|
+ // .catch(err => {
|
|
|
+ // console.log(err);
|
|
|
+ // });
|
|
|
},
|
|
|
|
|
|
// 压缩pdf
|
|
|
async getPdf2() {
|
|
|
- let domHeight = this.$refs.reportPdf.offsetHeight;
|
|
|
- // console.log('this.$refs.reportPdf',this.$refs.reportPdf.offsetHeight);
|
|
|
- let maxHeight = 64257;
|
|
|
- return new Promise((resolve, reject) => {
|
|
|
- html2canvas(this.$refs.reportPdf, {
|
|
|
- useCORS: true, // 如果截图的内容里有图片,可能会有跨域的情况,加上这个参数,解决文件跨域问题
|
|
|
- scale: maxHeight / domHeight > 1 ? 1 : maxHeight / domHeight
|
|
|
- })
|
|
|
- .then(canvas => {
|
|
|
- const contentWidth = canvas.width;
|
|
|
- const contentHeight = canvas.height;
|
|
|
-
|
|
|
- var pageData = canvas.toDataURL("image/jpeg", 1.0);
|
|
|
|
|
|
- var pdf = new jspdf("", "pt", [contentWidth, contentHeight]);
|
|
|
|
|
|
- //有两个高度需要区分,一个是html页面的实际高度,和生成pdf的页面高度(841.89)
|
|
|
- //当内容未超过pdf一页显示的范围,无需分页
|
|
|
- // if (leftHeight < pageHeight) {
|
|
|
- pdf.addImage(pageData, "JPEG", 0, 0, contentWidth, contentHeight);
|
|
|
+// html2canvas(content)
|
|
|
+// .then(canvas => {
|
|
|
+// const imgData = canvas.toDataURL("image/png");
|
|
|
+// const pdf = new jspdf("p", "pt", [
|
|
|
+// content.offsetWidth,
|
|
|
+// content.offsetHeight
|
|
|
+// ]);
|
|
|
+
|
|
|
+// pdf.addImage(
|
|
|
+// imgData,
|
|
|
+// "PNG",
|
|
|
+// 0,
|
|
|
+// 0,
|
|
|
+// content.offsetWidth,
|
|
|
+// content.offsetHeight
|
|
|
+// );
|
|
|
+// pdf.save(
|
|
|
+// this.worksDialogCon2.course +
|
|
|
+// "-作业集-" +
|
|
|
+// this.worksDialogCon2.sName +
|
|
|
+// ".pdf"
|
|
|
+// );
|
|
|
+// })
|
|
|
+ // let domHeight = this.$refs.reportPdf.offsetHeight;
|
|
|
+ // let maxHeight = 64257;
|
|
|
+ const content = this.$refs.reportPdf;
|
|
|
|
|
|
+ return new Promise((resolve, reject) => {
|
|
|
+ html2canvas(content)
|
|
|
+ .then(canvas => {
|
|
|
+ // const contentWidth = canvas.width;
|
|
|
+ // const contentHeight = canvas.height;
|
|
|
+
|
|
|
+ // var pageData = canvas.toDataURL("image/jpeg", 1.0);
|
|
|
+
|
|
|
+ // var pdf = new jspdf("", "pt", [contentWidth, contentHeight]);
|
|
|
+
|
|
|
+ // //有两个高度需要区分,一个是html页面的实际高度,和生成pdf的页面高度(841.89)
|
|
|
+ // //当内容未超过pdf一页显示的范围,无需分页
|
|
|
+ // // if (leftHeight < pageHeight) {
|
|
|
+ // pdf.addImage(pageData, "JPEG", 0, 0, contentWidth, contentHeight);
|
|
|
+ const imgData = canvas.toDataURL("image/png");
|
|
|
+ const pdf = new jspdf("p", "pt", [
|
|
|
+ content.offsetWidth,
|
|
|
+ content.offsetHeight
|
|
|
+ ]);
|
|
|
+
|
|
|
+ pdf.addImage(
|
|
|
+ imgData,
|
|
|
+ "PNG",
|
|
|
+ 0,
|
|
|
+ 0,
|
|
|
+ content.offsetWidth,
|
|
|
+ content.offsetHeight
|
|
|
+ );
|
|
|
var pdfData = {
|
|
|
pdfName:
|
|
|
this.worksDialogCon2.course +
|
|
@@ -1154,7 +1216,8 @@ export default {
|
|
|
background: #32455b !important;
|
|
|
}
|
|
|
.coverPage {
|
|
|
- height: 840pt;
|
|
|
+ /* height: 840pt; */
|
|
|
+ padding: 185px 15% 0;
|
|
|
background-color: #ccc;
|
|
|
position: relative;
|
|
|
background-image: url("../../../assets/icon/exportPdfworks/bcg1.svg"),
|
|
@@ -1167,13 +1230,16 @@ export default {
|
|
|
background-repeat: no-repeat, no-repeat;
|
|
|
}
|
|
|
.coverPageLogo {
|
|
|
- padding: 40px;
|
|
|
+ /* padding: 40px;
|
|
|
height: 120px;
|
|
|
width: 100%;
|
|
|
display: flex;
|
|
|
justify-content: flex-end;
|
|
|
box-sizing: border-box;
|
|
|
- margin-bottom: 45px;
|
|
|
+ margin-bottom: 45px; */
|
|
|
+ position: absolute;
|
|
|
+ top: 30px;
|
|
|
+ right: 6%;
|
|
|
}
|
|
|
.coverPageFrom {
|
|
|
display: flex;
|
|
@@ -1183,7 +1249,7 @@ export default {
|
|
|
margin: 0 auto;
|
|
|
}
|
|
|
.coverPageFromTit {
|
|
|
- font-size: 48px;
|
|
|
+ font-size: 72px;
|
|
|
color: rgba(92, 80, 70, 1);
|
|
|
font-weight: 600;
|
|
|
text-align: center;
|
|
@@ -1225,7 +1291,7 @@ export default {
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
|
align-items: center;
|
|
|
- padding: 0 30px;
|
|
|
+ padding: 0 100px 80px;
|
|
|
box-sizing: border-box;
|
|
|
}
|
|
|
.stageCon {
|
|
@@ -1337,7 +1403,7 @@ export default {
|
|
|
width: 50%;
|
|
|
white-space: nowrap;
|
|
|
overflow: hidden;
|
|
|
- font-size: 12px;
|
|
|
+ font-size: 14px;
|
|
|
text-overflow: ellipsis;
|
|
|
}
|
|
|
.score_box {
|
|
@@ -1395,14 +1461,14 @@ export default {
|
|
|
.stageTit {
|
|
|
text-align: left;
|
|
|
font-weight: 600;
|
|
|
- font-size: 20px;
|
|
|
+ font-size: 22px;
|
|
|
margin-bottom: 20px;
|
|
|
color: rgba(242, 161, 75, 1);
|
|
|
border-left: 5px rgba(242, 161, 75, 1) solid;
|
|
|
padding-left: 5px;
|
|
|
}
|
|
|
.taskTitInd {
|
|
|
- font-size: 14px;
|
|
|
+ font-size: 16px;
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
}
|
|
@@ -1432,7 +1498,7 @@ export default {
|
|
|
line-height: 20px;
|
|
|
box-sizing: border-box;
|
|
|
font-weight: PingFang SC;
|
|
|
- font-size: 12px;
|
|
|
+ font-size: 14px;
|
|
|
font-weight: 400;
|
|
|
border-radius: 4px;
|
|
|
}
|
|
@@ -1466,7 +1532,7 @@ export default {
|
|
|
color: rgba(0, 0, 0, 0.9);
|
|
|
}
|
|
|
.answerTxt {
|
|
|
- font-size: 12px;
|
|
|
+ font-size: 14px;
|
|
|
color: rgba(0, 0, 0, 0.6);
|
|
|
font-weight: 400;
|
|
|
line-height: 30px;
|
|
@@ -1505,7 +1571,7 @@ export default {
|
|
|
.taskScoConTit {
|
|
|
text-align: left;
|
|
|
font-weight: 600;
|
|
|
- font-size: 12px;
|
|
|
+ font-size: 14px;
|
|
|
margin-bottom: 10px;
|
|
|
color: rgba(0, 0, 0, 0.9);
|
|
|
border-left: 5px rgba(242, 161, 75, 1) solid;
|
|
@@ -1517,7 +1583,7 @@ export default {
|
|
|
box-sizing: border-box;
|
|
|
border-radius: 8px;
|
|
|
font-family: PingFang SC;
|
|
|
- font-size: 12px;
|
|
|
+ font-size: 14px;
|
|
|
line-height: 20px;
|
|
|
font-weight: 400;
|
|
|
flex: 1;
|
|
@@ -1547,7 +1613,7 @@ export default {
|
|
|
}
|
|
|
.termC {
|
|
|
margin: 15px auto 10px;
|
|
|
- font-size: 18px;
|
|
|
+ font-size: 22px;
|
|
|
color: rgba(92, 80, 70, 1);
|
|
|
display: flex;
|
|
|
justify-content: space-between;
|