|
@@ -587,11 +587,18 @@ async function pageToPPT(){
|
|
|
size: { type: "contain" },
|
|
|
})
|
|
|
//生成的ppt需要可以在封面页更改标题和类型,所以封面信息手动写入
|
|
|
- const coverInfo = [
|
|
|
+ const coverInfo = window.location.pathname.startsWith('/ppten')?[
|
|
|
{text:'—————————————————————————————————\n',options:{fontSize:16*0.75,breakLine:true}},
|
|
|
{text:PPTContentList[0].Title,options:{fontSize:28*0.75,breakLine:true}},
|
|
|
- {text:`\n— 弘则弥道(上海)投资咨询有限公司 ● ${PPTContentList[0].ReportType} —`,
|
|
|
- options:{fontSize:16*0.75,breakLine:false}},
|
|
|
+ {text:`\nHORIZON INSIGHTS PTE. LTD.`,options:{fontSize:16*0.75,breakLine:true}},
|
|
|
+ {text:`\n — ${PPTContentList[0].ReportType} —`,options:{fontSize:16*0.75,breakLine:true}},
|
|
|
+ {text:'\nFICC Research Department',options:{fontSize:16*0.75,breakLine:true}},
|
|
|
+ {text:PPTContentList[0].PptDate,options:{fontSize:16*0.75,breakLine:true}},
|
|
|
+ {text:'\n—————————————————————————',options:{fontSize:16*0.75,breakLine:true}}
|
|
|
+ ]:[
|
|
|
+ {text:'—————————————————————————————————\n',options:{fontSize:16*0.75,breakLine:true}},
|
|
|
+ {text:PPTContentList[0].Title,options:{fontSize:28*0.75,breakLine:true}},
|
|
|
+ {text:`\n— 弘则弥道(上海)投资咨询有限公司 ● ${PPTContentList[0].ReportType} —`,options:{fontSize:16*0.75,breakLine:false}},
|
|
|
{text:'\nFICC研究部',options:{fontSize:16*0.75,breakLine:true}},
|
|
|
{text:PPTContentList[0].PptDate,options:{fontSize:16*0.75,breakLine:true}},
|
|
|
{text:'\n—————————————————————————',options:{fontSize:16*0.75,breakLine:true}}
|
|
@@ -642,7 +649,7 @@ function handlePublishPPT(url){
|
|
|
*/
|
|
|
export async function usePPTPublish(data,id){
|
|
|
PPTContentList=data
|
|
|
- pptId=id
|
|
|
+ pptId=id
|
|
|
if(!checkPPT()) return
|
|
|
console.log('校验通过');
|
|
|
LoadingINS=showLoadingToast({
|
|
@@ -651,6 +658,4 @@ export async function usePPTPublish(data,id){
|
|
|
forbidClick: true,
|
|
|
})
|
|
|
pageToPPT()
|
|
|
-
|
|
|
-
|
|
|
}
|