|
@@ -1,7 +1,6 @@
|
|
|
<template>
|
|
|
<div :class="['container-cygx', reportInfo.IsResearch && 'no-cv', reportInfo.IsSpecialArticle && 'container-cygx-bg']" v-show="haveData">
|
|
|
- <canvas id="tutorial" ref="tutorial"></canvas>
|
|
|
- <div class="z-index-content">
|
|
|
+ <div class="z-index-content" ref="contentBox">
|
|
|
<div class="content-top">
|
|
|
<div class="report-title">{{ reportInfo.Title }}</div>
|
|
|
<div class="report-text">
|
|
@@ -122,7 +121,7 @@ const from_type = ref(null);
|
|
|
const haveData = ref(false);
|
|
|
const fileLink = ref(false);
|
|
|
const showTips = ref(false);
|
|
|
-const tutorial = ref(null);
|
|
|
+const contentBox = ref(null);
|
|
|
/* 访谈接口 */
|
|
|
const interviewApi = () => {
|
|
|
RaiApi.applyRpt({
|
|
@@ -303,14 +302,14 @@ const waterMark = (text) => {
|
|
|
let ctx = canvas.getContext("2d");
|
|
|
ctx.font = "20px Arial";
|
|
|
ctx.rotate((-45 * Math.PI) / 200);
|
|
|
+ ctx.fillStyle = "#DCDCDC";
|
|
|
ctx.fillText(text, 30, 160);
|
|
|
ctx.fillText(text, -40, 80);
|
|
|
|
|
|
// 将canvas的内容转换为base64编码
|
|
|
let data = canvas.toDataURL("image/png");
|
|
|
-
|
|
|
// 将容器的的背景图片设置为生成的base64图片,并平铺
|
|
|
- tutorial.value.style.background = "url(" + data + ") repeat";
|
|
|
+ contentBox.value.style.background = "url(" + data + ") repeat";
|
|
|
};
|
|
|
//点击回到搜索页面
|
|
|
const btnSearch = () => {
|