29 lines
651 B
PHP
Executable File
29 lines
651 B
PHP
Executable File
<?php
|
|
/**
|
|
* @Author: fm453
|
|
* @Date: 2021-08-22 13:22:21
|
|
* @Last Modified by: fm453
|
|
* @Last Modified time: 2021-08-22 16:29:40
|
|
* @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('customization/main');
|
|
|
|
|
|
$html .= $this->render('.././_common/footbar');
|
|
$html .= $this->render('.././_common/kefu');
|
|
$html .= $this->render('.././_common/js');
|
|
$html .= $this->render('.././_common/footer');
|
|
|
|
echo $html;
|
|
?>
|