|
@@ -127,7 +127,7 @@
|
|
|
<img src="~@/assets/img/smartReport/icon14.png" alt="">
|
|
|
</div>
|
|
|
<div style="overflow-x:auto">
|
|
|
- <div style="min-width:600px">
|
|
|
+ <div style="min-width:800px">
|
|
|
<TextEdit
|
|
|
v-if="rightType==='text'"
|
|
|
:key="activeId"
|
|
@@ -155,7 +155,7 @@
|
|
|
<ETASandBox v-if="rightType==='etaSandBox'"/>
|
|
|
<!-- 语义分析 -->
|
|
|
<SemanticAnalysis v-if="rightType==='semanticAnalysis'"/>
|
|
|
- </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -461,6 +461,7 @@ export default {
|
|
|
compType:'chart',
|
|
|
content:`${LINK_CHART_URL}?code=${temarr[0].UniqueCode}`,
|
|
|
id:this.getCompId(`chart${temarr[0].UniqueCode}_`),
|
|
|
+ style:'height:350px',
|
|
|
child:[]
|
|
|
}
|
|
|
}else{
|
|
@@ -470,6 +471,7 @@ export default {
|
|
|
compType:'chart',
|
|
|
content:`${LINK_CHART_URL}?code=${e.UniqueCode}`,
|
|
|
id:this.getCompId(`chart${e.UniqueCode}_`),
|
|
|
+ style:'height:350px',
|
|
|
child:[]
|
|
|
})
|
|
|
});
|
|
@@ -521,6 +523,7 @@ export default {
|
|
|
compType:compData.compType,
|
|
|
id:this.getCompId(compData.compType),
|
|
|
content:compData.content||'',
|
|
|
+ style:compData.compType==='chart'?'height:350px':'',
|
|
|
child:[]
|
|
|
}
|
|
|
// console.log(tempCompData);
|
|
@@ -552,6 +555,7 @@ export default {
|
|
|
compType:obj.compType,
|
|
|
id:obj.id,
|
|
|
content:obj.content,
|
|
|
+ style:obj.compType==='chart'?'height:350px':'',
|
|
|
child:[]
|
|
|
},
|
|
|
{
|
|
@@ -559,6 +563,7 @@ export default {
|
|
|
compType:compData.compType,
|
|
|
content:compData.content||'',
|
|
|
id:this.getCompId(compData.compType),
|
|
|
+ style:compData.compType==='chart'?'height:350px':'',
|
|
|
child:[]
|
|
|
}
|
|
|
]
|
|
@@ -581,6 +586,7 @@ export default {
|
|
|
compType:obj.compType,
|
|
|
id:obj.id,
|
|
|
content:obj.content,
|
|
|
+ style:obj.compType==='chart'?'height:350px':'',
|
|
|
child:[]
|
|
|
},
|
|
|
{
|