|
|
|
@ -2199,10 +2199,11 @@ class DownloadController extends BaseController {
|
|
|
|
|
if($value1['status'] == 2) {
|
|
|
|
|
$value1['promotestatus'] = "冻结中";
|
|
|
|
|
}
|
|
|
|
|
$value1['account'] = substr_replace($value1['account'],'****',2);
|
|
|
|
|
$realname = mb_strlen($value1['real_name'],'utf-8') == 2 ? mb_substr($value1['real_name'],0,1,'utf-8').'*':mb_substr($value1['real_name'],0,1,'utf-8').'**';
|
|
|
|
|
$value1['real_name'] = $realname;
|
|
|
|
|
$value1['idcard'] = substr_replace($value1['idcard'],'************',3,12);
|
|
|
|
|
$value1['create_time'] = date('Y-m-d H:i:s',$value1['create_time']);
|
|
|
|
|
$xlsData[] = $value1;
|
|
|
|
|
$value1['create_time'] = date('Y-m-d H:i:s',$value1['create_time']);
|
|
|
|
|
$xlsData[] = $value1;
|
|
|
|
|
}
|
|
|
|
|
$this->exportExcel($xlsName, $xlsCell, $xlsData,$id);
|
|
|
|
|
}
|
|
|
|
@ -3087,7 +3088,7 @@ class DownloadController extends BaseController {
|
|
|
|
|
$records[] = [
|
|
|
|
|
'id' => $parent['id'],
|
|
|
|
|
'account' => $parent['account'],
|
|
|
|
|
'real_name' => $parent['real_name'],
|
|
|
|
|
'real_name' => mb_strlen($parent['real_name'],'utf-8') == 2 ? mb_substr($parent['real_name'],0,1,'utf-8').'*':mb_substr($parent['real_name'],0,1,'utf-8').'**',
|
|
|
|
|
'level' => $parent['level'],
|
|
|
|
|
'create_role_count' => $selfCreateRoleCountList[$parent['id']],
|
|
|
|
|
'create_role_user_count' => $selfCreateRoleUserCountList[$parent['id']],
|
|
|
|
@ -3109,7 +3110,7 @@ class DownloadController extends BaseController {
|
|
|
|
|
$records[] = [
|
|
|
|
|
'id' => $id,
|
|
|
|
|
'account' => $promote['account'],
|
|
|
|
|
'real_name' => $promote['real_name'],
|
|
|
|
|
'real_name' => mb_strlen($promote['real_name'],'utf-8') == 2 ? mb_substr($promote['real_name'],0,1,'utf-8').'*':mb_substr($promote['real_name'],0,1,'utf-8').'**',
|
|
|
|
|
'level' => $promote['level'],
|
|
|
|
|
'create_role_count' => $createRoleCountList[$id],
|
|
|
|
|
'create_role_user_count' => $createRoleUserCountList[$id],
|
|
|
|
|