@byteluck-fe/model-driven-shared 2.22.2-beta.8 → 2.22.3-beta.11

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/dist/esm/enum.js CHANGED
@@ -1,5 +1,4 @@
1
- export var CONTROL_BASE_TYPE;
2
- (function(CONTROL_BASE_TYPE) {
1
+ export var CONTROL_BASE_TYPE = /*#__PURE__*/ function(CONTROL_BASE_TYPE) {
3
2
  CONTROL_BASE_TYPE["BASE"] = "base";
4
3
  CONTROL_BASE_TYPE["FORM"] = "form";
5
4
  CONTROL_BASE_TYPE["LAYOUT"] = "layout";
@@ -7,30 +6,30 @@ export var CONTROL_BASE_TYPE;
7
6
  CONTROL_BASE_TYPE["COLUMN"] = "column";
8
7
  CONTROL_BASE_TYPE["LIST"] = "list";
9
8
  CONTROL_BASE_TYPE["SEARCH"] = "search";
10
- })(CONTROL_BASE_TYPE || (CONTROL_BASE_TYPE = {}));
11
- export var FORM_TYPE;
12
- (function(FORM_TYPE) {
13
- /**
14
- * 表单
9
+ return CONTROL_BASE_TYPE;
10
+ }({});
11
+ export var FORM_TYPE = /*#__PURE__*/ function(FORM_TYPE) {
12
+ /**
13
+ * 表单
15
14
  * */ FORM_TYPE[FORM_TYPE["FORM"] = 0] = "FORM";
16
- /**
17
- * 列表
15
+ /**
16
+ * 列表
18
17
  * */ FORM_TYPE[FORM_TYPE["LIST"] = 1] = "LIST";
19
- /**
20
- * 报表
18
+ /**
19
+ * 报表
21
20
  * */ FORM_TYPE[FORM_TYPE["REPORT"] = 2] = "REPORT";
22
- /**
23
- * 仪表盘
21
+ /**
22
+ * 仪表盘
24
23
  * */ FORM_TYPE[FORM_TYPE["DASHBOARD"] = 3] = "DASHBOARD";
25
- /**
26
- * Vue页面
24
+ /**
25
+ * Vue页面
27
26
  * */ FORM_TYPE[FORM_TYPE["VUE"] = 4] = "VUE";
28
- /**
29
- * 自由页面
27
+ /**
28
+ * 自由页面
30
29
  * */ FORM_TYPE[FORM_TYPE["FREE_PAGE"] = 5] = "FREE_PAGE";
31
- })(FORM_TYPE || (FORM_TYPE = {}));
32
- export var CONTROL_TYPE;
33
- (function(CONTROL_TYPE) {
30
+ return FORM_TYPE;
31
+ }({});
32
+ export var CONTROL_TYPE = /*#__PURE__*/ function(CONTROL_TYPE) {
34
33
  // 基础控件
35
34
  CONTROL_TYPE["TITLE"] = "title";
36
35
  CONTROL_TYPE["LINK"] = "link";
@@ -137,92 +136,94 @@ export var CONTROL_TYPE;
137
136
  // grid_wrap 必须结合 grid-layout-container
138
137
  CONTROL_TYPE["GRID_LAYOUT_WRAP"] = "grid-layout-wrap";
139
138
  CONTROL_TYPE["VUE_PAGE"] = "vue-page";
140
- })(CONTROL_TYPE || (CONTROL_TYPE = {}));
141
- export var OPT_TYPES;
142
- (function(OPT_TYPES) {
143
- /**
144
- * 保存
139
+ CONTROL_TYPE["REFERENCE_LIST"] = "reference-list";
140
+ return CONTROL_TYPE;
141
+ }({});
142
+ export var OPT_TYPES = /*#__PURE__*/ function(OPT_TYPES) {
143
+ /**
144
+ * 保存
145
145
  * */ OPT_TYPES["SAVE"] = "save";
146
- /**
147
- * 草稿
146
+ /**
147
+ * 草稿
148
148
  * */ OPT_TYPES["DRAFT"] = "draft";
149
- /**
150
- * 撤回
149
+ /**
150
+ * 撤回
151
151
  * */ OPT_TYPES["UNSUBMIT"] = "unsubmit";
152
- /**
153
- * 审核
152
+ /**
153
+ * 审核
154
154
  * */ OPT_TYPES["AUDIT"] = "audit";
155
- /**
156
- * 反审核
155
+ /**
156
+ * 反审核
157
157
  * */ OPT_TYPES["UNAUDIT"] = "unaudit";
158
- /**
159
- * 取消
158
+ /**
159
+ * 取消
160
160
  * */ OPT_TYPES["CANCEL"] = "cancel";
161
- /**
162
- * 提交
161
+ /**
162
+ * 提交
163
163
  * */ OPT_TYPES["FORM_SUBMIT"] = "form_submit";
164
- })(OPT_TYPES || (OPT_TYPES = {}));
165
- export var FieldTypes;
166
- (function(FieldTypes) {
167
- /**
168
- * 短文本,string
164
+ return OPT_TYPES;
165
+ }({});
166
+ // 控件存储类型
167
+ export var FieldTypes = /*#__PURE__*/ function(FieldTypes) {
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,38 +237,57 @@ 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
- })(FieldTypes || (FieldTypes = {}));
250
- export var DateType;
251
- (function(DateType) {
252
- /**
253
- *
250
+ return FieldTypes;
251
+ }({});
252
+ // 以下函数挪到pro-lowcode-designer项目中,它是数据库字段类型与控件存储类型的映射关系
253
+ // export const FieldTypeToColumnType = {
254
+ // [FieldTypes.ARRAY]: CONTROL_TYPE.ARRAY_COLUMN,
255
+ // [FieldTypes.AUTO_NUMBER]: CONTROL_TYPE.AUTO_NUMBER_COLUMN,
256
+ // [FieldTypes.DECIMAL]: CONTROL_TYPE.DECIMAL_COLUMN,
257
+ // [FieldTypes.REAL_DECIMAL]: CONTROL_TYPE.DECIMAL_COLUMN,
258
+ // [FieldTypes.DEPARTMENTS]: CONTROL_TYPE.DEPARTMENT_COLUMN,
259
+ // [FieldTypes.FILE]: CONTROL_TYPE.FILE_COLUMN,
260
+ // [FieldTypes.IMAGE]: CONTROL_TYPE.IMAGE_COLUMN,
261
+ // [FieldTypes.ADDRESS]: CONTROL_TYPE.LOCATION_COLUMN,
262
+ // [FieldTypes.EMPLOYEES]: CONTROL_TYPE.EMPLOYEE_COLUMN,
263
+ // [FieldTypes.TEXT]: CONTROL_TYPE.TEXT_COLUMN,
264
+ // [FieldTypes.TIMESCOPE]: CONTROL_TYPE.TIMESCOPE_COLUMN,
265
+ // [FieldTypes.TIMESTAMP]: CONTROL_TYPE.TIMESTAMP_COLUMN,
266
+ // [FieldTypes.DATETIME]: CONTROL_TYPE.TIMESTAMP_COLUMN,
267
+ // [FieldTypes.VARCHAR]: CONTROL_TYPE.VARCHAR_COLUMN,
268
+ // [FieldTypes.RELATION]: CONTROL_TYPE.VARCHAR_COLUMN,
269
+ // }
270
+ export var DateType = /*#__PURE__*/ function(DateType) {
271
+ /**
272
+ * 年
254
273
  * */ DateType["YEAR"] = "year";
255
- /**
256
- * 年月
274
+ /**
275
+ * 年月
257
276
  * */ DateType["MONTH"] = "month";
258
- /**
259
- * 年月日
277
+ /**
278
+ * 年月日
260
279
  * */ DateType["DATE"] = "date";
261
- /**
262
- * 年月日时
280
+ /**
281
+ * 年月日时
263
282
  * */ DateType["DATEHOUR"] = "datehour";
264
- /**
265
- * 年月日时分
283
+ /**
284
+ * 年月日时分
266
285
  * */ DateType["DATEMIN"] = "datemin";
267
- /**
268
- * 年月日时分秒
286
+ /**
287
+ * 年月日时分秒
269
288
  * */ DateType["DATETIME"] = "datetime";
270
- })(DateType || (DateType = {}));
289
+ return DateType;
290
+ }({});
271
291
  export var DESIGNER_SLOT = {
272
292
  DEFAULT: 'default'
273
293
  };
@@ -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
+ }