diff --git a/Application/Common/Common/extend.php b/Application/Common/Common/extend.php index 55133a125..0e0b103f4 100644 --- a/Application/Common/Common/extend.php +++ b/Application/Common/Common/extend.php @@ -1900,7 +1900,7 @@ function arr_count1($string){ return $cou; } /** - * 获取新推广权限后底下推广员子账号 + * 获取新推广权限后 底下推广员子账号 * @param int $id 推广员id * @param array,string 查询字段 * @return array @@ -1908,8 +1908,13 @@ function arr_count1($string){ function getPrmoteChlidAccount($id=0,$field="*") { $promote = M("promote","tab_"); + //获取自己的等级 + $self = $promote->field("chain,level")->where("id = '{$id}'")->find(); + $map['status'] = 1; - $map["chain"] = array("LIKE","%/{$id}/%"); + $map["chain"] = array("LIKE","%{$self['chain']}%"); + $map["level"] = array("GT",$self['level']); + $data = $promote->field($field)->where($map)->select(); if(empty($data)){return array();} return $data;