| 123456789101112131415161718 |
- <?php
- namespace ghs\controllers;
- use bizGhs\stat\classes\StatKdClass;
- use common\components\util;
- class StatKdController extends BaseController
- {
- //各渠道收入 ssh 20220711
- public function actionProfile()
- {
- $incomeList = StatKdClass::eachChannelIncome($this->mainId, $this->shop);
- util::success(['list' => $incomeList]);
- }
- }
|