|
@@ -1,7 +1,7 @@
|
|
|
import {checkClipboard,checkClipboardItems,getTextContentSize} from '../../utils/untils';
|
|
|
import {defaultPosition} from "../../utils/config";
|
|
|
import { copyFit } from '@/utils/svgToblob.js';
|
|
|
-import Ediotr from '../TextEditor.vue';
|
|
|
+/* import Ediotr from '../TextEditor.vue'; */
|
|
|
import BaseShape from '../layer/Element/BaseShape.vue';
|
|
|
import LineShape from "../layer/Element/LineShape.vue";
|
|
|
import TextShape from "../layer/Element/TextShape.vue";
|
|
@@ -11,7 +11,7 @@ import ImageEl from "../formatEl/ImageEl.vue";
|
|
|
import SheetEl from "../formatEl/SheetEl.vue";
|
|
|
export default {
|
|
|
components: {
|
|
|
- Ediotr,BaseShape,LineShape,TextShape,ChartEl,TextEl,ImageEl,SheetEl
|
|
|
+ /* Ediotr, */BaseShape,LineShape,TextShape,ChartEl,TextEl,ImageEl,SheetEl
|
|
|
},
|
|
|
props: {
|
|
|
pageIndex: {//当前是第几页
|
|
@@ -45,6 +45,10 @@ export default {
|
|
|
type:Boolean,
|
|
|
default:false
|
|
|
},
|
|
|
+ isEditTitle:{//父组件是否是标题编辑模式
|
|
|
+ type:Boolean,
|
|
|
+ default:false
|
|
|
+ },
|
|
|
activeLayerEl:{//当前页面在图层编辑模式时,选中的图层元素
|
|
|
type:Object,
|
|
|
},
|
|
@@ -100,8 +104,8 @@ export default {
|
|
|
},
|
|
|
//判断遮罩layers是否显示
|
|
|
isLayerShow(){
|
|
|
- //在图层编辑模式+是当前ppt+是编辑模式
|
|
|
- return this.isEditLayer&&this.type==='edit'&&this.choosedId===this.pageItem.id
|
|
|
+ //在图层编辑模式/标题编辑模式+是当前ppt+是编辑模式
|
|
|
+ return (this.isEditLayer||this.isEditTitle)&&this.type==='edit'&&this.choosedId===this.pageItem.id
|
|
|
},
|
|
|
//判断该渲染哪个图层组件
|
|
|
getLayerElName(item){
|