| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- namespace app\plugins\wxlive\controllers\client;
- use app\plugins\wxlive\models\client\LiveForm;
- class IndexController
- {
- /**
- * 获取直播间列表
- * @return array
- */
- public function actionGetLIst()
- {
- $liveForm = new LiveForm();
- $liveForm->store_id = get_store_id();
- $liveForm->page = get_params('page',1);
- $liveForm->limit = get_params('limit',20);
- $res = $liveForm->getList();
- if ($res['errcode'] > 0) {
- return [
- 'code' => 1,
- 'msg' => $res['errmsg'],
- ];
- }
- return [
- 'code' => 0,
- 'data' => [
- 'total' => $res['total'],
- 'list' => $res['room_info']
- ]
- ];
- }
- }
|