Wx.php 428 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace app\api\controller\plus\live;
  3. use app\api\controller\Controller;
  4. use app\api\model\plus\live\WxLive as WxLiveModel;
  5. /**
  6. * 微信直播控制器
  7. */
  8. class Wx extends Controller
  9. {
  10. /**
  11. * 微信直播列表
  12. */
  13. public function lists()
  14. {
  15. $model = new WxLiveModel();
  16. $list = $model->getList($this->postData());
  17. return $this->renderSuccess('', compact('list'));
  18. }
  19. }