a42b3256
wuxw
HC小区管理系统前段vue版正在开发中
|
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
|
export const messages = {
en: {
addRoute: {
title: 'Add Application API',
appName:'app name',
appId: 'app id',
remark: 'remark',
description: {
label: 'Description',
placeholder: 'Please input description (optional)'
},
submit: 'Submit',
success: 'API added successfully!',
// 新增部分
selectApiTitle: 'Select Interface',
serviceCode: 'service code',
serviceName: 'service name',
serviceId: 'service ID',
url: 'URL',
apiId: 'apiId',
apiCode: 'apiCode',
apiName: 'apiName',
}
},
zh: {
addRoute: {
title: '新增应用API',
appName:'应用名称',
appId: 'app id',
remark: '备注',
description: {
label: '描述',
placeholder: '请输入描述(可选)'
},
submit: '提交',
success: 'API添加成功!',
// 新增部分
selectApiTitle: '选择接口',
serviceCode: '接口编码',
serviceName: '接口名称',
serviceId: '接口ID',
url: 'URL',
apiId: '接口ID',
apiCode: '接口编码',
apiName: '接口名称',
}
}
}
|