ShopCapitalController.php 432 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace hd\controllers;
  3. use biz\shop\classes\ShopCapitalClass;
  4. use common\components\util;
  5. use Yii;
  6. class ShopCapitalController extends BaseController
  7. {
  8. public $guestAccess = [];
  9. public function actionList()
  10. {
  11. $where = [];
  12. $where['sjId'] = $this->sjId;
  13. $where['shopId'] = $this->shopId;
  14. $list = ShopCapitalClass::getCapitalList($where);
  15. util::success($list);
  16. }
  17. }