Blame view

src/views/oa/todayAttendanceManageLang.js 1.93 KB
d4a6b78f   wuxw   OA 中考勤功能开发完成
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
  export const messages = {
    en: {
      todayAttendanceManage: {
        search: {
          title: 'Search Conditions',
          classesName: 'Please enter team name',
          departmentName: 'Please enter department name',
          date: 'Please select attendance date',
          staffName: 'Please enter staff name'
        },
        list: {
          title: 'Today Attendance'
        },
        table: {
          staffName: 'Staff Name',
          classesName: 'Attendance Team',
          attendanceDate: 'Attendance Date',
          stateName: 'Attendance Status',
          operation: 'Operation'
        },
        fetchError: 'Failed to fetch attendance data'
      },
      todayAttendanceDetail: {
        title: 'Attendance Details',
        table: {
          name: 'Name',
          work: 'Work',
          offWork: 'Off Work',
          attendanceRange: 'Attendance Range',
          lateEarly: 'Late/Early',
          status: 'Status',
          attendanceTime: 'Attendance Time',
          notCheckIn: 'Not Checked In',
          snapshot: 'Snapshot'
        }
      }
    },
    zh: {
      todayAttendanceManage: {
        search: {
          title: '查询条件',
          classesName: '请输入班组名称',
          departmentName: '请输入部门名称',
          date: '请选择打卡时间',
          staffName: '请输入员工名称'
        },
        list: {
          title: '今日考勤'
        },
        table: {
          staffName: '员工名称',
          classesName: '考勤班组',
          attendanceDate: '考勤时间',
          stateName: '考勤状态',
          operation: '操作'
        },
        fetchError: '获取考勤数据失败'
      },
      todayAttendanceDetail: {
        title: '考勤详情',
        table: {
          name: '名称',
          work: '上班',
          offWork: '下班',
          attendanceRange: '打卡范围',
          lateEarly: '迟到/早退',
          status: '状态',
          attendanceTime: '打卡时间',
          notCheckIn: '未打卡',
          snapshot: '抓拍'
        }
      }
    }
  }