File: /www/wwwroot/douyin.dsfnj.com/application/crm/model/Index.php
<?php
// +----------------------------------------------------------------------
// | Description: CRM工作台
// +----------------------------------------------------------------------
// | Author: ming | 1006941410@qq.com
// +----------------------------------------------------------------------
namespace app\crm\model;
use think\Db;
use app\admin\model\Common;
use think\Request;
use think\Validate;
use think\helper\Time;
class Index extends Common
{
/**
* 销售简报
* @author ming
* @param
* @return
*/
public function getSalesData($param)
{
$where = array();
$start_time = $param['start_time'];
$where['create_time'] = Time::today();
}
}