|
@@ -97,6 +97,52 @@ export default{
|
|
|
}
|
|
|
this.$set(this.pageList,this.currentIndex,this.currentItem)
|
|
|
},
|
|
|
+ //全局改变标题位置
|
|
|
+ changePositionAll({left,top}){
|
|
|
+ //遍历所有PPT页
|
|
|
+ //替换每一页titleDetail的left top
|
|
|
+ //若width,height没有值,则使用默认的,若有值,则不变
|
|
|
+ const defaultWidth = 900
|
|
|
+ const defaultHeight = 630
|
|
|
+ const defaultWidthPercent = 68
|
|
|
+ const defaultHeightPercent = 7
|
|
|
+ this.pageList.forEach(page=>{
|
|
|
+ const {width='',height='',baseWidth='',baseHeight=''} = page.titleDetail||{}
|
|
|
+ page.titleDetail = {
|
|
|
+ top,left,
|
|
|
+ width:width||defaultWidthPercent,
|
|
|
+ height:height||defaultHeightPercent,
|
|
|
+ baseTop:defaultHeight*top/100,//px单位,基准为编辑页的ppt大小
|
|
|
+ baseLeft:defaultWidth*left/100,
|
|
|
+ baseWidth:baseWidth||defaultWidth*width/100,
|
|
|
+ baseHeight:baseHeight||defaultHeight*height/100
|
|
|
+ }
|
|
|
+ })
|
|
|
+ this.$message.success('全局设置成功')
|
|
|
+ },
|
|
|
+ //全局改变标题宽高
|
|
|
+ changeSizeAll({width,height}){
|
|
|
+ //遍历所有PPT页
|
|
|
+ //替换每一页titleDetail的width height
|
|
|
+ //若left,top没有值,则使用默认的,若有值,则不变
|
|
|
+ const defaultWidth = 900
|
|
|
+ const defaultHeight = 630
|
|
|
+ const defaultLeftPercent = 10
|
|
|
+ const defaultTopPercent = 5.5
|
|
|
+ this.pageList.forEach(page=>{
|
|
|
+ const {top='',left='',baseTop='',baseLeft=''} = page.titleDetail||{}
|
|
|
+ page.titleDetail = {
|
|
|
+ width,height,
|
|
|
+ top:top||defaultTopPercent,
|
|
|
+ left:left||defaultLeftPercent,
|
|
|
+ baseWidth:defaultWidth*width/100,
|
|
|
+ baseHeight:defaultHeight*height/100,
|
|
|
+ baseTop:baseTop||defaultHeight*top/100,
|
|
|
+ baseLeft:baseLeft||defaultWidth*left/100,
|
|
|
+ }
|
|
|
+ })
|
|
|
+ this.$message.success('全局设置成功')
|
|
|
+ },
|
|
|
//显示切换模板弹窗
|
|
|
handleChangeFormat(item){
|
|
|
this.choosedItem = item
|