修复无法正常导入团队成员的问题

Signed-off-by: vilson <545522390@qq.com>
This commit is contained in:
vilson 2019-08-26 08:08:03 +08:00
parent f41fdebb8f
commit 03a52f8d09

View File

@ -71,7 +71,7 @@ class Account extends BasicApi
list($start, $end) = explode('~', $params['date']);
$where[] = ['last_login_time', 'between', ["{$start} 00:00:00", "{$end} 23:59:59"]];
}
$list = $this->model->_list($where, 'id desc');
$list = $this->model->_list($where, 'id asc');
if ($list['list']) {
foreach ($list['list'] as &$item) {
$memberInfo = Member::where(['code' => $item['member_code']])->field('id', true)->find();