You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.0 KiB
34 lines
1.0 KiB
<?php
|
|
|
|
return [
|
|
// 拜访日志管理
|
|
'visit_id_required' => '拜访ID不能为空',
|
|
'type_required' => '日志类型不能为空',
|
|
'not_found' => '拜访日志不存在',
|
|
'id_required' => 'ID不能为空',
|
|
'save_failed' => '保存失败',
|
|
'delete_success' => '删除成功',
|
|
'delete_failed' => '删除失败',
|
|
|
|
// 日志类型
|
|
'type_create' => '创建申请',
|
|
'type_update' => '更新申请',
|
|
'type_audit' => '审核',
|
|
'type_approve' => '通过',
|
|
'type_reject' => '驳回',
|
|
'type_enter' => '进厂',
|
|
'type_leave' => '离厂',
|
|
'type_cancel' => '取消',
|
|
'type_study' => '学习',
|
|
'type_exam' => '考试',
|
|
|
|
// 操作成功消息
|
|
'created_successfully' => '拜访日志创建成功',
|
|
'updated_successfully' => '拜访日志更新成功',
|
|
'deleted_successfully' => '拜访日志删除成功',
|
|
|
|
// 验证消息
|
|
'visit_not_exists' => '拜访记录不存在',
|
|
'invalid_type' => '无效的日志类型',
|
|
'operation_failed' => '操作失败',
|
|
]; |