|
@@ -508,7 +508,7 @@ export default {
|
|
|
//加载iframe
|
|
|
initSheetIframe(idName,sheetId){
|
|
|
console.log('init sheet iframe',idName)
|
|
|
- const LINK_URL = process.env.NODE_ENV === "production" ? 'https://chartlib.hzinsights.com/sheetshow' : 'https://charttest.hzinsights.com/sheetshow';
|
|
|
+ const LINK_URL = process.env.SHEET_LINK;
|
|
|
$(`#${idName}`).append(`<iframe
|
|
|
src='${LINK_URL}?code=${sheetId}'
|
|
|
width='100%'
|
|
@@ -520,7 +520,7 @@ export default {
|
|
|
},
|
|
|
//获取表格iframe的高度,用于ppt转报告
|
|
|
reInitIframe(e) {
|
|
|
- const LINK_URLS=['https://chartlib.hzinsights.com','https://charttest.hzinsights.com']
|
|
|
+ const LINK_URLS=[process.env.CHART_LINK,process.env.SHEET_LINK]
|
|
|
if(!LINK_URLS.includes(e.origin)) return
|
|
|
/* console.log('iframe加载完成',e.data) */
|
|
|
const { height,code } = e.data;
|