This commit is contained in:
parent
f936e726c0
commit
d90b7c695a
|
@ -185,7 +185,6 @@ const applyCanvasPresetScale = (value: number) => {
|
|||
}
|
||||
|
||||
const {
|
||||
createTextElement,
|
||||
createImageElement,
|
||||
createChartElement,
|
||||
createTableElement,
|
||||
|
@ -201,14 +200,7 @@ const insertImageElement = (files: FileList) => {
|
|||
}
|
||||
|
||||
const onhtml2canvas = (imgbs64: string) => {
|
||||
//createImageElement(imgbs64)
|
||||
console.log('imgbs64->',imgbs64)
|
||||
createTextElement({
|
||||
left: 200,
|
||||
top: 200,
|
||||
width: 500,
|
||||
height: 500,
|
||||
}, { content: imgbs64 })
|
||||
createImageElement(imgbs64)
|
||||
}
|
||||
|
||||
const shapePoolVisible = ref(false)
|
||||
|
@ -423,9 +415,4 @@ const imgVisible = ref(false)
|
|||
display: none;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<style>
|
||||
::v-deep {
|
||||
@import "@/assets/styles/JYStyle.css";
|
||||
}
|
||||
</style>
|
|
@ -439,9 +439,6 @@ const getPaginationList = ( page, limit ) => {
|
|||
*/
|
||||
const captureScreenshot = (id) => {
|
||||
const targetElement = document.getElementById('screenshot-target-' + id);
|
||||
emit('addQuizImgBs64', targetElement.outerHTML);
|
||||
return;
|
||||
|
||||
html2canvas(targetElement).then(canvas => {
|
||||
// 将canvas转换为图像URL
|
||||
const screenshotUrl = canvas.toDataURL('image/png');
|
||||
|
|
|
@ -34,7 +34,6 @@ import {getDept } from '@/api/login'
|
|||
import { listEvaluation } from '@/api/subject/index'
|
||||
import useUserStore from '@/store/modules/user'
|
||||
import {ElMessage} from 'element-plus'
|
||||
import { clearBookInfo } from '@/utils/ruoyi'
|
||||
import { sessionStore } from '@/utils/store'
|
||||
import {listClassmain} from '@/api/classManage/index'
|
||||
//班级列表
|
||||
|
|
Loading…
Reference in New Issue