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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
| export default {
| common: {
| button: {
| text: {
| add: '新增',
| edit: '编辑',
| del: '删除',
| view: '详情'
| }
| },
| modal: {
| title: {
| system: '系统提示',
| },
| button: {
| confirm: '确定',
| cancel: '取消'
| }
| },
| dialog: {
| title: {
| add: '新增',
| edit: '编辑',
| del: '删除',
| view: '详情'
| }
| }
| },
| views: {
| discount: {
| discountAgm: {
| title: '折扣政策',
| IndexPage: {
| DiscountTree: {
| title: '政策列表',
| }
| }
| },
| discountTry: {
| title: '试算查询',
| IndexPage: {
| TryTable: {
| title: '试算列表',
| }
| }
| },
| discountSettle: {
| title: '结算发起',
| IndexPage: {
| SettleTable: {
| title: '结算列表',
| }
| }
| }
| },
| agreement: {
| agreementDisplay: {
| title: '协议额外筛选',
| IndexPage: {
| title: '筛选列表',
| }
| }
| },
| fee: {
| feeJoint: {
| title: '数据关系',
| IndexPage: {
| title: '关系列表',
| }
| },
| feePlan: {
| title: '折扣方案',
| IndexPage: {
| title: '方案列表',
| }
| },
| feeModelBand: {
| title: '折扣方案',
| IndexPage: {
| GroupList: {
| title: '列表',
| },
| BandTable: {
| title: '列表',
| }
| }
| }
| },
| log: {
| logInterface: {
| title: '接口监控',
| IndexPage: {
| InterfaceList: {
| title: '接口列表'
| },
| InterfaceTable: {
| title: '列表'
| }
| }
| }
| },
| agm: {
| agmParams: {
| title: '备案配置',
| IndexPage: {
| GroupList: {
| title: '备案分组'
| },
| ParamTable: {
| title: '列表'
| }
| }
| }
| },
| system: {
| systemDict: {
| title: '字典管理'
| },
| systemInterface: {
| title: '接口配置',
| IndexPage: {
| InterfaceTable: {
| title: '列表'
| },
| TypeList: {
| title: '接口分组'
| }
| }
| },
| systemNotice: {
| title: '公告管理',
| IndexPage: {
| title: '列表'
| }
| }
| },
| rule: {
| ruleAgm: {
| title: '备案配置',
| IndexPage: {
| GroupList: {
| title: '备案分组'
| },
| ParamTable: {
| title: '列表'
| }
| }
| },
| ruleLibrary: {
| title: '规则类型',
| IndexPage: {
| TypeList: {
| title: '规则列表'
| },
| RuleTable: {
| title: '列表'
| }
| }
| }
| }
| },
| components: {
| table: {
| TableSearch: {
| title: '搜索条件',
| reset: '重置',
| search: '查询',
| expand: '展开',
| retract: '收起',
| ColSetting: {
| title: '字段设置',
| }
| },
| TablePro: {
| ColSetting: {
| title: '字段设置',
| }
| }
| },
| dialog: {
| DialogForm: {
| cancel: '取消',
| save: '保存',
| reset: '重置',
| }
| },
| page: {
| PageForm: {
| cancel: '取消',
| save: '保存',
| reset: '重置',
| }
| }
| }
| };
|
|