课堂展示:画布选中物品,移除优化

This commit is contained in:
白了个白 2024-12-26 14:18:12 +08:00
parent ccbafea3d4
commit 4bbe89ed31
2 changed files with 4 additions and 38 deletions

View File

@ -1,12 +1,6 @@
<template>
<div class="whiteboart-container" :style="{ height: height + 'px' }">
<div class="canvasBox" ref="box"
@mousedown="handleMouseDown"
@mousemove="handleMouseMove"
@mouseup="handleMouseUp"
@mouseleave="handleMouseLeave"
></div>
<div class="canvasBox" ref="box" @mouseleave="handleMouseLeave" ></div>
<div class="footerLeft" @click.stop
:style="type == 'design' ? ['top: 10px', 'justify-content: space-between'] : ['bottom: 10px', 'justify-content: center']">
@ -358,10 +352,6 @@ const currentType = ref('selection')
// dom
const box = ref(null)
const startX= ref(0)
const startY= ref(0)
const endX= ref(0)
const endY= ref(0)
//
let app = null
@ -518,10 +508,6 @@ const backToCenter = () => {
app.scrollToCenter()
}
const cancelActiveElement = () =>{
app.cancelActiveElement()
}
//
const showFit = () => {
@ -755,7 +741,7 @@ const init = () => {
})
//
app.on('activeElementChange', element => {
console.log('点击元素 监听 activeElementChange-----------', element)
console.log('点击元素 监听 activeElementChange-----------')
if (activeElement.value) {
activeElement.value.off('elementRotateChange', onElementRotateChange)
}
@ -805,7 +791,6 @@ const init = () => {
})
}
const isDragging = ref(false);
/**
* 课堂展示-鼠标离开白板监听事件该事件是避免选中状态在其他地方点击后退删除等事件会删除白板内选中的元素
*/
@ -813,27 +798,8 @@ const handleMouseLeave = () => {
console.log('离开白板')
// --
app.cancelActiveElement()
// this.isDragging = false;
// this.drawRectangle();
// TODO
};
const handleMouseDown = (event) =>{
// this.isDragging = true;
// this.startX = event.clientX;
// this.startY = event.clientY;
}
const handleMouseMove =(event)=> {
// if (this.isDragging) {
// this.endX = event.clientX;
// this.endY = event.clientY;
// this.drawRectangle();
// }
}
const handleMouseUp = () =>{
// this.isDragging = false;
// this.drawRectangle();
}
//
defineExpose({
@ -844,7 +810,6 @@ defineExpose({
getCanvasBase64,
setCanvasData,
getCanvasBlob,
cancelActiveElement
})
</script>

View File

@ -814,6 +814,7 @@ const editWork = async (cform) =>{
let res = await updateClasswork(cform);
if (res.code == 200) {
ElMessage.success('更新成功');
taskList.value = []
//
if(isShow.value){
currentRow.value.id = 1;