| 12345678910111213141516171819202122232425262728293031323334 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- namespace app\plugins\adopt\controllers\client;
- use app\plugins\adopt\controllers\BaseController;
- use app\plugins\adopt\models\client\DeviceForm;
- class DeviceController extends BaseController
- {
- /**
- * 获取监控列表
- * @return array
- */
- public function actionIndex(){
- $form = new DeviceForm();
- $form->cat_id = get_params('cat_id',0);
- $form->page = get_params('page',1);
- $form->store_id = get_store_id();
- $result = $form->search();
- return $result;
- }
- public function actionPlay(){
- $form = new DeviceForm();
- $form->store_id = get_store_id();
- $form->device_id = get_params('device_id');
- $result = $form->getPlayUrl();
- return $result;
- }
- }
|