|
...
|
...
|
@@ -98,7 +98,10 @@ class BTemplateLogic extends BaseLogic |
|
|
|
$commonInfo['head_html'].$mainInfo['main_html'].$commonInfo['footer_html'];
|
|
|
|
$html = $this->getHeadFooter($html);
|
|
|
|
$result = ['html'=>$html,'template_id'=>$template_id];
|
|
|
|
if($templateInfo !== false){$result['id'] = $templateInfo['id'];}
|
|
|
|
if($templateInfo !== false){
|
|
|
|
$result['id'] = $templateInfo['id'];
|
|
|
|
$result['updated_at'] = $templateInfo['updated_at'];
|
|
|
|
}
|
|
|
|
return $this->success($result);
|
|
|
|
}
|
|
|
|
|
...
|
...
|
|