mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 12:30:49 +08:00
15 lines
330 B
PHP
15 lines
330 B
PHP
<?php
|
|
|
|
return [
|
|
'admin' => [
|
|
'list' => [
|
|
'page_title' => '考核用户列表'
|
|
]
|
|
],
|
|
'status' => [
|
|
\App\Models\ExamUser::STATUS_FINISHED => '已结束',
|
|
\App\Models\ExamUser::STATUS_AVOIDED => '已免除',
|
|
\App\Models\ExamUser::STATUS_NORMAL => '考核中',
|
|
],
|
|
];
|