ctms/ctms-home/views/h5/index.php
2025-04-10 23:19:13 +08:00

30 lines
694 B
PHP
Executable File

<?php
/**
* @Author: fm453
* @Date: 2021-08-22 13:22:21
# @Last modified by: fm453
# @Last modified time: 2024-05-16T12:35:45+08:00
* @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('index/banner');
$html .= $this->render('index/main');
// $html .= $this->render('.././_common/footbar');
// $html .= $this->render('.././_common/kefu');
$html .= $this->render('.././_common/js');
$html .= $this->render('.././_common/footer');
echo $html;