|
@@ -194,7 +194,7 @@ export default{
|
|
|
this.titleSetting = detail
|
|
|
const baseWidth = 900
|
|
|
const baseHeight = 630
|
|
|
- this.pageList.forEach(page=>{
|
|
|
+ this.pageList.forEach((page,index)=>{
|
|
|
const {top,left,width,height,color,fontFamily,fontSize} = detail
|
|
|
page.titleDetail = {
|
|
|
top,left,width,height,
|
|
@@ -204,6 +204,7 @@ export default{
|
|
|
baseHeight:baseHeight*height/100,
|
|
|
color,fontFamily,fontSize
|
|
|
}
|
|
|
+ this.$set(this.pageList,index,page)
|
|
|
})
|
|
|
this.$message.success(this.$t('MsgPrompt.set_success_msg'))
|
|
|
},
|