@byteluck-fe/model-driven-shared 6.1.0-1-beta.4 → 6.2.0-1-beta.9
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/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 +4 -0
- package/dist/esm/locales/en-US.json +158 -158
- package/dist/esm/locales/ja-JP.json +158 -158
- package/dist/esm/locales/zh-CN.json +241 -241
- 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 +341 -341
- 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 +275 -271
- package/dist/types/genNonDuplicateId.d.ts +1 -1
- package/dist/types/index.d.ts +13 -13
- package/dist/types/locales/index.d.ts +560 -560
- 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/README.md
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
# Shared
|
|
2
|
-
基础工具函数
|
|
3
|
-
|
|
4
|
-
```
|
|
5
|
-
│ calc.ts // 计算公式
|
|
6
|
-
│ constant.ts // 常量
|
|
7
|
-
│ enum.ts // 枚举常量
|
|
8
|
-
│ EventLogic.ts // 事件管理
|
|
9
|
-
│ genNonDuplicateId.ts // 生成唯一id
|
|
10
|
-
│ index.ts
|
|
11
|
-
│ log.ts // 日志
|
|
12
|
-
│ loopControls.ts // 遍历控件
|
|
13
|
-
│ RulesMessage.ts // 校验规则的message+国际化管理
|
|
14
|
-
│ updateValueFromKeys.ts // 通过a.b.c的格式修改控件的props
|
|
15
|
-
│ utils.ts // 工具函数
|
|
16
|
-
│ watcher.ts // 发布订阅实现
|
|
17
|
-
│
|
|
18
|
-
├─entity
|
|
19
|
-
│ Department.ts
|
|
20
|
-
│ index.ts
|
|
21
|
-
│ User.ts
|
|
22
|
-
│
|
|
23
|
-
└─locales // 国际化
|
|
24
|
-
en-US.json
|
|
25
|
-
index.ts
|
|
26
|
-
ja-JP.json
|
|
27
|
-
zh-CN.json
|
|
28
|
-
|
|
29
|
-
```
|
|
1
|
+
# Shared
|
|
2
|
+
基础工具函数
|
|
3
|
+
|
|
4
|
+
```
|
|
5
|
+
│ calc.ts // 计算公式
|
|
6
|
+
│ constant.ts // 常量
|
|
7
|
+
│ enum.ts // 枚举常量
|
|
8
|
+
│ EventLogic.ts // 事件管理
|
|
9
|
+
│ genNonDuplicateId.ts // 生成唯一id
|
|
10
|
+
│ index.ts
|
|
11
|
+
│ log.ts // 日志
|
|
12
|
+
│ loopControls.ts // 遍历控件
|
|
13
|
+
│ RulesMessage.ts // 校验规则的message+国际化管理
|
|
14
|
+
│ updateValueFromKeys.ts // 通过a.b.c的格式修改控件的props
|
|
15
|
+
│ utils.ts // 工具函数
|
|
16
|
+
│ watcher.ts // 发布订阅实现
|
|
17
|
+
│
|
|
18
|
+
├─entity
|
|
19
|
+
│ Department.ts
|
|
20
|
+
│ index.ts
|
|
21
|
+
│ User.ts
|
|
22
|
+
│
|
|
23
|
+
└─locales // 国际化
|
|
24
|
+
en-US.json
|
|
25
|
+
index.ts
|
|
26
|
+
ja-JP.json
|
|
27
|
+
zh-CN.json
|
|
28
|
+
|
|
29
|
+
```
|
package/dist/esm/calc.js
CHANGED
|
@@ -17,64 +17,64 @@ function _define_property(obj, key, value) {
|
|
|
17
17
|
return obj;
|
|
18
18
|
}
|
|
19
19
|
export var CALC_TOKEN_TYPE = /*#__PURE__*/ function(CALC_TOKEN_TYPE) {
|
|
20
|
-
/**
|
|
21
|
-
* 数值
|
|
20
|
+
/**
|
|
21
|
+
* 数值
|
|
22
22
|
* */ CALC_TOKEN_TYPE["Number"] = "Number";
|
|
23
|
-
/**
|
|
24
|
-
* 公式符号
|
|
23
|
+
/**
|
|
24
|
+
* 公式符号
|
|
25
25
|
* */ CALC_TOKEN_TYPE["Operator"] = "Operator";
|
|
26
|
-
/**
|
|
27
|
-
* 变量存在于主页面中
|
|
26
|
+
/**
|
|
27
|
+
* 变量存在于主页面中
|
|
28
28
|
* */ CALC_TOKEN_TYPE["VariableInMainTable"] = "VariableInMainTable";
|
|
29
|
-
/**
|
|
30
|
-
* 变量存在当前明细子表内
|
|
31
|
-
* 说明计算公式在明细子表的某一行,且依赖项也在同一行内
|
|
29
|
+
/**
|
|
30
|
+
* 变量存在当前明细子表内
|
|
31
|
+
* 说明计算公式在明细子表的某一行,且依赖项也在同一行内
|
|
32
32
|
* */ CALC_TOKEN_TYPE["VariableInCurrentSubTable"] = "VariableInCurrentSubTable";
|
|
33
|
-
/**
|
|
34
|
-
* 变量存在其它明细子表内
|
|
35
|
-
* 说明计算公式依赖于其它明细子表,计算公式可能在明细子表内,也可能不在
|
|
33
|
+
/**
|
|
34
|
+
* 变量存在其它明细子表内
|
|
35
|
+
* 说明计算公式依赖于其它明细子表,计算公式可能在明细子表内,也可能不在
|
|
36
36
|
* */ CALC_TOKEN_TYPE["VariableInOtherSubTable"] = "VariableInOtherSubTable";
|
|
37
|
-
/**
|
|
38
|
-
* 未定义的变量
|
|
39
|
-
* 当绑定的变量在schema中不存在时,会成为该项,在设计态会报错
|
|
37
|
+
/**
|
|
38
|
+
* 未定义的变量
|
|
39
|
+
* 当绑定的变量在schema中不存在时,会成为该项,在设计态会报错
|
|
40
40
|
* */ CALC_TOKEN_TYPE["UndefinedVariable"] = "UndefinedVariable";
|
|
41
41
|
return CALC_TOKEN_TYPE;
|
|
42
42
|
}({});
|
|
43
43
|
export var CALC_AGGREGATE_TYPE = /*#__PURE__*/ function(CALC_AGGREGATE_TYPE) {
|
|
44
|
-
/**
|
|
45
|
-
* 总和
|
|
44
|
+
/**
|
|
45
|
+
* 总和
|
|
46
46
|
* */ CALC_AGGREGATE_TYPE["SUM"] = "SUM";
|
|
47
|
-
/**
|
|
48
|
-
* 平均值
|
|
47
|
+
/**
|
|
48
|
+
* 平均值
|
|
49
49
|
* */ CALC_AGGREGATE_TYPE["AVG"] = "AVG";
|
|
50
|
-
/**
|
|
51
|
-
* 最大值
|
|
50
|
+
/**
|
|
51
|
+
* 最大值
|
|
52
52
|
* */ CALC_AGGREGATE_TYPE["MAX"] = "MAX";
|
|
53
|
-
/**
|
|
54
|
-
* 最小值
|
|
53
|
+
/**
|
|
54
|
+
* 最小值
|
|
55
55
|
* */ CALC_AGGREGATE_TYPE["MIN"] = "MIN";
|
|
56
56
|
return CALC_AGGREGATE_TYPE;
|
|
57
57
|
}({});
|
|
58
58
|
export var CalcScriptEchoItem = function CalcScriptEchoItem(props) {
|
|
59
59
|
"use strict";
|
|
60
60
|
_class_call_check(this, CalcScriptEchoItem);
|
|
61
|
-
/**
|
|
62
|
-
* 变量名称或者公式符号或者数值
|
|
61
|
+
/**
|
|
62
|
+
* 变量名称或者公式符号或者数值
|
|
63
63
|
* */ _define_property(this, "name", void 0);
|
|
64
|
-
/**
|
|
65
|
-
* 如果是变量的话,id为控件id
|
|
64
|
+
/**
|
|
65
|
+
* 如果是变量的话,id为控件id
|
|
66
66
|
* */ _define_property(this, "id", void 0);
|
|
67
|
-
/**
|
|
68
|
-
* 当前值的类型
|
|
67
|
+
/**
|
|
68
|
+
* 当前值的类型
|
|
69
69
|
* */ _define_property(this, "type", void 0);
|
|
70
|
-
/**
|
|
71
|
-
* 绑定的是明细子表变量时,必须有subTableId
|
|
70
|
+
/**
|
|
71
|
+
* 绑定的是明细子表变量时,必须有subTableId
|
|
72
72
|
* */ _define_property(this, "subTableId", void 0);
|
|
73
|
-
/**
|
|
74
|
-
* 绑定的是明细子表内变量时,必须有subTableName
|
|
73
|
+
/**
|
|
74
|
+
* 绑定的是明细子表内变量时,必须有subTableName
|
|
75
75
|
* */ _define_property(this, "subTableName", void 0);
|
|
76
|
-
/**
|
|
77
|
-
* 绑定的是其它明细子表内变量时,必须有aggregateType
|
|
76
|
+
/**
|
|
77
|
+
* 绑定的是其它明细子表内变量时,必须有aggregateType
|
|
78
78
|
* */ _define_property(this, "aggregateType", void 0);
|
|
79
79
|
var _props_name;
|
|
80
80
|
this.name = (_props_name = props === null || props === void 0 ? void 0 : props.name) !== null && _props_name !== void 0 ? _props_name : '';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @author qiyu
|
|
3
|
-
* @description 属性只是简单从接口拿过来,还未仔细考虑
|
|
1
|
+
/**
|
|
2
|
+
* @author qiyu
|
|
3
|
+
* @description 属性只是简单从接口拿过来,还未仔细考虑
|
|
4
4
|
*/ function _class_call_check(instance, Constructor) {
|
|
5
5
|
if (!(instance instanceof Constructor)) {
|
|
6
6
|
throw new TypeError("Cannot call a class as a function");
|
|
@@ -23,10 +23,10 @@ export var DepartmentEntity = function DepartmentEntity() {
|
|
|
23
23
|
"use strict";
|
|
24
24
|
_class_call_check(this, DepartmentEntity);
|
|
25
25
|
_define_property(this, 'department_en_name', void 0);
|
|
26
|
-
/**
|
|
27
|
-
* 部门编号
|
|
26
|
+
/**
|
|
27
|
+
* 部门编号
|
|
28
28
|
*/ _define_property(this, 'department_id', void 0);
|
|
29
|
-
/**
|
|
30
|
-
* 部门名称
|
|
29
|
+
/**
|
|
30
|
+
* 部门名称
|
|
31
31
|
*/ _define_property(this, 'department_name', void 0);
|
|
32
32
|
};
|
package/dist/esm/entity/User.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @author qiyu
|
|
3
|
-
* @description 属性只是简单从接口拿过来,还未仔细考虑
|
|
1
|
+
/**
|
|
2
|
+
* @author qiyu
|
|
3
|
+
* @description 属性只是简单从接口拿过来,还未仔细考虑
|
|
4
4
|
*/ function _class_call_check(instance, Constructor) {
|
|
5
5
|
if (!(instance instanceof Constructor)) {
|
|
6
6
|
throw new TypeError("Cannot call a class as a function");
|
|
@@ -24,63 +24,63 @@ export var UserEntity = function UserEntity() {
|
|
|
24
24
|
_class_call_check(this, UserEntity);
|
|
25
25
|
_define_property(this, 'avatar_big', void 0);
|
|
26
26
|
_define_property(this, 'avatar_small', void 0);
|
|
27
|
-
/**
|
|
28
|
-
* 员工头像地址
|
|
27
|
+
/**
|
|
28
|
+
* 员工头像地址
|
|
29
29
|
*/ _define_property(this, 'avatar_url', void 0);
|
|
30
|
-
/**
|
|
31
|
-
* 归属部门英文名称
|
|
30
|
+
/**
|
|
31
|
+
* 归属部门英文名称
|
|
32
32
|
*/ _define_property(this, 'belong_dept_en_name', void 0);
|
|
33
33
|
_define_property(this, 'belong_dept_id_list', void 0);
|
|
34
|
-
/**
|
|
35
|
-
* 归属部门ID
|
|
34
|
+
/**
|
|
35
|
+
* 归属部门ID
|
|
36
36
|
*/ _define_property(this, 'belong_dept_ids', void 0);
|
|
37
|
-
/**
|
|
38
|
-
* 归属部门名称
|
|
37
|
+
/**
|
|
38
|
+
* 归属部门名称
|
|
39
39
|
*/ _define_property(this, 'belong_dept_name', void 0);
|
|
40
|
-
/**
|
|
41
|
-
* 当前语言版本
|
|
40
|
+
/**
|
|
41
|
+
* 当前语言版本
|
|
42
42
|
*/ _define_property(this, 'cookie_language_enum', void 0);
|
|
43
|
-
/**
|
|
44
|
-
* 部门id
|
|
43
|
+
/**
|
|
44
|
+
* 部门id
|
|
45
45
|
*/ _define_property(this, 'department_id', void 0);
|
|
46
|
-
/**
|
|
47
|
-
* 部门名称
|
|
46
|
+
/**
|
|
47
|
+
* 部门名称
|
|
48
48
|
*/ _define_property(this, 'department_name', void 0);
|
|
49
|
-
/**
|
|
50
|
-
* 员工邮箱
|
|
49
|
+
/**
|
|
50
|
+
* 员工邮箱
|
|
51
51
|
*/ _define_property(this, 'email', void 0);
|
|
52
|
-
/**
|
|
53
|
-
* 工号
|
|
52
|
+
/**
|
|
53
|
+
* 工号
|
|
54
54
|
*/ _define_property(this, 'employee_card', void 0);
|
|
55
|
-
/**
|
|
56
|
-
* 英文名
|
|
55
|
+
/**
|
|
56
|
+
* 英文名
|
|
57
57
|
*/ _define_property(this, 'employee_en_name', void 0);
|
|
58
|
-
/**
|
|
59
|
-
* 员工编号
|
|
58
|
+
/**
|
|
59
|
+
* 员工编号
|
|
60
60
|
*/ _define_property(this, 'employee_id', void 0);
|
|
61
|
-
/**
|
|
62
|
-
* 员工姓名
|
|
61
|
+
/**
|
|
62
|
+
* 员工姓名
|
|
63
63
|
*/ _define_property(this, 'employee_name', void 0);
|
|
64
64
|
_define_property(this, 'external_user', void 0);
|
|
65
|
-
/**
|
|
66
|
-
* 性别
|
|
65
|
+
/**
|
|
66
|
+
* 性别
|
|
67
67
|
*/ _define_property(this, 'gender', void 0);
|
|
68
68
|
_define_property(this, 'is_show_chat_group', void 0);
|
|
69
|
-
/**
|
|
70
|
-
* 负责部门英文名称
|
|
69
|
+
/**
|
|
70
|
+
* 负责部门英文名称
|
|
71
71
|
*/ _define_property(this, 'manage_dept_en_name', void 0);
|
|
72
|
-
/**
|
|
73
|
-
* 负责部门ID
|
|
72
|
+
/**
|
|
73
|
+
* 负责部门ID
|
|
74
74
|
*/ _define_property(this, 'manage_dept_ids', void 0);
|
|
75
|
-
/**
|
|
76
|
-
* 负责部门名称
|
|
75
|
+
/**
|
|
76
|
+
* 负责部门名称
|
|
77
77
|
*/ _define_property(this, 'manage_dept_name', void 0);
|
|
78
78
|
_define_property(this, 'msg_relation_type', void 0);
|
|
79
|
-
/**
|
|
80
|
-
* 职级
|
|
79
|
+
/**
|
|
80
|
+
* 职级
|
|
81
81
|
*/ _define_property(this, 'sequence', void 0);
|
|
82
|
-
/**
|
|
83
|
-
* 固定电话
|
|
82
|
+
/**
|
|
83
|
+
* 固定电话
|
|
84
84
|
*/ _define_property(this, 'telephone', void 0);
|
|
85
85
|
_define_property(this, 'tenant_id', void 0);
|
|
86
86
|
};
|
package/dist/esm/enum.js
CHANGED
|
@@ -121,6 +121,10 @@ export var CONTROL_TYPE = /*#__PURE__*/ function(CONTROL_TYPE) {
|
|
|
121
121
|
CONTROL_TYPE["DATA_VIEW"] = "data-view";
|
|
122
122
|
CONTROL_TYPE["LIST_VIEW"] = "list-view";
|
|
123
123
|
CONTROL_TYPE["ACTION_BAR"] = "action-bar";
|
|
124
|
+
CONTROL_TYPE["TABLE_LAYOUT"] = "table-layout";
|
|
125
|
+
CONTROL_TYPE["TABLE_LAYOUT_ROW"] = "table-layout-row";
|
|
126
|
+
CONTROL_TYPE["TABLE_LAYOUT_COL"] = "table-layout-col";
|
|
127
|
+
CONTROL_TYPE["TABLE_LAYOUT_WRAPPER"] = "table-layout-wrapper";
|
|
124
128
|
// list控件
|
|
125
129
|
CONTROL_TYPE["SUBTABLE"] = "subtable";
|
|
126
130
|
CONTROL_TYPE["GRID_TABLE"] = "grid-table";
|
|
@@ -1,158 +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
|
-
"referenceList":"引用列表",
|
|
155
|
-
"optionOne":"选项一",
|
|
156
|
-
"optionTwo":"选项二",
|
|
157
|
-
"optionThird":"选项三"
|
|
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
|
+
"referenceList":"引用列表",
|
|
155
|
+
"optionOne":"选项一",
|
|
156
|
+
"optionTwo":"选项二",
|
|
157
|
+
"optionThird":"选项三"
|
|
158
|
+
}
|