后台充值和提现申请的数量总数不对处理方法
后台充值和体现的数量多了,这个申请和体现的总数不对,解决方法如下
打开 admin-user_account.php
function account_list() 方法里面
搜素 $sql = "SELECT COUNT(*) FROM " .$GLOBALS['ecs']->table('user_account'). " AS ua, ".
$GLOBALS['ecs']->table('users') . " AS u " . $where;
修改为
$sql = "SELECT COUNT(*) FROM " .$GLOBALS['ecs']->table('user_account'). " AS ua ".
" left join ".$GLOBALS['ecs']->table('users') . " AS u on u.user_id=ua.user_id ".$where;
_id=ua.user_id ".$where; 赞 (0)