| 12345678910111213141516171819202122232425262728 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- namespace app\modules\client\controllers\v1;
- use app\modules\client\controllers\BaseController;
- use app\modules\admin\models\booking\BookingForm;
- class BookingController extends BaseController
- {
- public function behaviors()
- {
- return parent::behaviors();
- }
-
- public function actionCatListSelect()
- {
- $form = new BookingForm();
- $form->store_id = get_store_id();
- $res = $form->catListSelect();
- return $this->asJson($res);
- }
- }
|