| 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
 | | (function (global, factory) { |  |   if (typeof define === "function" && define.amd) { |  |     define('element/locale/zh-CN', ['module', 'exports'], factory); |  |   } else if (typeof exports !== "undefined") { |  |     factory(module, exports); |  |   } else { |  |     var mod = { |  |       exports: {} |  |     }; |  |     factory(mod, mod.exports); |  |     global.ELEMENT.lang = global.ELEMENT.lang || {};  |  |     global.ELEMENT.lang.zhCN = mod.exports; |  |   } |  | })(this, function (module, exports) { |  |   'use strict'; |  |   |  |   exports.__esModule = true; |  |   exports.default = { |  |     el: { |  |       colorpicker: { |  |         confirm: '确定', |  |         clear: '清空' |  |       }, |  |       datepicker: { |  |         now: '此刻', |  |         today: '今天', |  |         cancel: '取消', |  |         clear: '清空', |  |         confirm: '确定', |  |         selectDate: '选择日期', |  |         selectTime: '选择时间', |  |         startDate: '开始日期', |  |         startTime: '开始时间', |  |         endDate: '结束日期', |  |         endTime: '结束时间', |  |         prevYear: '前一年', |  |         nextYear: '后一年', |  |         prevMonth: '上个月', |  |         nextMonth: '下个月', |  |         year: '年', |  |         month1: '1 月', |  |         month2: '2 月', |  |         month3: '3 月', |  |         month4: '4 月', |  |         month5: '5 月', |  |         month6: '6 月', |  |         month7: '7 月', |  |         month8: '8 月', |  |         month9: '9 月', |  |         month10: '10 月', |  |         month11: '11 月', |  |         month12: '12 月', |  |         // week: '周次', |  |         weeks: { |  |           sun: '日', |  |           mon: '一', |  |           tue: '二', |  |           wed: '三', |  |           thu: '四', |  |           fri: '五', |  |           sat: '六' |  |         }, |  |         months: { |  |           jan: '一月', |  |           feb: '二月', |  |           mar: '三月', |  |           apr: '四月', |  |           may: '五月', |  |           jun: '六月', |  |           jul: '七月', |  |           aug: '八月', |  |           sep: '九月', |  |           oct: '十月', |  |           nov: '十一月', |  |           dec: '十二月' |  |         } |  |       }, |  |       select: { |  |         loading: '加载中', |  |         noMatch: '无匹配数据', |  |         noData: '无数据', |  |         placeholder: '请选择' |  |       }, |  |       cascader: { |  |         noMatch: '无匹配数据', |  |         loading: '加载中', |  |         placeholder: '请选择', |  |         noData: '暂无数据' |  |       }, |  |       pagination: { |  |         goto: '前往', |  |         pagesize: '条/页', |  |         total: '共 {total} 条', |  |         pageClassifier: '页' |  |       }, |  |       messagebox: { |  |         title: '提示', |  |         confirm: '确定', |  |         cancel: '取消', |  |         error: '输入的数据不合法!' |  |       }, |  |       upload: { |  |         deleteTip: '按 delete 键可删除', |  |         delete: '删除', |  |         preview: '查看图片', |  |         continue: '继续上传' |  |       }, |  |       table: { |  |         emptyText: '暂无数据', |  |         confirmFilter: '筛选', |  |         resetFilter: '重置', |  |         clearFilter: '全部', |  |         sumText: '合计' |  |       }, |  |       tree: { |  |         emptyText: '暂无数据' |  |       }, |  |       transfer: { |  |         noMatch: '无匹配数据', |  |         noData: '无数据', |  |         titles: ['列表 1', '列表 2'], |  |         filterPlaceholder: '请输入搜索内容', |  |         noCheckedFormat: '共 {total} 项', |  |         hasCheckedFormat: '已选 {checked}/{total} 项' |  |       }, |  |       image: { |  |         error: '加载失败' |  |       }, |  |       pageHeader: { |  |         title: '返回' |  |       }, |  |       popconfirm: { |  |         confirmButtonText: '确定', |  |         cancelButtonText: '取消' |  |       }, |  |       empty: { |  |         description: '暂无数据' |  |       } |  |     } |  |   }; |  |   module.exports = exports['default']; |  | }); | 
 |