|
...
|
...
|
@@ -88,7 +88,7 @@ class VisualizationLogic extends BaseLogic |
|
|
|
$html = $commonInfo['head_css'].$mainData['main_css'].$commonInfo['footer_css'].$commonInfo['other'].
|
|
|
|
$commonInfo['head_html'].$mainData['main_html'].$commonInfo['footer_html'];
|
|
|
|
$html = $this->getHeadFooter($html);
|
|
|
|
return $html;
|
|
|
|
return ['html'=>$html,'template_id'=>$settingInfo['template_id']];
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
if($TemplateInfo['template_id'] != 0){
|
|
...
|
...
|
@@ -102,7 +102,7 @@ class VisualizationLogic extends BaseLogic |
|
|
|
$html = $commonInfo['head_css'].$TemplateInfo['main_css'].$commonInfo['footer_css'].$commonInfo['other'].
|
|
|
|
$commonInfo['head_html'].$TemplateInfo['main_html'].$commonInfo['footer_html'];
|
|
|
|
$html = $this->getHeadFooter($html);
|
|
|
|
return $html;
|
|
|
|
return ['html'=>$html,'template_id'=>$settingInfo['template_id']];
|
|
|
|
}else{
|
|
|
|
return $TemplateInfo['html'];
|
|
|
|
}
|
...
|
...
|
|