{{-- 文件功能:后台任命管理页面 展示当前所有在职人员,支持新增任命和撤销职务 任命时可搜索用户并选择目标职务 @author ChatRoom Laravel @version 1.0.0 --}} @extends('admin.layouts.app') @section('title', '任命管理') @section('content')
{{-- 头部 --}}

任命管理

管理当前所有在职职位人员,执行任命或撤销操作

历史记录
{{-- 在职人员列表 --}}
@forelse ($activePositions as $up) @empty @endforelse
用户 部门·职务 等级 任命人 任命时间 在职天数 操作
{{ $up->user->username }}
Lv.{{ $up->user->user_level }}
{{ $up->position->icon }}
{{ $up->position->department->name }}
{{ $up->position->name }}
Lv.{{ $up->position->level }} {{ $up->appointedBy?->username ?? '系统' }} {{ $up->appointed_at->format('Y-m-d') }} {{ $up->duration_days }} 天 登录日志 操作日志
@csrf @method('DELETE')
暂无在职人员
{{-- 新增任命弹窗 --}}
@endsection