TemplateController.php 283 B

12345678910111213141516
  1. <?php
  2. namespace backend\controllers;
  3. use common\components\util;
  4. use Yii;
  5. use yii\web\Controller;
  6. use yii\helpers\Json;
  7. use common\components\page;
  8. class TemplateController extends BackendController{
  9. public function actionIndex()
  10. {
  11. return $this->render('index');
  12. }
  13. }