| 123456789101112131415161718192021222324252627 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- namespace app\plugins\food\controllers\client;
- use app\plugins\food\controllers\BaseController;
- use app\plugins\food\models\client\GoodsForm;
- use yii\web\Controller;
- class GoodsController extends BaseController
- {
- /**
- * 商品详情
- * @return array|mixed
- */
- public function actionDetail() {
- $form = new GoodsForm();
- $form->store_id = get_store_id();
- $form->attributes = get_params();
- return $form->detail();
- }
- }
|