| 1234567891011121314151617181920212223242526 |
- <?php
- namespace business\controllers;
- use common\components\dateUtil;
- use Yii;
- use common\components\util;
- class StatController extends BaseController
- {
-
- public function actionList()
- {
- $type = Yii::$app->request->get('type', 1);
- if ($type >= 30) {
- //收入统计
- //访问统计
- //客户统计
- //按来源统计
- //按分类统计
- //按用途统计
- }
-
- }
-
- }
|