@byteluck-fe/model-driven-shared 2.7.0-alpha.2 → 2.7.0-alpha.23

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.
@@ -1,8 +1,35 @@
1
- function _classCallCheck(instance, Constructor) {
1
+ function _class_call_check(instance, Constructor) {
2
2
  if (!(instance instanceof Constructor)) {
3
3
  throw new TypeError("Cannot call a class as a function");
4
4
  }
5
5
  }
6
+ function _defineProperties(target, props) {
7
+ for(var i = 0; i < props.length; i++){
8
+ var descriptor = props[i];
9
+ descriptor.enumerable = descriptor.enumerable || false;
10
+ descriptor.configurable = true;
11
+ if ("value" in descriptor) descriptor.writable = true;
12
+ Object.defineProperty(target, descriptor.key, descriptor);
13
+ }
14
+ }
15
+ function _create_class(Constructor, protoProps, staticProps) {
16
+ if (protoProps) _defineProperties(Constructor.prototype, protoProps);
17
+ if (staticProps) _defineProperties(Constructor, staticProps);
18
+ return Constructor;
19
+ }
20
+ function _define_property(obj, key, value) {
21
+ if (key in obj) {
22
+ Object.defineProperty(obj, key, {
23
+ value: value,
24
+ enumerable: true,
25
+ configurable: true,
26
+ writable: true
27
+ });
28
+ } else {
29
+ obj[key] = value;
30
+ }
31
+ return obj;
32
+ }
6
33
  // type InnerEventCode = 'click' | 'click-finish' | 'change'
7
34
  var eventMap = [
8
35
  {
@@ -124,17 +151,21 @@ var eventMap = [
124
151
  export var EventLogic = /*#__PURE__*/ function() {
125
152
  "use strict";
126
153
  function EventLogic() {
127
- _classCallCheck(this, EventLogic);
154
+ _class_call_check(this, EventLogic);
128
155
  }
129
- var _proto = EventLogic.prototype;
130
- _proto.getEventsFromKeys = function getEventsFromKeys(keys) {
131
- var eventKeys = typeof keys === "string" ? [
132
- keys
133
- ] : keys;
134
- return EventLogic.events.filter(function(item) {
135
- return eventKeys.includes(item.key);
136
- });
137
- };
156
+ _create_class(EventLogic, [
157
+ {
158
+ key: "getEventsFromKeys",
159
+ value: function getEventsFromKeys(keys) {
160
+ var eventKeys = typeof keys === "string" ? [
161
+ keys
162
+ ] : keys;
163
+ return EventLogic.events.filter(function(item) {
164
+ return eventKeys.includes(item.key);
165
+ });
166
+ }
167
+ }
168
+ ]);
138
169
  return EventLogic;
139
170
  }();
140
- EventLogic.events = eventMap;
171
+ _define_property(EventLogic, "events", eventMap);
@@ -1,30 +1,68 @@
1
- function _classCallCheck(instance, Constructor) {
1
+ function _class_call_check(instance, Constructor) {
2
2
  if (!(instance instanceof Constructor)) {
3
3
  throw new TypeError("Cannot call a class as a function");
4
4
  }
5
5
  }
6
+ function _defineProperties(target, props) {
7
+ for(var i = 0; i < props.length; i++){
8
+ var descriptor = props[i];
9
+ descriptor.enumerable = descriptor.enumerable || false;
10
+ descriptor.configurable = true;
11
+ if ("value" in descriptor) descriptor.writable = true;
12
+ Object.defineProperty(target, descriptor.key, descriptor);
13
+ }
14
+ }
15
+ function _create_class(Constructor, protoProps, staticProps) {
16
+ if (protoProps) _defineProperties(Constructor.prototype, protoProps);
17
+ if (staticProps) _defineProperties(Constructor, staticProps);
18
+ return Constructor;
19
+ }
20
+ function _define_property(obj, key, value) {
21
+ if (key in obj) {
22
+ Object.defineProperty(obj, key, {
23
+ value: value,
24
+ enumerable: true,
25
+ configurable: true,
26
+ writable: true
27
+ });
28
+ } else {
29
+ obj[key] = value;
30
+ }
31
+ return obj;
32
+ }
6
33
  import OkI18n from "ok-i18n";
7
34
  import messages from "./locales";
8
35
  import { DEFAULT_LOCALE } from "./constant";
9
36
  export var RulesMessage = /*#__PURE__*/ function() {
10
37
  "use strict";
11
38
  function RulesMessage() {
12
- _classCallCheck(this, RulesMessage);
39
+ _class_call_check(this, RulesMessage);
13
40
  }
14
- RulesMessage.getMessage = function getMessage(messageKey) {
15
- var variable = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
16
- return this.$i18n.$t(messageKey, "", variable);
17
- };
18
- RulesMessage.resetI18n = function resetI18n() {
19
- var locale = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : DEFAULT_LOCALE;
20
- return new OkI18n({
21
- locale: locale,
22
- messages: messages
23
- });
24
- };
25
- RulesMessage.setLocale = function setLocale(locale) {
26
- return this.$i18n.setLocale(locale);
27
- };
41
+ _create_class(RulesMessage, null, [
42
+ {
43
+ key: "getMessage",
44
+ value: function getMessage(messageKey) {
45
+ var variable = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
46
+ return this.$i18n.$t(messageKey, "", variable);
47
+ }
48
+ },
49
+ {
50
+ key: "resetI18n",
51
+ value: function resetI18n() {
52
+ var locale = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : DEFAULT_LOCALE;
53
+ return new OkI18n({
54
+ locale: locale,
55
+ messages: messages
56
+ });
57
+ }
58
+ },
59
+ {
60
+ key: "setLocale",
61
+ value: function setLocale(locale) {
62
+ return this.$i18n.setLocale(locale);
63
+ }
64
+ }
65
+ ]);
28
66
  return RulesMessage;
29
67
  }();
30
- RulesMessage.$i18n = RulesMessage.resetI18n();
68
+ _define_property(RulesMessage, "$i18n", RulesMessage.resetI18n());
package/dist/esm/calc.js CHANGED
@@ -1,8 +1,21 @@
1
- function _classCallCheck(instance, Constructor) {
1
+ function _class_call_check(instance, Constructor) {
2
2
  if (!(instance instanceof Constructor)) {
3
3
  throw new TypeError("Cannot call a class as a function");
4
4
  }
5
5
  }
6
+ function _define_property(obj, key, value) {
7
+ if (key in obj) {
8
+ Object.defineProperty(obj, key, {
9
+ value: value,
10
+ enumerable: true,
11
+ configurable: true,
12
+ writable: true
13
+ });
14
+ } else {
15
+ obj[key] = value;
16
+ }
17
+ return obj;
18
+ }
6
19
  export var CALC_TOKEN_TYPE;
7
20
  (function(CALC_TOKEN_TYPE) {
8
21
  CALC_TOKEN_TYPE[/**
@@ -44,17 +57,36 @@ export var CALC_AGGREGATE_TYPE;
44
57
  })(CALC_AGGREGATE_TYPE || (CALC_AGGREGATE_TYPE = {}));
45
58
  export var CalcScriptEchoItem = function CalcScriptEchoItem(props) {
46
59
  "use strict";
47
- _classCallCheck(this, CalcScriptEchoItem);
60
+ _class_call_check(this, CalcScriptEchoItem);
61
+ var _props, _props1, _props2, _props3, _props4, _props5;
62
+ /**
63
+ * 变量名称或者公式符号或者数值
64
+ * */ _define_property(this, "name", void 0);
65
+ /**
66
+ * 如果是变量的话,id为控件id
67
+ * */ _define_property(this, "id", void 0);
68
+ /**
69
+ * 当前值的类型
70
+ * */ _define_property(this, "type", void 0);
71
+ /**
72
+ * 绑定的是明细子表变量时,必须有subTableId
73
+ * */ _define_property(this, "subTableId", void 0);
74
+ /**
75
+ * 绑定的是明细子表内变量时,必须有subTableName
76
+ * */ _define_property(this, "subTableName", void 0);
77
+ /**
78
+ * 绑定的是其它明细子表内变量时,必须有aggregateType
79
+ * */ _define_property(this, "aggregateType", void 0);
48
80
  var _props_name;
49
- this.name = (_props_name = props === null || props === void 0 ? void 0 : props.name) !== null && _props_name !== void 0 ? _props_name : "";
81
+ this.name = (_props_name = (_props = props) === null || _props === void 0 ? void 0 : _props.name) !== null && _props_name !== void 0 ? _props_name : "";
50
82
  var _props_id;
51
- this.id = (_props_id = props === null || props === void 0 ? void 0 : props.id) !== null && _props_id !== void 0 ? _props_id : "";
83
+ this.id = (_props_id = (_props1 = props) === null || _props1 === void 0 ? void 0 : _props1.id) !== null && _props_id !== void 0 ? _props_id : "";
52
84
  var _props_type;
53
- this.type = (_props_type = props === null || props === void 0 ? void 0 : props.type) !== null && _props_type !== void 0 ? _props_type : CALC_TOKEN_TYPE.Number;
85
+ this.type = (_props_type = (_props2 = props) === null || _props2 === void 0 ? void 0 : _props2.type) !== null && _props_type !== void 0 ? _props_type : CALC_TOKEN_TYPE.Number;
54
86
  var _props_subTableId;
55
- this.subTableId = (_props_subTableId = props === null || props === void 0 ? void 0 : props.subTableId) !== null && _props_subTableId !== void 0 ? _props_subTableId : undefined;
87
+ this.subTableId = (_props_subTableId = (_props3 = props) === null || _props3 === void 0 ? void 0 : _props3.subTableId) !== null && _props_subTableId !== void 0 ? _props_subTableId : undefined;
56
88
  var _props_subTableId1;
57
- this.subTableName = (_props_subTableId1 = props === null || props === void 0 ? void 0 : props.subTableId) !== null && _props_subTableId1 !== void 0 ? _props_subTableId1 : undefined;
89
+ this.subTableName = (_props_subTableId1 = (_props4 = props) === null || _props4 === void 0 ? void 0 : _props4.subTableId) !== null && _props_subTableId1 !== void 0 ? _props_subTableId1 : undefined;
58
90
  var _props_aggregateType;
59
- this.aggregateType = (_props_aggregateType = props === null || props === void 0 ? void 0 : props.aggregateType) !== null && _props_aggregateType !== void 0 ? _props_aggregateType : undefined;
91
+ this.aggregateType = (_props_aggregateType = (_props5 = props) === null || _props5 === void 0 ? void 0 : _props5.aggregateType) !== null && _props_aggregateType !== void 0 ? _props_aggregateType : undefined;
60
92
  };
@@ -1,12 +1,32 @@
1
1
  /**
2
2
  * @author qiyu
3
3
  * @description 属性只是简单从接口拿过来,还未仔细考虑
4
- */ function _classCallCheck(instance, Constructor) {
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");
7
7
  }
8
8
  }
9
+ function _define_property(obj, key, value) {
10
+ if (key in obj) {
11
+ Object.defineProperty(obj, key, {
12
+ value: value,
13
+ enumerable: true,
14
+ configurable: true,
15
+ writable: true
16
+ });
17
+ } else {
18
+ obj[key] = value;
19
+ }
20
+ return obj;
21
+ }
9
22
  export var DepartmentEntity = function DepartmentEntity() {
10
23
  "use strict";
11
- _classCallCheck(this, DepartmentEntity);
24
+ _class_call_check(this, DepartmentEntity);
25
+ _define_property(this, "department_en_name", void 0);
26
+ /**
27
+ * 部门编号
28
+ */ _define_property(this, "department_id", void 0);
29
+ /**
30
+ * 部门名称
31
+ */ _define_property(this, "department_name", void 0);
12
32
  };
@@ -1,12 +1,86 @@
1
1
  /**
2
2
  * @author qiyu
3
3
  * @description 属性只是简单从接口拿过来,还未仔细考虑
4
- */ function _classCallCheck(instance, Constructor) {
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");
7
7
  }
8
8
  }
9
+ function _define_property(obj, key, value) {
10
+ if (key in obj) {
11
+ Object.defineProperty(obj, key, {
12
+ value: value,
13
+ enumerable: true,
14
+ configurable: true,
15
+ writable: true
16
+ });
17
+ } else {
18
+ obj[key] = value;
19
+ }
20
+ return obj;
21
+ }
9
22
  export var UserEntity = function UserEntity() {
10
23
  "use strict";
11
- _classCallCheck(this, UserEntity);
24
+ _class_call_check(this, UserEntity);
25
+ _define_property(this, "avatar_big", void 0);
26
+ _define_property(this, "avatar_small", void 0);
27
+ /**
28
+ * 员工头像地址
29
+ */ _define_property(this, "avatar_url", void 0);
30
+ /**
31
+ * 归属部门英文名称
32
+ */ _define_property(this, "belong_dept_en_name", void 0);
33
+ _define_property(this, "belong_dept_id_list", void 0);
34
+ /**
35
+ * 归属部门ID
36
+ */ _define_property(this, "belong_dept_ids", void 0);
37
+ /**
38
+ * 归属部门名称
39
+ */ _define_property(this, "belong_dept_name", void 0);
40
+ /**
41
+ * 当前语言版本
42
+ */ _define_property(this, "cookie_language_enum", void 0);
43
+ /**
44
+ * 部门id
45
+ */ _define_property(this, "department_id", void 0);
46
+ /**
47
+ * 部门名称
48
+ */ _define_property(this, "department_name", void 0);
49
+ /**
50
+ * 员工邮箱
51
+ */ _define_property(this, "email", void 0);
52
+ /**
53
+ * 工号
54
+ */ _define_property(this, "employee_card", void 0);
55
+ /**
56
+ * 英文名
57
+ */ _define_property(this, "employee_en_name", void 0);
58
+ /**
59
+ * 员工编号
60
+ */ _define_property(this, "employee_id", void 0);
61
+ /**
62
+ * 员工姓名
63
+ */ _define_property(this, "employee_name", void 0);
64
+ _define_property(this, "external_user", void 0);
65
+ /**
66
+ * 性别
67
+ */ _define_property(this, "gender", void 0);
68
+ _define_property(this, "is_show_chat_group", void 0);
69
+ /**
70
+ * 负责部门英文名称
71
+ */ _define_property(this, "manage_dept_en_name", void 0);
72
+ /**
73
+ * 负责部门ID
74
+ */ _define_property(this, "manage_dept_ids", void 0);
75
+ /**
76
+ * 负责部门名称
77
+ */ _define_property(this, "manage_dept_name", void 0);
78
+ _define_property(this, "msg_relation_type", void 0);
79
+ /**
80
+ * 职级
81
+ */ _define_property(this, "sequence", void 0);
82
+ /**
83
+ * 固定电话
84
+ */ _define_property(this, "telephone", void 0);
85
+ _define_property(this, "tenant_id", void 0);
12
86
  };
package/dist/esm/enum.js CHANGED
@@ -1,4 +1,4 @@
1
- function _defineProperty(obj, key, value) {
1
+ function _define_property(obj, key, value) {
2
2
  if (key in obj) {
3
3
  Object.defineProperty(obj, key, {
4
4
  value: value,
@@ -123,6 +123,9 @@ export var CONTROL_TYPE;
123
123
  CONTROL_TYPE["TREE"] = "tree";
124
124
  CONTROL_TYPE["EMPLOYEE2"] = "employee2";
125
125
  CONTROL_TYPE["DEPARTMENT2"] = "department2";
126
+ CONTROL_TYPE[// wrap控件
127
+ // grid_wrap 必须结合 grid-layout-container
128
+ "GRID_LAYOUT_WRAP"] = "grid-layout-wrap";
126
129
  })(CONTROL_TYPE || (CONTROL_TYPE = {}));
127
130
  export var FieldTypes;
128
131
  (function(FieldTypes) {
@@ -200,7 +203,7 @@ export var FieldTypes;
200
203
  * */ "ENCRYPTED_FIELD"] = "encrypted_field";
201
204
  })(FieldTypes || (FieldTypes = {}));
202
205
  var _obj;
203
- export var FieldTypeToColumnType = (_obj = {}, _defineProperty(_obj, FieldTypes.ARRAY, CONTROL_TYPE.ARRAY_COLUMN), _defineProperty(_obj, FieldTypes.AUTO_NUMBER, CONTROL_TYPE.AUTO_NUMBER_COLUMN), _defineProperty(_obj, FieldTypes.DECIMAL, CONTROL_TYPE.DECIMAL_COLUMN), _defineProperty(_obj, FieldTypes.DEPARTMENTS, CONTROL_TYPE.DEPARTMENT_COLUMN), _defineProperty(_obj, FieldTypes.FILE, CONTROL_TYPE.FILE_COLUMN), _defineProperty(_obj, FieldTypes.IMAGE, CONTROL_TYPE.IMAGE_COLUMN), _defineProperty(_obj, FieldTypes.ADDRESS, CONTROL_TYPE.LOCATION_COLUMN), _defineProperty(_obj, FieldTypes.EMPLOYEES, CONTROL_TYPE.EMPLOYEE_COLUMN), _defineProperty(_obj, FieldTypes.TEXT, CONTROL_TYPE.TEXT_COLUMN), _defineProperty(_obj, FieldTypes.TIMESCOPE, CONTROL_TYPE.TIMESCOPE_COLUMN), _defineProperty(_obj, FieldTypes.TIMESTAMP, CONTROL_TYPE.TIMESTAMP_COLUMN), _defineProperty(_obj, FieldTypes.VARCHAR, CONTROL_TYPE.VARCHAR_COLUMN), _defineProperty(_obj, FieldTypes.RELATION, CONTROL_TYPE.VARCHAR_COLUMN), _obj);
206
+ export var FieldTypeToColumnType = (_obj = {}, _define_property(_obj, FieldTypes.ARRAY, CONTROL_TYPE.ARRAY_COLUMN), _define_property(_obj, FieldTypes.AUTO_NUMBER, CONTROL_TYPE.AUTO_NUMBER_COLUMN), _define_property(_obj, FieldTypes.DECIMAL, CONTROL_TYPE.DECIMAL_COLUMN), _define_property(_obj, FieldTypes.DEPARTMENTS, CONTROL_TYPE.DEPARTMENT_COLUMN), _define_property(_obj, FieldTypes.FILE, CONTROL_TYPE.FILE_COLUMN), _define_property(_obj, FieldTypes.IMAGE, CONTROL_TYPE.IMAGE_COLUMN), _define_property(_obj, FieldTypes.ADDRESS, CONTROL_TYPE.LOCATION_COLUMN), _define_property(_obj, FieldTypes.EMPLOYEES, CONTROL_TYPE.EMPLOYEE_COLUMN), _define_property(_obj, FieldTypes.TEXT, CONTROL_TYPE.TEXT_COLUMN), _define_property(_obj, FieldTypes.TIMESCOPE, CONTROL_TYPE.TIMESCOPE_COLUMN), _define_property(_obj, FieldTypes.TIMESTAMP, CONTROL_TYPE.TIMESTAMP_COLUMN), _define_property(_obj, FieldTypes.VARCHAR, CONTROL_TYPE.VARCHAR_COLUMN), _define_property(_obj, FieldTypes.RELATION, CONTROL_TYPE.VARCHAR_COLUMN), _obj);
204
207
  export var DateType;
205
208
  (function(DateType) {
206
209
  DateType[/**
@@ -46,22 +46,27 @@
46
46
  "pleaseSetTheLogicalRelationshipOfAllRuleConditions": "Please set the logical relationship of all rule conditions",
47
47
  "pleaseCompleteAllRulesAndConditions": "Please complete all rules and conditions",
48
48
  "pleaseSelectControl": "please select control",
49
- "pleaseSelectDashboard": "请选择仪表盘",
50
- "theViewNameCannotBeEmpty": "视图名称不能为空",
51
- "pleaseSelectOcrType": "请选择识别类型",
52
- "pleaseSelectAtLeastOneFieldToFillIn": "请至少选择一个字段进行填充",
53
- "pleaseChooseAtLeastOne": "请至少选择一个",
54
- "pleaseEnterButtonContent": "请输入按钮标题",
55
- "pleaseEnterDataCodeInDataSetting": "请在数据设置中绑定业务模型",
56
- "pleaseEnterValueFieldCodeInDataSetting": "请在数据设置中绑定存储值",
57
- "pleaseEnterSvcCodeInDataSetting": "请在数据设置中绑定服务",
58
- "pleaseBindAtLeastOneDisplayValueInDataSetting": "请在数据设置中至少绑定一个显示值",
59
- "rootNodeIsRequiredInDataSetting": "请在数据设置中选择根节点",
60
- "pleaseEnterMaxHeight": "请输入最大高度",
61
- "pleaseEnter": "输入内容不能为空",
62
- "pleaseEnterWatermark": "水印不能为空",
63
- "pleaseEnterFileName": "文件名称不能为空",
64
- "pleaseUploadAtLeastOnePrintTemplate": "请至少上传一个打印模版!",
65
- "pleaseAssignBusiness":"请选择指定业务部门",
66
- "pleaseAssignExternal":"请选择指定外部组织"
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"
67
72
  }
@@ -46,22 +46,27 @@
46
46
  "pleaseSetTheLogicalRelationshipOfAllRuleConditions": "全ての条件のロジックを設定して下さい",
47
47
  "pleaseCompleteAllRulesAndConditions": "全ての条件を完成させて下さい",
48
48
  "pleaseSelectControl": "please select control",
49
- "pleaseSelectDashboard": "请选择仪表盘",
50
- "theViewNameCannotBeEmpty": "视图名称不能为空",
51
- "pleaseSelectOcrType": "请选择识别类型",
52
- "pleaseSelectAtLeastOneFieldToFillIn": "请至少选择一个字段进行填充",
53
- "pleaseChooseAtLeastOne": "请至少选择一个",
54
- "pleaseEnterButtonContent": "请输入按钮标题",
55
- "pleaseEnterDataCodeInDataSetting": "请在数据设置中绑定业务模型",
56
- "pleaseEnterValueFieldCodeInDataSetting": "请在数据设置中绑定存储值",
57
- "pleaseEnterSvcCodeInDataSetting": "请在数据设置中绑定服务",
58
- "pleaseBindAtLeastOneDisplayValueInDataSetting": "请在数据设置中至少绑定一个显示值",
59
- "rootNodeIsRequiredInDataSetting": "请在数据设置中选择根节点",
60
- "pleaseEnterMaxHeight": "请输入最大高度",
61
- "pleaseEnter": "输入内容不能为空",
62
- "pleaseEnterWatermark": "水印不能为空",
63
- "pleaseEnterFileName": "文件名称不能为空",
64
- "pleaseUploadAtLeastOnePrintTemplate": "请至少上传一个打印模版!",
65
- "pleaseAssignBusiness":"请选择指定业务部门",
66
- "pleaseAssignExternal":"请选择指定外部组织"
49
+ "pleaseSelectDashboard": "ダッシュボードを選択してください",
50
+ "theViewNameCannotBeEmpty": "ビュー名を空白にすることはできません",
51
+ "pleaseSelectOcrType": "識別タイプを選択してください",
52
+ "pleaseSelectAtLeastOneFieldToFillIn": "少なくとも1つのフィールドを選択して入力してください",
53
+ "pleaseChooseAtLeastOne": "少なくとも1つを選択してください",
54
+ "pleaseEnterButtonContent": "ボタンのタイトルを入力してください",
55
+ "pleaseEnterDataCodeInDataSetting": "データ設定でビジネスモデルをバインドしてください",
56
+ "pleaseEnterValueFieldCodeInDataSetting": "データ設定に格納値をバインドしてください",
57
+ "pleaseEnterSvcCodeInDataSetting": "データ設定でサービスをバインドしてください",
58
+ "pleaseBindAtLeastOneDisplayValueInDataSetting": "データ設定に少なくとも1つの表示値をバインドしてください",
59
+ "rootNodeIsRequiredInDataSetting": "データ設定でルートノードを選択してください",
60
+ "pleaseEnterMaxHeight": "最大高さを入力してください",
61
+ "pleaseEnter": "入力内容を空にすることはできません",
62
+ "pleaseEnterWatermark": "透かしを空にすることはできません",
63
+ "pleaseEnterFileName": "ファイル名を空白にすることはできません",
64
+ "pleaseUploadAtLeastOnePrintTemplate": "印刷テンプレートを少なくとも1つアップロードしてください!!",
65
+ "pleaseAssignBusiness":"指定されたビジネス部門を選択してください",
66
+ "pleaseAssignExternal":"外部組織の指定を選択してください",
67
+ "pleaseEnterAliasCode":"サブテーブル別名を入力してください",
68
+ "pleaseSelectDataCode":"関連表を選択してビジネスモデルを設定してください",
69
+ "pleaseSelectSvcCode":"関連テーブル設定バインドサービスを選択してください",
70
+ "pleaseSelectJoinFieldCode":"関連サブテーブルフィールドの選択",
71
+ "pleaseSelectMainFieldCode":"関連マスターテーブルフィールドを選択してください"
67
72
  }
@@ -66,5 +66,10 @@
66
66
  "pleaseEnterFileName": "文件名称不能为空",
67
67
  "pleaseUploadAtLeastOnePrintTemplate": "请至少上传一个打印模版!",
68
68
  "pleaseAssignBusiness":"请选择指定业务部门",
69
- "pleaseAssignExternal":"请选择指定外部组织"
69
+ "pleaseAssignExternal":"请选择指定外部组织",
70
+ "pleaseEnterAliasCode":"请输入子表别名",
71
+ "pleaseSelectDataCode":"请选择关联表设置业务模型",
72
+ "pleaseSelectSvcCode":"请选择关联表设置绑定服务",
73
+ "pleaseSelectJoinFieldCode":"请选择关联子表字段",
74
+ "pleaseSelectMainFieldCode":"请选择关联主表字段"
70
75
  }