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
| export default {
| common: {
| button: {
| text: {
| add: '新增',
| edit: '编辑',
| del: '删除',
| }
| },
| dialog: {
| title: {
| add: '新增',
| edit: '编辑',
| del: '删除',
| }
| }
| },
| views: {
| rule: {
| ruleLibrary: {
| title: '规则类型',
| IndexPage: {
| TypeList: {
| title: '规则列表'
| },
| RuleTable: {
| title: '列表'
| }
| }
| }
| }
| },
| components: {
| table: {
| tableSearch: {
| title: '搜索条件',
| reset: '重置',
| search: '提交',
| expand: '展开',
| retract: '收起'
| },
| tablePro: {
| ColSetting: {
| title: '字段设置',
| }
| }
| },
| dialog: {
| dialogForm: {
| cancel: '取消',
| save: '保存',
| reset: '重置',
| }
| }
| }
| };
|
|