JcController.php 323 B

12345678910111213141516171819
  1. <?php
  2. namespace hd\controllers;
  3. use common\components\util;
  4. use Yii;
  5. class JcController extends PublicController
  6. {
  7. public function actionList()
  8. {
  9. $arr = [
  10. ['title' => '销花宝是什么', 'id' => 1000, 'url' => '1xhbIsWhat.mp4'],
  11. ];
  12. util::success(['list' => $arr]);
  13. }
  14. }