| @if(empty($info['status']))
                                                    未完成
                                                @else
                                                    完成
                                                @endif | {{$info['title']}} | {{$info['memo']}} | @foreach($info['roles'] as $v)
                                                    {{$v->nickname??''}}
                                                @endforeach | {{$info['node_date']}} | @php
                                                    if (empty($info['status'])){
                                                        echo '';
                                                    }else{
                                                        echo substr($info['status'],0,10);
                                                    }
                                                @endphp | @php
                                                    //完成时间>节点时间、未完成时间小于当天时间时为逾期
                                                        if(!empty($info['status'])){
                                                            if(strtotime(date('Y-m-d',strtotime($info['status'])))>strtotime($info['node_date'])){
                                                                $beOverdueDay=(strtotime(date('Y-m-d',strtotime($info['status'])))-strtotime($info['node_date']))/3600/24;
                                                                echo '逾期'.round($beOverdueDay).'天';
                                                            }else{
                                                                echo '';
                                                            }
                                                        }else{
                                                            if(strtotime($info['node_date'])< strtotime(date('Y-m-d'))){
                                                                $beOverdueDay=(strtotime(date('Y-m-d'))-strtotime($info['node_date']))/3600/24;
                                                                echo '逾期'.round($beOverdueDay).'天';
                                                            }else{
                                                                echo '';
                                                            }
                                                        }
                                                @endphp | {{$info['overdue_memo']}}@if(!empty($type)) | @if(!empty($info['is_client_score']))
                                                        
                                                    @endif@endif | 
                                    @endforeach