StatController.php 388 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace business\controllers;
  3. use common\components\dateUtil;
  4. use Yii;
  5. use common\components\util;
  6. class StatController extends BaseController
  7. {
  8. public function actionList()
  9. {
  10. $type = Yii::$app->request->get('type', 1);
  11. if ($type >= 30) {
  12. //收入统计
  13. //访问统计
  14. //客户统计
  15. //按来源统计
  16. //按分类统计
  17. //按用途统计
  18. }
  19. }
  20. }