|
@@ -137,12 +137,16 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
setReportContent(str){
|
|
|
- str=str.replace(/(<iframe)(.*src="\S+\/chartshow)/g,(match, tag,attr)=>{
|
|
|
+ str=str.replace(/(<iframe)( src="\S+\/chartshow)/g,(match, tag,attr)=>{
|
|
|
+ console.log(tag,'tag','eta-chart');
|
|
|
return '<eta-chart class="no-wrap"'+attr
|
|
|
})
|
|
|
- str=str.replace(/(<iframe)(.*src="\S+\/sheetshow)/g,(match, tag,attr)=>{
|
|
|
+ str=str.replace(/(<iframe)( src="\S+\/sheetshow)/g,(match, tag,attr)=>{
|
|
|
+ console.log(tag,'tag','eta-table');
|
|
|
+ // console.log('<eta-table class="no-wrap"'+attr);
|
|
|
return '<eta-table class="no-wrap"'+attr
|
|
|
})
|
|
|
+ console.log(str,'str');
|
|
|
return str
|
|
|
},
|
|
|
setWaterMark(str){
|