@extends('layouts.crm') @section('title')被评价人设置@endsection @section('header') @endsection @section('navbread') {{-- */ $navbread = [ ['name' => '教职工考评', 'href' => ''], ['name' => '被评价人设置', 'href' => ''], ] /* --}} @endsection @section('body')
评价表名称 | 创建日期 | 被评人设置 | 评价表状态 | 操作 |
---|---|---|---|---|
{{ $v['title'] }} | {{ date('Y-m-d', $v['create_at']) }} | {{ !empty($v['review_user_id']) ? '已设置' : '未设置' }} | @if($v['over_at'] < time()) {{ '已过期' }} @else {{ $v['status'] == 1 ? '已启用' : '未启用' }} @endif | 查看 @if(hasPower('review::editPersonReview')) @if($v['status'] == 0 && $v['over_at'] > time()) 编辑 @endif @endif |