| 12345678910111213141516171819 |
- <?php
- namespace hd\controllers;
- use common\components\util;
- use Yii;
- class JcController extends PublicController
- {
- public function actionList()
- {
- $arr = [
- ['title' => '销花宝是什么', 'id' => 1000, 'url' => '1xhbIsWhat.mp4'],
- ];
- util::success(['list' => $arr]);
- }
- }
|