This commit is contained in:
weiz 2024-05-27 16:57:54 +08:00
parent 304a6bf548
commit 8ed7f518a6

View File

@ -91,7 +91,7 @@
->field('f.*,a.name')
->alias('f')
->join('admin a', 'a.id = f.check_user_id', 'left')
->where(['f.step_id' => $val['id']])->select()->toArray();
->where(['f.step_id' => $val['id']])->where('f.status','>',0)->select()->toArray();
foreach ($check_list as $kk => &$vv) {
$vv['check_time_str'] = date('Y-m-d H:i', $vv['check_time']);
}