opt:增加操作管理界面

This commit is contained in:
2026-03-18 18:56:16 +08:00
parent e22878d90e
commit 3154f371cf
10 changed files with 799 additions and 6 deletions

View File

@@ -0,0 +1,58 @@
export default {
'hotel': {
'title': 'Operation Console',
'refresh': 'Refresh',
'last_update': 'Last Update',
'legend': {
'idle': 'Idle',
'busy': 'In Task'
},
'status': {
'idle': 'Idle',
'running': 'Running',
'arrived': 'Arrived',
'dispatchable': 'Dispatchable'
},
'create': {
'title': 'Dispatch Task',
'target_room': 'Target Room',
'task_type': 'Task Type',
'vehicle_number': 'Vehicle No.',
'vehicle_placeholder': 'Optional, specify vehicle',
'priority': 'Priority',
'priority_placeholder': 'Optional',
'cancel': 'Cancel',
'confirm': 'Confirm Dispatch',
'success': 'Task dispatched to room {room} successfully',
'failed': 'Task dispatch failed',
'failed_retry': 'Task dispatch failed, please try again',
'type_required': 'Please select task type',
'type_placeholder': 'Please select task type'
},
'cancel': {
'title': 'Cancel Task',
'room': 'Room',
'task_code': 'Task Code',
'task_type': 'Task Type',
'vehicle': 'Vehicle No.',
'status': 'Status',
'warning': 'Confirm cancellation? This action cannot be undone.',
'close': 'Close',
'confirm': 'Confirm Cancel',
'success': 'Task cancelled',
'failed': 'Cancel failed, please try again'
},
'go_home': {
'title': 'Go Home',
'vehicle_number': 'Vehicle No.',
'vehicle_placeholder': 'Please select vehicle',
'vehicle_required': 'Please select vehicle',
'cancel': 'Cancel',
'confirm': 'Confirm',
'success': 'Go Home command sent to vehicle {vehicle}',
'failed': 'Go Home command failed, please try again'
},
'empty': 'No room data available',
'query_failed': 'Failed to query room status, please check network'
}
}