|
@@ -613,7 +613,8 @@ async function pageToPPT(){
|
|
|
const res=await apiSheet.infoByCode({UniqueCode:sheetId})
|
|
|
if(res.Ret===200){
|
|
|
sheetData.list = getTableData(res.Data?.TableInfo?.TableDataList||[])
|
|
|
- sheetData.SourcesFrom = res.Data?.SourcesFrom
|
|
|
+ sheetData.SourcesFrom = res.Data?.SourcesFrom ? res.Data.SourcesFrom:
|
|
|
+ res.Data.ExcelSource?setDefaultSource(res.Data.ExcelSource):''
|
|
|
}
|
|
|
}
|
|
|
const { x, y, width, height } = getPosition(
|
|
@@ -783,6 +784,15 @@ async function pageToPPT(){
|
|
|
|
|
|
}
|
|
|
|
|
|
+function setDefaultSource(sourceText){
|
|
|
+ return JSON.stringify({
|
|
|
+ isShow: true,
|
|
|
+ text: sourceText,
|
|
|
+ color: "#606266",
|
|
|
+ fontSize: 9
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
|
|
|
function transBottomInfo(slide,{x,y,width,height},data){
|
|
|
let yPercent = Number(Math.ceil(height.replace(/%/,''))+Math.ceil(y.replace(/%/,'')))+'%';
|