HdController.php 552 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace mall\controllers;
  3. use bizHd\custom\classes\CustomClass;
  4. use bizHd\custom\classes\HdClass;
  5. use common\components\httpUtil;
  6. use common\components\util;
  7. class HdController extends BaseController
  8. {
  9. public function actionList()
  10. {
  11. $where = [];
  12. $where['ownShopId'] = $this->shopId;
  13. $respond = HdClass::getHdList($where);
  14. $showGlInfo = getenv('SHOW_GL_INFO');
  15. $info = $showGlInfo === false ? 1 : $showGlInfo;
  16. $respond['showGlInfo'] = $info;
  17. util::success($respond);
  18. }
  19. }