Blame view

src/views/admin/orderManageLang.js 2.26 KB
1705091d   wuxw   开发完成 admin 台账功能
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
75
76
77
78
79
80
81
82
83
84
85
86
  export const messages = {
    en: {
      orderManage: {
        queryCondition: 'Query Condition',
        orderList: 'Order List',
        orderId: 'Order ID',
        externalId: 'External ID',
        businessId: 'Business ID',
        startTime: 'Start Time',
        endTime: 'End Time',
        operator: 'Operator',
        businessName: 'Business Name',
        appName: 'App Name',
        createTime: 'Create Time',
        action: 'Action',
        actionObj: 'Action Object',
        status: 'Status',
        operation: 'Operation',
        log: 'Log',
        noLog: 'No Log',
        add: 'Add',
        modify: 'Modify',
        delete: 'Delete',
        completed: 'Completed',
        failed: 'Failed',
        allApps: 'All Apps',
        fetchError: 'Failed to fetch orders',
        fetchAppsError: 'Failed to fetch apps'
      },
      viewUnItemLog: {
        title: 'Order Log',
        serviceName: 'Service Name',
        action: 'Action',
        actionObj: 'Action Object',
        preValue: 'Before Value',
        afterValue: 'After Value',
        logText: 'Original Log',
        add: 'Add',
        modify: 'Modify',
        delete: 'Delete',
        fetchError: 'Failed to fetch log'
      }
    },
    zh: {
      orderManage: {
        queryCondition: '查询条件',
        orderList: '受理单',
        orderId: '订单编号',
        externalId: '外部编号',
        businessId: '业务编号',
        startTime: '受理开始时间',
        endTime: '受理结束时间',
        operator: '操作人',
        businessName: '业务名称',
        appName: '应用名称',
        createTime: '受理时间',
        action: '受理动作',
        actionObj: '受理表',
        status: '状态',
        operation: '操作',
        log: '日志',
        noLog: '无日志',
        add: '添加',
        modify: '修改',
        delete: '删除',
        completed: '完成',
        failed: '失败',
        allApps: '全部应用',
        fetchError: '获取订单列表失败',
        fetchAppsError: '获取应用列表失败'
      },
      viewUnItemLog: {
        title: '受理记录',
        serviceName: '受理服务',
        action: '受理动作',
        actionObj: '受理表',
        preValue: '受理前',
        afterValue: '受理后',
        logText: '原始记录',
        add: '添加',
        modify: '修改',
        delete: '删除',
        fetchError: '获取日志失败'
      }
    }
  }