StatKdController.php 365 B

123456789101112131415161718
  1. <?php
  2. namespace ghs\controllers;
  3. use bizGhs\stat\classes\StatKdClass;
  4. use common\components\util;
  5. class StatKdController extends BaseController
  6. {
  7. //各渠道收入 ssh 20220711
  8. public function actionProfile()
  9. {
  10. $incomeList = StatKdClass::eachChannelIncome($this->mainId, $this->shop);
  11. util::success(['list' => $incomeList]);
  12. }
  13. }