You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
479 B
27 lines
479 B
<?php
|
|
|
|
namespace app\admin\controller\qingdong\statistic;
|
|
|
|
|
|
use addons\qingdong\model\Contract;
|
|
use addons\qingdong\model\ContractRatio;
|
|
use addons\qingdong\model\Receivables;
|
|
use app\common\controller\Backend;
|
|
use addons\qingdong\model\Achievement as AchievementModel;
|
|
use addons\qingdong\model\Staff;
|
|
|
|
/**
|
|
* 数据报表
|
|
*/
|
|
class Analytics extends Backend
|
|
{
|
|
/**
|
|
* 数据报表
|
|
*/
|
|
public function index()
|
|
{
|
|
|
|
return $this->view->fetch();
|
|
}
|
|
|
|
}
|
|
|