You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
323 B
14 lines
323 B
2 months ago
|
<?php
|
||
|
namespace app\home\controller;
|
||
|
use app\home\service\VideoService;
|
||
|
use think\response\Json;
|
||
|
|
||
|
class Video extends HomeBaseController
|
||
|
{
|
||
|
public function videoOnDemandList(): Json
|
||
|
{
|
||
|
$returnData = (new VideoService())->getVideoOnDemandList($this->request->post());
|
||
|
return json($returnData);
|
||
|
}
|
||
|
}
|