28 lines
643 B
PHP
Executable File
28 lines
643 B
PHP
Executable File
<?php
|
|
/**
|
|
* @Author: fm453
|
|
* @Date: 2018-04-24 02:02:21
|
|
* @Last Modified by: fm453
|
|
* @Last Modified time: 2021-08-23 10:22:32
|
|
* @Email: fm453@lukegzs.com
|
|
**/
|
|
use yii\helpers\Html;
|
|
use yii\helpers\Url;
|
|
global $_HI;
|
|
|
|
$do = Yii::$app->controller->id;
|
|
$ac = Yii::$app->requestedAction->id;
|
|
|
|
$html = '';
|
|
$html .= $this->render('.././_common/header');
|
|
$html .= $this->render('.././_common/titlebar');
|
|
|
|
$html .= $this->render('single/main');
|
|
|
|
$html .= $this->render('.././_common/footbar');
|
|
$html .= $this->render('.././_common/kefu');
|
|
$html .= $this->render('.././_common/js');
|
|
$html .= $this->render('.././_common/footer');
|
|
|
|
echo $html;
|
|
?>
|