| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?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\AdoptGoodsForm;
- use app\plugins\adopt\models\client\AdoptGoodsListForm;
- use yii\web\Controller;
- class AdoptGoodsController extends BaseController
- {
- /**
- * 商品列表
- */
- public function actionAdoptGoodsList()
- {
- $form = new AdoptGoodsListForm();
- $form->attributes = get_params();
- $form->limit = 6;
- $form->store_id = get_store_id();
- return $form->GoodsSearch();
- }
- /**
- * 商品详情
- */
- public function actionAdoptGoods()
- {
- $form = new AdoptGoodsForm();
- $form->attributes = get_params();
- $form->user_id = get_user_id();
- $form->store_id = get_store_id();
- return $form->search();
- }
- }
|