|
@@ -88,7 +88,7 @@ class VisualizationLogic extends BaseLogic |
|
@@ -88,7 +88,7 @@ class VisualizationLogic extends BaseLogic |
|
88
|
$html = $commonInfo['head_css'].$mainData['main_css'].$commonInfo['footer_css'].$commonInfo['other'].
|
88
|
$html = $commonInfo['head_css'].$mainData['main_css'].$commonInfo['footer_css'].$commonInfo['other'].
|
|
89
|
$commonInfo['head_html'].$mainData['main_html'].$commonInfo['footer_html'];
|
89
|
$commonInfo['head_html'].$mainData['main_html'].$commonInfo['footer_html'];
|
|
90
|
$html = $this->getHeadFooter($html);
|
90
|
$html = $this->getHeadFooter($html);
|
|
91
|
- return $html;
|
91
|
+ return ['html'=>$html,'template_id'=>$settingInfo['template_id']];
|
|
92
|
}
|
92
|
}
|
|
93
|
}else{
|
93
|
}else{
|
|
94
|
if($TemplateInfo['template_id'] != 0){
|
94
|
if($TemplateInfo['template_id'] != 0){
|
|
@@ -102,7 +102,7 @@ class VisualizationLogic extends BaseLogic |
|
@@ -102,7 +102,7 @@ class VisualizationLogic extends BaseLogic |
|
102
|
$html = $commonInfo['head_css'].$TemplateInfo['main_css'].$commonInfo['footer_css'].$commonInfo['other'].
|
102
|
$html = $commonInfo['head_css'].$TemplateInfo['main_css'].$commonInfo['footer_css'].$commonInfo['other'].
|
|
103
|
$commonInfo['head_html'].$TemplateInfo['main_html'].$commonInfo['footer_html'];
|
103
|
$commonInfo['head_html'].$TemplateInfo['main_html'].$commonInfo['footer_html'];
|
|
104
|
$html = $this->getHeadFooter($html);
|
104
|
$html = $this->getHeadFooter($html);
|
|
105
|
- return $html;
|
105
|
+ return ['html'=>$html,'template_id'=>$settingInfo['template_id']];
|
|
106
|
}else{
|
106
|
}else{
|
|
107
|
return $TemplateInfo['html'];
|
107
|
return $TemplateInfo['html'];
|
|
108
|
}
|
108
|
}
|