|
|
@ -413,13 +413,18 @@ class PlatformController extends ThinkController
|
|
|
|
unset($map['tp1.id']);
|
|
|
|
unset($map['tp1.id']);
|
|
|
|
unset($map['tp1.chain']);
|
|
|
|
unset($map['tp1.chain']);
|
|
|
|
$map['promote_id'] = 0;
|
|
|
|
$map['promote_id'] = 0;
|
|
|
|
//官方渠道数据添加
|
|
|
|
$authorityData['count'] = 0;
|
|
|
|
$authorityData = M('user', 'tab_')->field('date_format(FROM_UNIXTIME(register_time),"%Y-%m-%d") AS time, count(id) as count,
|
|
|
|
//如果有官方渠道权限
|
|
|
|
|
|
|
|
if (in_array('0', explode(",", session('user_auth_promote_ids')))) {
|
|
|
|
|
|
|
|
//官方渠道数据添加
|
|
|
|
|
|
|
|
$authorityData = M('user', 'tab_')->field('date_format(FROM_UNIXTIME(register_time),"%Y-%m-%d") AS time,
|
|
|
|
|
|
|
|
count(id) as count,
|
|
|
|
count(IF(register_time ' . $today . ',1,null)) as today,
|
|
|
|
count(IF(register_time ' . $today . ',1,null)) as today,
|
|
|
|
count(IF(register_time ' . $week . ',1,null)) as week,
|
|
|
|
count(IF(register_time ' . $week . ',1,null)) as week,
|
|
|
|
count(IF(register_time ' . $mounth . ',1,null)) as mounth')
|
|
|
|
count(IF(register_time ' . $mounth . ',1,null)) as mounth')
|
|
|
|
->where($map)
|
|
|
|
->where($map)
|
|
|
|
->find();
|
|
|
|
->find();
|
|
|
|
|
|
|
|
}
|
|
|
|
$authorityData['promote_account'] = "官方渠道";
|
|
|
|
$authorityData['promote_account'] = "官方渠道";
|
|
|
|
$authorityData['id'] = "1";
|
|
|
|
$authorityData['id'] = "1";
|
|
|
|
if (isset($_REQUEST['promote_id'])||$authorityData['count']==0) {
|
|
|
|
if (isset($_REQUEST['promote_id'])||$authorityData['count']==0) {
|
|
|
|