@byteluck-fe/model-driven-shared 2.23.0-beta.9 → 2.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +29 -29
- package/dist/esm/EventLogic.js +24 -24
- package/dist/esm/RulesMessage.js +2 -10
- package/dist/esm/calc.js +35 -35
- package/dist/esm/entity/Department.js +7 -7
- package/dist/esm/entity/User.js +39 -39
- package/dist/esm/enum.js +75 -74
- package/dist/esm/locales/en-US.json +158 -154
- package/dist/esm/locales/ja-JP.json +158 -154
- package/dist/esm/locales/zh-CN.json +241 -237
- package/dist/esm/updateValueFromKeys.js +6 -6
- package/dist/esm/utils.js +10 -10
- package/dist/index.umd.js +1 -1
- package/dist/types/EventLogic.d.ts +305 -305
- package/dist/types/RulesMessage.d.ts +13 -13
- package/dist/types/calc.d.ts +74 -74
- package/dist/types/constant.d.ts +2 -2
- package/dist/types/entity/Department.d.ts +15 -15
- package/dist/types/entity/User.d.ts +85 -85
- package/dist/types/entity/index.d.ts +2 -2
- package/dist/types/enum.d.ts +269 -268
- package/dist/types/genNonDuplicateId.d.ts +1 -1
- package/dist/types/index.d.ts +13 -13
- package/dist/types/locales/index.d.ts +560 -548
- package/dist/types/log.d.ts +5 -5
- package/dist/types/loopControls.d.ts +1 -1
- package/dist/types/updateValueFromKeys.d.ts +8 -8
- package/dist/types/utils.d.ts +53 -53
- package/dist/types/watcher.d.ts +14 -14
- package/package.json +2 -2
package/dist/esm/enum.js
CHANGED
|
@@ -10,23 +10,23 @@ export var CONTROL_BASE_TYPE;
|
|
|
10
10
|
})(CONTROL_BASE_TYPE || (CONTROL_BASE_TYPE = {}));
|
|
11
11
|
export var FORM_TYPE;
|
|
12
12
|
(function(FORM_TYPE) {
|
|
13
|
-
/**
|
|
14
|
-
* 表单
|
|
13
|
+
/**
|
|
14
|
+
* 表单
|
|
15
15
|
* */ FORM_TYPE[FORM_TYPE["FORM"] = 0] = "FORM";
|
|
16
|
-
/**
|
|
17
|
-
* 列表
|
|
16
|
+
/**
|
|
17
|
+
* 列表
|
|
18
18
|
* */ FORM_TYPE[FORM_TYPE["LIST"] = 1] = "LIST";
|
|
19
|
-
/**
|
|
20
|
-
* 报表
|
|
19
|
+
/**
|
|
20
|
+
* 报表
|
|
21
21
|
* */ FORM_TYPE[FORM_TYPE["REPORT"] = 2] = "REPORT";
|
|
22
|
-
/**
|
|
23
|
-
* 仪表盘
|
|
22
|
+
/**
|
|
23
|
+
* 仪表盘
|
|
24
24
|
* */ FORM_TYPE[FORM_TYPE["DASHBOARD"] = 3] = "DASHBOARD";
|
|
25
|
-
/**
|
|
26
|
-
* Vue页面
|
|
25
|
+
/**
|
|
26
|
+
* Vue页面
|
|
27
27
|
* */ FORM_TYPE[FORM_TYPE["VUE"] = 4] = "VUE";
|
|
28
|
-
/**
|
|
29
|
-
* 自由页面
|
|
28
|
+
/**
|
|
29
|
+
* 自由页面
|
|
30
30
|
* */ FORM_TYPE[FORM_TYPE["FREE_PAGE"] = 5] = "FREE_PAGE";
|
|
31
31
|
})(FORM_TYPE || (FORM_TYPE = {}));
|
|
32
32
|
export var CONTROL_TYPE;
|
|
@@ -137,92 +137,93 @@ export var CONTROL_TYPE;
|
|
|
137
137
|
// grid_wrap 必须结合 grid-layout-container
|
|
138
138
|
CONTROL_TYPE["GRID_LAYOUT_WRAP"] = "grid-layout-wrap";
|
|
139
139
|
CONTROL_TYPE["VUE_PAGE"] = "vue-page";
|
|
140
|
+
CONTROL_TYPE["REFERENCE_LIST"] = "reference-list";
|
|
140
141
|
})(CONTROL_TYPE || (CONTROL_TYPE = {}));
|
|
141
142
|
export var OPT_TYPES;
|
|
142
143
|
(function(OPT_TYPES) {
|
|
143
|
-
/**
|
|
144
|
-
* 保存
|
|
144
|
+
/**
|
|
145
|
+
* 保存
|
|
145
146
|
* */ OPT_TYPES["SAVE"] = "save";
|
|
146
|
-
/**
|
|
147
|
-
* 草稿
|
|
147
|
+
/**
|
|
148
|
+
* 草稿
|
|
148
149
|
* */ OPT_TYPES["DRAFT"] = "draft";
|
|
149
|
-
/**
|
|
150
|
-
* 撤回
|
|
150
|
+
/**
|
|
151
|
+
* 撤回
|
|
151
152
|
* */ OPT_TYPES["UNSUBMIT"] = "unsubmit";
|
|
152
|
-
/**
|
|
153
|
-
* 审核
|
|
153
|
+
/**
|
|
154
|
+
* 审核
|
|
154
155
|
* */ OPT_TYPES["AUDIT"] = "audit";
|
|
155
|
-
/**
|
|
156
|
-
* 反审核
|
|
156
|
+
/**
|
|
157
|
+
* 反审核
|
|
157
158
|
* */ OPT_TYPES["UNAUDIT"] = "unaudit";
|
|
158
|
-
/**
|
|
159
|
-
* 取消
|
|
159
|
+
/**
|
|
160
|
+
* 取消
|
|
160
161
|
* */ OPT_TYPES["CANCEL"] = "cancel";
|
|
161
|
-
/**
|
|
162
|
-
* 提交
|
|
162
|
+
/**
|
|
163
|
+
* 提交
|
|
163
164
|
* */ OPT_TYPES["FORM_SUBMIT"] = "form_submit";
|
|
164
165
|
})(OPT_TYPES || (OPT_TYPES = {}));
|
|
165
166
|
export var FieldTypes;
|
|
166
167
|
(function(FieldTypes) {
|
|
167
|
-
/**
|
|
168
|
-
* 短文本,string
|
|
168
|
+
/**
|
|
169
|
+
* 短文本,string
|
|
169
170
|
* */ FieldTypes["VARCHAR"] = "varchar";
|
|
170
|
-
/**
|
|
171
|
-
* 长文本, string
|
|
171
|
+
/**
|
|
172
|
+
* 长文本, string
|
|
172
173
|
* */ FieldTypes["TEXT"] = "text";
|
|
173
|
-
/**
|
|
174
|
-
* 数组, Array<string>
|
|
174
|
+
/**
|
|
175
|
+
* 数组, Array<string>
|
|
175
176
|
* */ FieldTypes["ARRAY"] = "array";
|
|
176
|
-
/**
|
|
177
|
-
* 地址, AddressValue { city:string, district:string, province: string }
|
|
177
|
+
/**
|
|
178
|
+
* 地址, AddressValue { city:string, district:string, province: string }
|
|
178
179
|
* */ FieldTypes["ADDRESS"] = "location";
|
|
179
|
-
/**
|
|
180
|
-
* 数字, number
|
|
180
|
+
/**
|
|
181
|
+
* 数字, number
|
|
181
182
|
* */ FieldTypes["DECIMAL"] = "decimal";
|
|
182
183
|
// /**
|
|
183
184
|
// * 数值(decimal), number
|
|
184
185
|
// * */
|
|
185
186
|
// REAL_DECIMAL = 'real-decimal',
|
|
186
|
-
/**
|
|
187
|
-
* 数字区间, Array<number>
|
|
187
|
+
/**
|
|
188
|
+
* 数字区间, Array<number>
|
|
188
189
|
* */ FieldTypes["DECIMAL_RANGE"] = "decimal_range";
|
|
189
|
-
/**
|
|
190
|
-
* 日期, 时间戳字符串 string
|
|
190
|
+
/**
|
|
191
|
+
* 日期, 时间戳字符串 string
|
|
191
192
|
* */ FieldTypes["TIMESTAMP"] = "timestamp";
|
|
192
193
|
// /**
|
|
193
194
|
// * 日期(datetime), 时间戳字符串 string
|
|
194
195
|
// * */
|
|
195
196
|
// DATETIME = 'datetime',
|
|
196
|
-
/**
|
|
197
|
-
* 人员, Array<人员id string>
|
|
197
|
+
/**
|
|
198
|
+
* 人员, Array<人员id string>
|
|
198
199
|
* */ FieldTypes["EMPLOYEES"] = "people";
|
|
199
|
-
/**
|
|
200
|
-
* 部门, Array<部门id string>
|
|
200
|
+
/**
|
|
201
|
+
* 部门, Array<部门id string>
|
|
201
202
|
* */ FieldTypes["DEPARTMENTS"] = "department";
|
|
202
|
-
/**
|
|
203
|
-
* 金额, AmountValue { amount: number, currency: string }
|
|
203
|
+
/**
|
|
204
|
+
* 金额, AmountValue { amount: number, currency: string }
|
|
204
205
|
* */ FieldTypes["MONEY"] = "money";
|
|
205
|
-
/**
|
|
206
|
-
* 日期区间, DateRangeValue { max: string, min: string }
|
|
206
|
+
/**
|
|
207
|
+
* 日期区间, DateRangeValue { max: string, min: string }
|
|
207
208
|
* */ FieldTypes["TIMESCOPE"] = "timescope";
|
|
208
|
-
/**
|
|
209
|
-
* 附件, Array<附件id string>
|
|
209
|
+
/**
|
|
210
|
+
* 附件, Array<附件id string>
|
|
210
211
|
* */ FieldTypes["FILE"] = "file";
|
|
211
|
-
/**
|
|
212
|
-
* 图片, Array<图片id string>
|
|
212
|
+
/**
|
|
213
|
+
* 图片, Array<图片id string>
|
|
213
214
|
* */ FieldTypes["IMAGE"] = "image";
|
|
214
|
-
/**
|
|
215
|
-
* 自动编号, string
|
|
215
|
+
/**
|
|
216
|
+
* 自动编号, string
|
|
216
217
|
* */ FieldTypes["AUTO_NUMBER"] = "auto_number";
|
|
217
|
-
/**
|
|
218
|
-
* 计算公式, CalcValue { result: number, unit: string }
|
|
218
|
+
/**
|
|
219
|
+
* 计算公式, CalcValue { result: number, unit: string }
|
|
219
220
|
* */ FieldTypes["CALC"] = "calc";
|
|
220
221
|
// /**
|
|
221
222
|
// * 关联键, string
|
|
222
223
|
// * */
|
|
223
224
|
// RELATION = 'relation',
|
|
224
|
-
/**
|
|
225
|
-
* 列表 Array<any>
|
|
225
|
+
/**
|
|
226
|
+
* 列表 Array<any>
|
|
226
227
|
* */ FieldTypes["LIST"] = "list";
|
|
227
228
|
// /**
|
|
228
229
|
// * 关联字段
|
|
@@ -236,36 +237,36 @@ export var FieldTypes;
|
|
|
236
237
|
// * 计算公式字段
|
|
237
238
|
// * */
|
|
238
239
|
// CALC_FIELD = 'calc',
|
|
239
|
-
/**
|
|
240
|
-
* JSON字段
|
|
240
|
+
/**
|
|
241
|
+
* JSON字段
|
|
241
242
|
* */ FieldTypes["JSON"] = "json";
|
|
242
243
|
// /**
|
|
243
244
|
// * 整数类型
|
|
244
245
|
// * */
|
|
245
246
|
// BIGINT = 'bigint',
|
|
246
|
-
/**
|
|
247
|
-
* 任意类型
|
|
247
|
+
/**
|
|
248
|
+
* 任意类型
|
|
248
249
|
* */ FieldTypes["ANY"] = "ANY";
|
|
249
250
|
})(FieldTypes || (FieldTypes = {}));
|
|
250
251
|
export var DateType;
|
|
251
252
|
(function(DateType) {
|
|
252
|
-
/**
|
|
253
|
-
* 年
|
|
253
|
+
/**
|
|
254
|
+
* 年
|
|
254
255
|
* */ DateType["YEAR"] = "year";
|
|
255
|
-
/**
|
|
256
|
-
* 年月
|
|
256
|
+
/**
|
|
257
|
+
* 年月
|
|
257
258
|
* */ DateType["MONTH"] = "month";
|
|
258
|
-
/**
|
|
259
|
-
* 年月日
|
|
259
|
+
/**
|
|
260
|
+
* 年月日
|
|
260
261
|
* */ DateType["DATE"] = "date";
|
|
261
|
-
/**
|
|
262
|
-
* 年月日时
|
|
262
|
+
/**
|
|
263
|
+
* 年月日时
|
|
263
264
|
* */ DateType["DATEHOUR"] = "datehour";
|
|
264
|
-
/**
|
|
265
|
-
* 年月日时分
|
|
265
|
+
/**
|
|
266
|
+
* 年月日时分
|
|
266
267
|
* */ DateType["DATEMIN"] = "datemin";
|
|
267
|
-
/**
|
|
268
|
-
* 年月日时分秒
|
|
268
|
+
/**
|
|
269
|
+
* 年月日时分秒
|
|
269
270
|
* */ DateType["DATETIME"] = "datetime";
|
|
270
271
|
})(DateType || (DateType = {}));
|
|
271
272
|
export var DESIGNER_SLOT = {
|
|
@@ -1,154 +1,158 @@
|
|
|
1
|
-
{
|
|
2
|
-
"isNotNumber": "Please enter a number",
|
|
3
|
-
"isNotString": "Please enter a string",
|
|
4
|
-
"isNotObject": "Please enter an object",
|
|
5
|
-
"isNotArray": "Please enter an array",
|
|
6
|
-
"isNotBoolean": "Please enter a boolean",
|
|
7
|
-
"runtimeRequired": "{caption} Required",
|
|
8
|
-
"pleaseEnterCaption": "Please enter the title",
|
|
9
|
-
"pleaseEnterCaptionTip":"Please enter the bubble prompt",
|
|
10
|
-
"pleaseEnterRowCaption": "Please enter the row title",
|
|
11
|
-
"pleaseEnterPlaceholder": "Please enter the prompt text",
|
|
12
|
-
"pleaseEnterFieldCode": "Please bind data items",
|
|
13
|
-
"pleaseEnterForm": "Please bind the form",
|
|
14
|
-
"pleaseEnterList": "Please bind the list",
|
|
15
|
-
"pleaseEnterProcess": "Please bind the process",
|
|
16
|
-
"pleaseEnterLabel": "Please enter the displayed value",
|
|
17
|
-
"pleaseEnterValue": "Please enter the stored value",
|
|
18
|
-
"bizKeyNotBindFiled": "The document number is not bound to the data item",
|
|
19
|
-
"pleaseSelectOneField":"Please select at least one display field",
|
|
20
|
-
"pleaseEnterNumberRange": "Please enter a value greater than or equal to {min} and less than or equal to {max}",
|
|
21
|
-
"pleaseEnterAValueGreaterThanMin": "Please enter a value greater than or equal to {min}",
|
|
22
|
-
"pleaseEnterAValueLessThanMax": "Please enter a value less than or equal to {max}",
|
|
23
|
-
"numberRangeSetError": "The value range is set incorrectly",
|
|
24
|
-
"stringRangeError": "Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",
|
|
25
|
-
"attachmentMaxSize": "The attachment size must be between 0MB and 1000MB",
|
|
26
|
-
"pleaseEnterTotalScoreSetting": "Please fill in the total score setting",
|
|
27
|
-
"theTotalScoreMustNotBeLessThan1": "The total score cannot be less than 1",
|
|
28
|
-
"scoreDefaultValueRange": "The default value must be between {min} and {max}",
|
|
29
|
-
"attachmentLimitError": "The number of attachment uploads exceeds the limit",
|
|
30
|
-
"PleaseReselectTheOptionalQuantity": "Please re-select the optional quantity",
|
|
31
|
-
"TheMaximumLengthIsGreaterThanTheMinimumLength": "The maximum length of the control must be greater than the minimum length",
|
|
32
|
-
"TheMinimumLengthIsGreaterThanTheMaximumLength": "The minimum length of the control must be less than the maximum length",
|
|
33
|
-
"PleaseSelectTheCorrectOptionSettings": "Please select the correct option setting",
|
|
34
|
-
"optionIdIsRepeat": "Option ID cannot be repeated",
|
|
35
|
-
"optionIsRequired": "Please enter at least one option",
|
|
36
|
-
"pleaseEnterDataCode": "Please bind the data source",
|
|
37
|
-
"pleaseEnterValueFieldCode": "Please bind the stored value",
|
|
38
|
-
"pleaseEnterSvcCode": "Please bind the service",
|
|
39
|
-
"pleaseBindAtLeastOneDisplayValue": "At least one display value must be bound",
|
|
40
|
-
"pleaseSelectProvince": "Please select a province",
|
|
41
|
-
"pleaseSelectCity": "Please select a city",
|
|
42
|
-
"pleaseSelectDistrict": "Please select a district",
|
|
43
|
-
"limitRowsCannotBeLessThan0": "The minimum number of lines to fill in cannot be less than 0",
|
|
44
|
-
"TheNumberOfRowsCannotBeLessThanMinRows": "The number of rows cannot be less than {min} rows",
|
|
45
|
-
"pleaseEnterColumnWidth": "Please enter the column width",
|
|
46
|
-
"pleaseSetTheLogicalRelationshipOfAllRuleConditions": "Please set the logical relationship of all rule conditions",
|
|
47
|
-
"pleaseCompleteAllRulesAndConditions": "Please complete all rules and conditions",
|
|
48
|
-
"pleaseSelectControl": "please select control",
|
|
49
|
-
"pleaseSelectDashboard": "Please select the dashboard",
|
|
50
|
-
"theViewNameCannotBeEmpty": "View name cannot be empty",
|
|
51
|
-
"pleaseSelectOcrType": "Please select recognition type",
|
|
52
|
-
"pleaseSelectAtLeastOneFieldToFillIn": "Please select at least one field to fill in",
|
|
53
|
-
"pleaseChooseAtLeastOne": "Please select at least one",
|
|
54
|
-
"pleaseEnterButtonContent": "Please enter the button title",
|
|
55
|
-
"pleaseEnterDataCodeInDataSetting": "Please bind the business model in the data settings",
|
|
56
|
-
"pleaseEnterValueFieldCodeInDataSetting": "Please bind storage values in data settings",
|
|
57
|
-
"pleaseEnterSvcCodeInDataSetting": "Please bind the service in the data settings",
|
|
58
|
-
"pleaseBindAtLeastOneDisplayValueInDataSetting": "Please bind at least one display value in the data settings",
|
|
59
|
-
"rootNodeIsRequiredInDataSetting": "Please select the root node in the data settings",
|
|
60
|
-
"pleaseEnterMaxHeight": "Please enter the maximum height",
|
|
61
|
-
"pleaseEnter": "The input content cannot be empty",
|
|
62
|
-
"pleaseEnterWatermark": "Watermark cannot be empty",
|
|
63
|
-
"pleaseEnterFileName": "File name cannot be empty",
|
|
64
|
-
"pleaseUploadAtLeastOnePrintTemplate": "Please upload at least one printing template!!",
|
|
65
|
-
"pleaseAssignBusiness":"Please select a specific business department",
|
|
66
|
-
"pleaseAssignExternal":"Please select a specified external organization",
|
|
67
|
-
"pleaseEnterAliasCode":"Please enter a sub table alias",
|
|
68
|
-
"pleaseSelectDataCode":"Please select the associated table to set the business model",
|
|
69
|
-
"pleaseSelectSvcCode":"Please select the association table to set the binding service",
|
|
70
|
-
"pleaseSelectJoinFieldCode":"Select associated sub table fields",
|
|
71
|
-
"pleaseSelectMainFieldCode":"Please select the associated main table field",
|
|
72
|
-
"pleaseSelectSortFieldCode":"Please select the sort field",
|
|
73
|
-
"batchDeleteButton": "批量删除",
|
|
74
|
-
"batchPrintListButton": "批量打印",
|
|
75
|
-
"batchPrintRecordList": "批量打印记录",
|
|
76
|
-
"button": "按钮",
|
|
77
|
-
"createFormListButton": "创建单据",
|
|
78
|
-
"dashboard": "仪表盘",
|
|
79
|
-
"divider": "分割线",
|
|
80
|
-
"exportListButton": "导出",
|
|
81
|
-
"formSelectButton": "表单操作",
|
|
82
|
-
"importRecordListButton": "导入",
|
|
83
|
-
"invoiceCheckButton": "发票识别",
|
|
84
|
-
"link": "链接",
|
|
85
|
-
"listSelectButton": "列表选择",
|
|
86
|
-
"ListViewSelect": "列表视图",
|
|
87
|
-
"operationButton": "操作按钮",
|
|
88
|
-
"pagination": "分页",
|
|
89
|
-
"submissionRecordListButton": "批量提交记录",
|
|
90
|
-
"text": "说明文字",
|
|
91
|
-
"textOcrButton": "文字识别",
|
|
92
|
-
"title": "标题组件",
|
|
93
|
-
"approvalStatusColumn": "当前审批状态",
|
|
94
|
-
"array": "数组",
|
|
95
|
-
"autoNumber": "自动编号",
|
|
96
|
-
"custom": "自定义",
|
|
97
|
-
"decimal": "数值",
|
|
98
|
-
"department": "部门",
|
|
99
|
-
"employee": "人员",
|
|
100
|
-
"file": "附件",
|
|
101
|
-
"image": "图片",
|
|
102
|
-
"location": "地址",
|
|
103
|
-
"operation": "操作",
|
|
104
|
-
"order": "序号",
|
|
105
|
-
"people": "人员",
|
|
106
|
-
"long": "长文本",
|
|
107
|
-
"timescope": "日期区间",
|
|
108
|
-
"timestamp": "日期",
|
|
109
|
-
"varchar": "短文本",
|
|
110
|
-
"gridLayoutWrap": "换行容器Wrap",
|
|
111
|
-
"gridTable": "表格",
|
|
112
|
-
"subTable": "明细子表",
|
|
113
|
-
"address": "地址",
|
|
114
|
-
"amount": "金额",
|
|
115
|
-
"calc": "计算公式",
|
|
116
|
-
"checkBox": "多选",
|
|
117
|
-
"electronicSignature": "电子签章",
|
|
118
|
-
"input": "单行文本",
|
|
119
|
-
"number": "数字",
|
|
120
|
-
"organizationSelection": "业务组织",
|
|
121
|
-
"radio": "单选",
|
|
122
|
-
"richText": "富文本",
|
|
123
|
-
"score": "评分",
|
|
124
|
-
"searchNumberRange": "数字区间",
|
|
125
|
-
"select": "下拉单选",
|
|
126
|
-
"selectMultiple": "下拉多选",
|
|
127
|
-
"selectRelation": "关联单选",
|
|
128
|
-
"textarea": "多行文本",
|
|
129
|
-
"tree": "树",
|
|
130
|
-
"vueFormItem": "Vue容器",
|
|
131
|
-
"vuePage": "Vue页面",
|
|
132
|
-
"WPS": "在线文档",
|
|
133
|
-
"actionBar": "按钮操作栏",
|
|
134
|
-
"advancedContainer": "高级容器",
|
|
135
|
-
"cardGroup": "分组",
|
|
136
|
-
"col": "栅格列",
|
|
137
|
-
"dataView": "数据容器",
|
|
138
|
-
"grid": "画布",
|
|
139
|
-
"gridLayoutContainer": "换行容器",
|
|
140
|
-
"gridRow": "栅格等分行",
|
|
141
|
-
"listView": "列表容器",
|
|
142
|
-
"page": "自由页面",
|
|
143
|
-
"position": "定位子容器",
|
|
144
|
-
"positioningContainer": "定位容器",
|
|
145
|
-
"row": "栅格布局",
|
|
146
|
-
"subtableColumn": "明细子表单元格",
|
|
147
|
-
"subtableRow": "明细子表行",
|
|
148
|
-
"tab": "标签页",
|
|
149
|
-
"tabPane": "标签单元",
|
|
150
|
-
"toolbox": "工具栏",
|
|
151
|
-
"batchSubmissionListButton": "批量提交",
|
|
152
|
-
"exportRecordListButton": "导出记录",
|
|
153
|
-
"listViewSelect": "列表视图"
|
|
154
|
-
|
|
1
|
+
{
|
|
2
|
+
"isNotNumber": "Please enter a number",
|
|
3
|
+
"isNotString": "Please enter a string",
|
|
4
|
+
"isNotObject": "Please enter an object",
|
|
5
|
+
"isNotArray": "Please enter an array",
|
|
6
|
+
"isNotBoolean": "Please enter a boolean",
|
|
7
|
+
"runtimeRequired": "{caption} Required",
|
|
8
|
+
"pleaseEnterCaption": "Please enter the title",
|
|
9
|
+
"pleaseEnterCaptionTip":"Please enter the bubble prompt",
|
|
10
|
+
"pleaseEnterRowCaption": "Please enter the row title",
|
|
11
|
+
"pleaseEnterPlaceholder": "Please enter the prompt text",
|
|
12
|
+
"pleaseEnterFieldCode": "Please bind data items",
|
|
13
|
+
"pleaseEnterForm": "Please bind the form",
|
|
14
|
+
"pleaseEnterList": "Please bind the list",
|
|
15
|
+
"pleaseEnterProcess": "Please bind the process",
|
|
16
|
+
"pleaseEnterLabel": "Please enter the displayed value",
|
|
17
|
+
"pleaseEnterValue": "Please enter the stored value",
|
|
18
|
+
"bizKeyNotBindFiled": "The document number is not bound to the data item",
|
|
19
|
+
"pleaseSelectOneField":"Please select at least one display field",
|
|
20
|
+
"pleaseEnterNumberRange": "Please enter a value greater than or equal to {min} and less than or equal to {max}",
|
|
21
|
+
"pleaseEnterAValueGreaterThanMin": "Please enter a value greater than or equal to {min}",
|
|
22
|
+
"pleaseEnterAValueLessThanMax": "Please enter a value less than or equal to {max}",
|
|
23
|
+
"numberRangeSetError": "The value range is set incorrectly",
|
|
24
|
+
"stringRangeError": "Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",
|
|
25
|
+
"attachmentMaxSize": "The attachment size must be between 0MB and 1000MB",
|
|
26
|
+
"pleaseEnterTotalScoreSetting": "Please fill in the total score setting",
|
|
27
|
+
"theTotalScoreMustNotBeLessThan1": "The total score cannot be less than 1",
|
|
28
|
+
"scoreDefaultValueRange": "The default value must be between {min} and {max}",
|
|
29
|
+
"attachmentLimitError": "The number of attachment uploads exceeds the limit",
|
|
30
|
+
"PleaseReselectTheOptionalQuantity": "Please re-select the optional quantity",
|
|
31
|
+
"TheMaximumLengthIsGreaterThanTheMinimumLength": "The maximum length of the control must be greater than the minimum length",
|
|
32
|
+
"TheMinimumLengthIsGreaterThanTheMaximumLength": "The minimum length of the control must be less than the maximum length",
|
|
33
|
+
"PleaseSelectTheCorrectOptionSettings": "Please select the correct option setting",
|
|
34
|
+
"optionIdIsRepeat": "Option ID cannot be repeated",
|
|
35
|
+
"optionIsRequired": "Please enter at least one option",
|
|
36
|
+
"pleaseEnterDataCode": "Please bind the data source",
|
|
37
|
+
"pleaseEnterValueFieldCode": "Please bind the stored value",
|
|
38
|
+
"pleaseEnterSvcCode": "Please bind the service",
|
|
39
|
+
"pleaseBindAtLeastOneDisplayValue": "At least one display value must be bound",
|
|
40
|
+
"pleaseSelectProvince": "Please select a province",
|
|
41
|
+
"pleaseSelectCity": "Please select a city",
|
|
42
|
+
"pleaseSelectDistrict": "Please select a district",
|
|
43
|
+
"limitRowsCannotBeLessThan0": "The minimum number of lines to fill in cannot be less than 0",
|
|
44
|
+
"TheNumberOfRowsCannotBeLessThanMinRows": "The number of rows cannot be less than {min} rows",
|
|
45
|
+
"pleaseEnterColumnWidth": "Please enter the column width",
|
|
46
|
+
"pleaseSetTheLogicalRelationshipOfAllRuleConditions": "Please set the logical relationship of all rule conditions",
|
|
47
|
+
"pleaseCompleteAllRulesAndConditions": "Please complete all rules and conditions",
|
|
48
|
+
"pleaseSelectControl": "please select control",
|
|
49
|
+
"pleaseSelectDashboard": "Please select the dashboard",
|
|
50
|
+
"theViewNameCannotBeEmpty": "View name cannot be empty",
|
|
51
|
+
"pleaseSelectOcrType": "Please select recognition type",
|
|
52
|
+
"pleaseSelectAtLeastOneFieldToFillIn": "Please select at least one field to fill in",
|
|
53
|
+
"pleaseChooseAtLeastOne": "Please select at least one",
|
|
54
|
+
"pleaseEnterButtonContent": "Please enter the button title",
|
|
55
|
+
"pleaseEnterDataCodeInDataSetting": "Please bind the business model in the data settings",
|
|
56
|
+
"pleaseEnterValueFieldCodeInDataSetting": "Please bind storage values in data settings",
|
|
57
|
+
"pleaseEnterSvcCodeInDataSetting": "Please bind the service in the data settings",
|
|
58
|
+
"pleaseBindAtLeastOneDisplayValueInDataSetting": "Please bind at least one display value in the data settings",
|
|
59
|
+
"rootNodeIsRequiredInDataSetting": "Please select the root node in the data settings",
|
|
60
|
+
"pleaseEnterMaxHeight": "Please enter the maximum height",
|
|
61
|
+
"pleaseEnter": "The input content cannot be empty",
|
|
62
|
+
"pleaseEnterWatermark": "Watermark cannot be empty",
|
|
63
|
+
"pleaseEnterFileName": "File name cannot be empty",
|
|
64
|
+
"pleaseUploadAtLeastOnePrintTemplate": "Please upload at least one printing template!!",
|
|
65
|
+
"pleaseAssignBusiness":"Please select a specific business department",
|
|
66
|
+
"pleaseAssignExternal":"Please select a specified external organization",
|
|
67
|
+
"pleaseEnterAliasCode":"Please enter a sub table alias",
|
|
68
|
+
"pleaseSelectDataCode":"Please select the associated table to set the business model",
|
|
69
|
+
"pleaseSelectSvcCode":"Please select the association table to set the binding service",
|
|
70
|
+
"pleaseSelectJoinFieldCode":"Select associated sub table fields",
|
|
71
|
+
"pleaseSelectMainFieldCode":"Please select the associated main table field",
|
|
72
|
+
"pleaseSelectSortFieldCode":"Please select the sort field",
|
|
73
|
+
"batchDeleteButton": "批量删除",
|
|
74
|
+
"batchPrintListButton": "批量打印",
|
|
75
|
+
"batchPrintRecordList": "批量打印记录",
|
|
76
|
+
"button": "按钮",
|
|
77
|
+
"createFormListButton": "创建单据",
|
|
78
|
+
"dashboard": "仪表盘",
|
|
79
|
+
"divider": "分割线",
|
|
80
|
+
"exportListButton": "导出",
|
|
81
|
+
"formSelectButton": "表单操作",
|
|
82
|
+
"importRecordListButton": "导入",
|
|
83
|
+
"invoiceCheckButton": "发票识别",
|
|
84
|
+
"link": "链接",
|
|
85
|
+
"listSelectButton": "列表选择",
|
|
86
|
+
"ListViewSelect": "列表视图",
|
|
87
|
+
"operationButton": "操作按钮",
|
|
88
|
+
"pagination": "分页",
|
|
89
|
+
"submissionRecordListButton": "批量提交记录",
|
|
90
|
+
"text": "说明文字",
|
|
91
|
+
"textOcrButton": "文字识别",
|
|
92
|
+
"title": "标题组件",
|
|
93
|
+
"approvalStatusColumn": "当前审批状态",
|
|
94
|
+
"array": "数组",
|
|
95
|
+
"autoNumber": "自动编号",
|
|
96
|
+
"custom": "自定义",
|
|
97
|
+
"decimal": "数值",
|
|
98
|
+
"department": "部门",
|
|
99
|
+
"employee": "人员",
|
|
100
|
+
"file": "附件",
|
|
101
|
+
"image": "图片",
|
|
102
|
+
"location": "地址",
|
|
103
|
+
"operation": "操作",
|
|
104
|
+
"order": "序号",
|
|
105
|
+
"people": "人员",
|
|
106
|
+
"long": "长文本",
|
|
107
|
+
"timescope": "日期区间",
|
|
108
|
+
"timestamp": "日期",
|
|
109
|
+
"varchar": "短文本",
|
|
110
|
+
"gridLayoutWrap": "换行容器Wrap",
|
|
111
|
+
"gridTable": "表格",
|
|
112
|
+
"subTable": "明细子表",
|
|
113
|
+
"address": "地址",
|
|
114
|
+
"amount": "金额",
|
|
115
|
+
"calc": "计算公式",
|
|
116
|
+
"checkBox": "多选",
|
|
117
|
+
"electronicSignature": "电子签章",
|
|
118
|
+
"input": "单行文本",
|
|
119
|
+
"number": "数字",
|
|
120
|
+
"organizationSelection": "业务组织",
|
|
121
|
+
"radio": "单选",
|
|
122
|
+
"richText": "富文本",
|
|
123
|
+
"score": "评分",
|
|
124
|
+
"searchNumberRange": "数字区间",
|
|
125
|
+
"select": "下拉单选",
|
|
126
|
+
"selectMultiple": "下拉多选",
|
|
127
|
+
"selectRelation": "关联单选",
|
|
128
|
+
"textarea": "多行文本",
|
|
129
|
+
"tree": "树",
|
|
130
|
+
"vueFormItem": "Vue容器",
|
|
131
|
+
"vuePage": "Vue页面",
|
|
132
|
+
"WPS": "在线文档",
|
|
133
|
+
"actionBar": "按钮操作栏",
|
|
134
|
+
"advancedContainer": "高级容器",
|
|
135
|
+
"cardGroup": "分组",
|
|
136
|
+
"col": "栅格列",
|
|
137
|
+
"dataView": "数据容器",
|
|
138
|
+
"grid": "画布",
|
|
139
|
+
"gridLayoutContainer": "换行容器",
|
|
140
|
+
"gridRow": "栅格等分行",
|
|
141
|
+
"listView": "列表容器",
|
|
142
|
+
"page": "自由页面",
|
|
143
|
+
"position": "定位子容器",
|
|
144
|
+
"positioningContainer": "定位容器",
|
|
145
|
+
"row": "栅格布局",
|
|
146
|
+
"subtableColumn": "明细子表单元格",
|
|
147
|
+
"subtableRow": "明细子表行",
|
|
148
|
+
"tab": "标签页",
|
|
149
|
+
"tabPane": "标签单元",
|
|
150
|
+
"toolbox": "工具栏",
|
|
151
|
+
"batchSubmissionListButton": "批量提交",
|
|
152
|
+
"exportRecordListButton": "导出记录",
|
|
153
|
+
"listViewSelect": "列表视图",
|
|
154
|
+
"referenceList":"引用列表",
|
|
155
|
+
"optionOne":"选项一",
|
|
156
|
+
"optionTwo":"选项二",
|
|
157
|
+
"optionThird":"选项三"
|
|
158
|
+
}
|