ZhhController.php 379 B

12345678910111213141516171819202122
  1. <?php
  2. namespace openend\controllers;
  3. use common\components\configDict;
  4. use common\components\util;
  5. use Yii;
  6. use yii\web\Controller;
  7. use yii\filters\AccessControl;
  8. use common\services\xhWxOpenAdminService;
  9. class ZhhController extends OpenendController
  10. {
  11. public $withoutLogin = [];
  12. public function actionRunning()
  13. {
  14. return $this->render('running');
  15. }
  16. }