@byteluck-fe/model-driven-shared 2.11.0-alpha.1 → 2.20.0-beta.1
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 +74 -74
- package/dist/esm/locales/en-US.json +73 -73
- package/dist/esm/locales/ja-JP.json +73 -73
- package/dist/esm/locales/zh-CN.json +76 -76
- package/dist/esm/updateValueFromKeys.js +6 -6
- package/dist/esm/utils.js +11 -11
- package/dist/types/EventLogic.d.ts +305 -305
- package/dist/types/RulesMessage.d.ts +14 -14
- 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 +267 -267
- package/dist/types/genNonDuplicateId.d.ts +1 -1
- package/dist/types/index.d.ts +13 -13
- package/dist/types/locales/index.d.ts +225 -225
- 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 +44 -44
- package/dist/types/watcher.d.ts +14 -14
- package/package.json +2 -2
|
@@ -1,73 +1,73 @@
|
|
|
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 attachments uploaded must be between {min} and {max}",
|
|
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
|
-
}
|
|
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 attachments uploaded must be between {min} and {max}",
|
|
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
|
+
}
|
|
@@ -1,73 +1,73 @@
|
|
|
1
|
-
{
|
|
2
|
-
"isNotNumber": "数字を入力して下さい",
|
|
3
|
-
"isNotString": "文字列を入力して下さい",
|
|
4
|
-
"isNotObject": "対象物を入力して下さい",
|
|
5
|
-
"isNotArray": "数字組を入力して下さい",
|
|
6
|
-
"isNotBoolean": "ブールを入力して下さい",
|
|
7
|
-
"runtimeRequired": "{caption}必須",
|
|
8
|
-
"pleaseEnterCaption": "タイトルを入力して下さい",
|
|
9
|
-
"pleaseEnterCaptionTip":"気泡のヒントを入力してください",
|
|
10
|
-
"pleaseEnterRowCaption":"行ヘッダーを入力してください",
|
|
11
|
-
"pleaseEnterPlaceholder": "ヒントを入力して下さい",
|
|
12
|
-
"pleaseEnterFieldCode": "データをリンクして下さい",
|
|
13
|
-
"pleaseEnterForm": "シートをリンクして下さい",
|
|
14
|
-
"pleaseEnterList": "リストをリンクして下さい",
|
|
15
|
-
"pleaseEnterProcess": "フローをリンクして下さい",
|
|
16
|
-
"pleaseEnterLabel": "表示値を入力して下さい",
|
|
17
|
-
"pleaseEnterValue": "保存値を入力して下さい",
|
|
18
|
-
"bizKeyNotBindFiled": "シート番号がデータにリンクされていません。",
|
|
19
|
-
"pleaseSelectOneField":"少なくとも1つの表示フィールドを選択してください",
|
|
20
|
-
"pleaseEnterNumberRange": "{min}以上{max}以下の値を入力してください",
|
|
21
|
-
"pleaseEnterAValueGreaterThanMin": "{min}以上の値を入力してください",
|
|
22
|
-
"pleaseEnterAValueLessThanMax": "{max}未満の値を入力してください",
|
|
23
|
-
"numberRangeSetError": "数値範囲設定エラー",
|
|
24
|
-
"stringRangeError": "長さが{min}以上{max}以下の値を入力してください",
|
|
25
|
-
"attachmentMaxSize": "添付ファイルは0MBから1000MBの間でお願いします。",
|
|
26
|
-
"pleaseEnterTotalScoreSetting": "トータル点数を設定して下さい",
|
|
27
|
-
"theTotalScoreMustNotBeLessThan1": "トータル点数は1以上でお願いします。",
|
|
28
|
-
"scoreDefaultValueRange": "基本設定値は{min}から{max}の間でお願いします。",
|
|
29
|
-
"attachmentLimitError": "アップデート件数は{min}から{max}の間でお願いします",
|
|
30
|
-
"PleaseReselectTheOptionalQuantity": "数量を再選択して下さい",
|
|
31
|
-
"TheMaximumLengthIsGreaterThanTheMinimumLength": "コンポーネントの最大値は最小値より大きく設定して下さい",
|
|
32
|
-
"TheMinimumLengthIsGreaterThanTheMaximumLength": "コンポーネントの最小値は最大値より大きく設定して下さい",
|
|
33
|
-
"PleaseSelectTheCorrectOptionSettings": "正確な設定値を選択して下さい",
|
|
34
|
-
"optionIdIsRepeat": "IDは重複しないようにお願いします",
|
|
35
|
-
"optionIsRequired": "最低1点を選ぶようにお願いします",
|
|
36
|
-
"pleaseEnterDataCode": "元データにリンクして下さい",
|
|
37
|
-
"pleaseEnterValueFieldCode": "保存値にリンクして下さい",
|
|
38
|
-
"pleaseEnterSvcCode": "サービスにリンクして下さい",
|
|
39
|
-
"pleaseBindAtLeastOneDisplayValue": "表示値をリンクし直しして下さい",
|
|
40
|
-
"pleaseSelectProvince": "省を選択して下さい",
|
|
41
|
-
"pleaseSelectCity": "市を選択して下さい",
|
|
42
|
-
"pleaseSelectDistrict": "区を選択して下さい",
|
|
43
|
-
"limitRowsCannotBeLessThan0": "最小値は0より大きく設定して下さい",
|
|
44
|
-
"TheNumberOfRowsCannotBeLessThanMinRows": "最低行数は{min}行でお願いします",
|
|
45
|
-
"pleaseEnterColumnWidth": "列幅を入力して下さい",
|
|
46
|
-
"pleaseSetTheLogicalRelationshipOfAllRuleConditions": "全ての条件のロジックを設定して下さい",
|
|
47
|
-
"pleaseCompleteAllRulesAndConditions": "全ての条件を完成させて下さい",
|
|
48
|
-
"pleaseSelectControl": "please select control",
|
|
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":"関連マスターテーブルフィールドを選択してください",
|
|
72
|
-
"pleaseSelectSortFieldCode": "ソートフィールドを選択してください"
|
|
73
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"isNotNumber": "数字を入力して下さい",
|
|
3
|
+
"isNotString": "文字列を入力して下さい",
|
|
4
|
+
"isNotObject": "対象物を入力して下さい",
|
|
5
|
+
"isNotArray": "数字組を入力して下さい",
|
|
6
|
+
"isNotBoolean": "ブールを入力して下さい",
|
|
7
|
+
"runtimeRequired": "{caption}必須",
|
|
8
|
+
"pleaseEnterCaption": "タイトルを入力して下さい",
|
|
9
|
+
"pleaseEnterCaptionTip":"気泡のヒントを入力してください",
|
|
10
|
+
"pleaseEnterRowCaption":"行ヘッダーを入力してください",
|
|
11
|
+
"pleaseEnterPlaceholder": "ヒントを入力して下さい",
|
|
12
|
+
"pleaseEnterFieldCode": "データをリンクして下さい",
|
|
13
|
+
"pleaseEnterForm": "シートをリンクして下さい",
|
|
14
|
+
"pleaseEnterList": "リストをリンクして下さい",
|
|
15
|
+
"pleaseEnterProcess": "フローをリンクして下さい",
|
|
16
|
+
"pleaseEnterLabel": "表示値を入力して下さい",
|
|
17
|
+
"pleaseEnterValue": "保存値を入力して下さい",
|
|
18
|
+
"bizKeyNotBindFiled": "シート番号がデータにリンクされていません。",
|
|
19
|
+
"pleaseSelectOneField":"少なくとも1つの表示フィールドを選択してください",
|
|
20
|
+
"pleaseEnterNumberRange": "{min}以上{max}以下の値を入力してください",
|
|
21
|
+
"pleaseEnterAValueGreaterThanMin": "{min}以上の値を入力してください",
|
|
22
|
+
"pleaseEnterAValueLessThanMax": "{max}未満の値を入力してください",
|
|
23
|
+
"numberRangeSetError": "数値範囲設定エラー",
|
|
24
|
+
"stringRangeError": "長さが{min}以上{max}以下の値を入力してください",
|
|
25
|
+
"attachmentMaxSize": "添付ファイルは0MBから1000MBの間でお願いします。",
|
|
26
|
+
"pleaseEnterTotalScoreSetting": "トータル点数を設定して下さい",
|
|
27
|
+
"theTotalScoreMustNotBeLessThan1": "トータル点数は1以上でお願いします。",
|
|
28
|
+
"scoreDefaultValueRange": "基本設定値は{min}から{max}の間でお願いします。",
|
|
29
|
+
"attachmentLimitError": "アップデート件数は{min}から{max}の間でお願いします",
|
|
30
|
+
"PleaseReselectTheOptionalQuantity": "数量を再選択して下さい",
|
|
31
|
+
"TheMaximumLengthIsGreaterThanTheMinimumLength": "コンポーネントの最大値は最小値より大きく設定して下さい",
|
|
32
|
+
"TheMinimumLengthIsGreaterThanTheMaximumLength": "コンポーネントの最小値は最大値より大きく設定して下さい",
|
|
33
|
+
"PleaseSelectTheCorrectOptionSettings": "正確な設定値を選択して下さい",
|
|
34
|
+
"optionIdIsRepeat": "IDは重複しないようにお願いします",
|
|
35
|
+
"optionIsRequired": "最低1点を選ぶようにお願いします",
|
|
36
|
+
"pleaseEnterDataCode": "元データにリンクして下さい",
|
|
37
|
+
"pleaseEnterValueFieldCode": "保存値にリンクして下さい",
|
|
38
|
+
"pleaseEnterSvcCode": "サービスにリンクして下さい",
|
|
39
|
+
"pleaseBindAtLeastOneDisplayValue": "表示値をリンクし直しして下さい",
|
|
40
|
+
"pleaseSelectProvince": "省を選択して下さい",
|
|
41
|
+
"pleaseSelectCity": "市を選択して下さい",
|
|
42
|
+
"pleaseSelectDistrict": "区を選択して下さい",
|
|
43
|
+
"limitRowsCannotBeLessThan0": "最小値は0より大きく設定して下さい",
|
|
44
|
+
"TheNumberOfRowsCannotBeLessThanMinRows": "最低行数は{min}行でお願いします",
|
|
45
|
+
"pleaseEnterColumnWidth": "列幅を入力して下さい",
|
|
46
|
+
"pleaseSetTheLogicalRelationshipOfAllRuleConditions": "全ての条件のロジックを設定して下さい",
|
|
47
|
+
"pleaseCompleteAllRulesAndConditions": "全ての条件を完成させて下さい",
|
|
48
|
+
"pleaseSelectControl": "please select control",
|
|
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":"関連マスターテーブルフィールドを選択してください",
|
|
72
|
+
"pleaseSelectSortFieldCode": "ソートフィールドを選択してください"
|
|
73
|
+
}
|
|
@@ -1,76 +1,76 @@
|
|
|
1
|
-
{
|
|
2
|
-
"isNotNumber": "请输入一个数字",
|
|
3
|
-
"isNotString": "请输入一个字符串",
|
|
4
|
-
"isNotObject": "请输入一个对象",
|
|
5
|
-
"isNotArray": "请输入一个数组",
|
|
6
|
-
"isNotBoolean": "请输入一个布尔",
|
|
7
|
-
"runtimeRequired": "{caption}必填",
|
|
8
|
-
"pleaseEnterCaption": "请输入标题",
|
|
9
|
-
"pleaseEnterCaptionTip": "请输入气泡提示语",
|
|
10
|
-
"pleaseEnterRowCaption": "请输入行标题",
|
|
11
|
-
"pleaseEnterPlaceholder": "请输入提示文字",
|
|
12
|
-
"pleaseEnterFieldCode": "请绑定数据项",
|
|
13
|
-
"pleaseEnterForm": "请绑定表单",
|
|
14
|
-
"pleaseEnterList": "请绑定列表",
|
|
15
|
-
"pleaseEnterProcess": "请绑定流程",
|
|
16
|
-
"pleaseEnterLabel": "请输入显示值",
|
|
17
|
-
"pleaseEnterValue": "请输入存储值",
|
|
18
|
-
"bizKeyNotBindFiled": "单据编号未绑定数据项",
|
|
19
|
-
"pleaseSelectOneField":"请至少选择一个显示字段!",
|
|
20
|
-
"pleaseEnterNumberRange": "请输入大于等于{min}且小于等于{max}的数值",
|
|
21
|
-
"pleaseEnterAValueGreaterThanMin": "请输入大于等于{min}的数值",
|
|
22
|
-
"pleaseEnterAValueLessThanMax": "请输入小于等于{max}的数值",
|
|
23
|
-
"numberRangeSetError": "数值范围设置有误",
|
|
24
|
-
"stringRangeError": "请输入长度大于等于{min}且小于等于{max}的值",
|
|
25
|
-
"attachmentMaxSize": "附件大小必须在0MB至1000MB之间",
|
|
26
|
-
"pleaseEnterTotalScoreSetting": "请填写总分设置",
|
|
27
|
-
"theTotalScoreMustNotBeLessThan1": "总分不能小于1",
|
|
28
|
-
"scoreDefaultValueRange": "默认值必须在{min}和{max}之间",
|
|
29
|
-
"attachmentLimitError": "附件上传的数量必须在{min}和{max}之间",
|
|
30
|
-
"PleaseReselectTheOptionalQuantity": "请重新选择可选数量",
|
|
31
|
-
"TheMaximumLengthIsGreaterThanTheMinimumLength": "该控件最大长度需大于最小长度",
|
|
32
|
-
"TheMinimumLengthIsGreaterThanTheMaximumLength": "该控件最小长度需小于最大长度",
|
|
33
|
-
"PleaseSelectTheCorrectOptionSettings": "请选择正确的选项设置",
|
|
34
|
-
"optionIdIsRepeat": "选项ID不能重复",
|
|
35
|
-
"optionIsRequired": "请输入至少一条选项",
|
|
36
|
-
"pleaseEnterDataCode": "请绑定业务模型",
|
|
37
|
-
"pleaseEnterValueFieldCode": "请绑定存储值",
|
|
38
|
-
"pleaseEnterSvcCode": "请绑定服务",
|
|
39
|
-
"pleaseBindAtLeastOneDisplayValue": "至少绑定一个显示值",
|
|
40
|
-
"pleaseSelectProvince": "请选择省",
|
|
41
|
-
"pleaseSelectCity": "请选择市",
|
|
42
|
-
"pleaseSelectDistrict": "请选择区",
|
|
43
|
-
"limitRowsCannotBeLessThan0": "最少填写行数不能小于0",
|
|
44
|
-
"TheNumberOfRowsCannotBeLessThanMinRows": "行数量不能小于{min}行",
|
|
45
|
-
"pleaseEnterColumnWidth": "请输入列宽",
|
|
46
|
-
"pleaseSetTheLogicalRelationshipOfAllRuleConditions": "请设置所有规则条件的逻辑关系",
|
|
47
|
-
"pleaseCompleteAllRulesAndConditions": "请将所有规则条件填写完整",
|
|
48
|
-
"pleaseSelectControl": "请选择控件",
|
|
49
|
-
"pleaseSelectAtLeastOneColumn": "请至少选择一个显示字段",
|
|
50
|
-
"pleaseSelectFillBackMode": "请选择回填设置",
|
|
51
|
-
"pleaseSelectDashboard": "请选择仪表盘",
|
|
52
|
-
"rootNodeIsRequired": "请选择根节点",
|
|
53
|
-
"theViewNameCannotBeEmpty": "视图名称不能为空",
|
|
54
|
-
"pleaseSelectOcrType": "请选择识别类型",
|
|
55
|
-
"pleaseSelectAtLeastOneFieldToFillIn": "请至少选择一个字段进行填充",
|
|
56
|
-
"pleaseChooseAtLeastOne": "请至少选择一个",
|
|
57
|
-
"pleaseEnterButtonContent": "请输入按钮标题",
|
|
58
|
-
"pleaseEnterDataCodeInDataSetting": "请在数据设置中绑定业务模型",
|
|
59
|
-
"pleaseEnterValueFieldCodeInDataSetting": "请在数据设置中绑定存储值",
|
|
60
|
-
"pleaseEnterSvcCodeInDataSetting": "请在数据设置中绑定服务",
|
|
61
|
-
"pleaseBindAtLeastOneDisplayValueInDataSetting": "请在数据设置中至少绑定一个显示值",
|
|
62
|
-
"rootNodeIsRequiredInDataSetting": "请在数据设置中选择根节点",
|
|
63
|
-
"pleaseEnterMaxHeight": "请输入最大高度",
|
|
64
|
-
"pleaseEnter": "输入内容不能为空",
|
|
65
|
-
"pleaseEnterWatermark": "水印不能为空",
|
|
66
|
-
"pleaseEnterFileName": "文件名称不能为空",
|
|
67
|
-
"pleaseUploadAtLeastOnePrintTemplate": "请至少上传一个打印模版!",
|
|
68
|
-
"pleaseAssignBusiness":"请选择指定业务部门",
|
|
69
|
-
"pleaseAssignExternal":"请选择指定外部组织",
|
|
70
|
-
"pleaseEnterAliasCode":"请输入子表别名",
|
|
71
|
-
"pleaseSelectDataCode":"请选择关联表设置业务模型",
|
|
72
|
-
"pleaseSelectSvcCode":"请选择关联表设置绑定服务",
|
|
73
|
-
"pleaseSelectJoinFieldCode":"请选择关联子表字段",
|
|
74
|
-
"pleaseSelectMainFieldCode":"请选择关联主表字段",
|
|
75
|
-
"pleaseSelectSortFieldCode": "请选择排序字段"
|
|
76
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"isNotNumber": "请输入一个数字",
|
|
3
|
+
"isNotString": "请输入一个字符串",
|
|
4
|
+
"isNotObject": "请输入一个对象",
|
|
5
|
+
"isNotArray": "请输入一个数组",
|
|
6
|
+
"isNotBoolean": "请输入一个布尔",
|
|
7
|
+
"runtimeRequired": "{caption}必填",
|
|
8
|
+
"pleaseEnterCaption": "请输入标题",
|
|
9
|
+
"pleaseEnterCaptionTip": "请输入气泡提示语",
|
|
10
|
+
"pleaseEnterRowCaption": "请输入行标题",
|
|
11
|
+
"pleaseEnterPlaceholder": "请输入提示文字",
|
|
12
|
+
"pleaseEnterFieldCode": "请绑定数据项",
|
|
13
|
+
"pleaseEnterForm": "请绑定表单",
|
|
14
|
+
"pleaseEnterList": "请绑定列表",
|
|
15
|
+
"pleaseEnterProcess": "请绑定流程",
|
|
16
|
+
"pleaseEnterLabel": "请输入显示值",
|
|
17
|
+
"pleaseEnterValue": "请输入存储值",
|
|
18
|
+
"bizKeyNotBindFiled": "单据编号未绑定数据项",
|
|
19
|
+
"pleaseSelectOneField":"请至少选择一个显示字段!",
|
|
20
|
+
"pleaseEnterNumberRange": "请输入大于等于{min}且小于等于{max}的数值",
|
|
21
|
+
"pleaseEnterAValueGreaterThanMin": "请输入大于等于{min}的数值",
|
|
22
|
+
"pleaseEnterAValueLessThanMax": "请输入小于等于{max}的数值",
|
|
23
|
+
"numberRangeSetError": "数值范围设置有误",
|
|
24
|
+
"stringRangeError": "请输入长度大于等于{min}且小于等于{max}的值",
|
|
25
|
+
"attachmentMaxSize": "附件大小必须在0MB至1000MB之间",
|
|
26
|
+
"pleaseEnterTotalScoreSetting": "请填写总分设置",
|
|
27
|
+
"theTotalScoreMustNotBeLessThan1": "总分不能小于1",
|
|
28
|
+
"scoreDefaultValueRange": "默认值必须在{min}和{max}之间",
|
|
29
|
+
"attachmentLimitError": "附件上传的数量必须在{min}和{max}之间",
|
|
30
|
+
"PleaseReselectTheOptionalQuantity": "请重新选择可选数量",
|
|
31
|
+
"TheMaximumLengthIsGreaterThanTheMinimumLength": "该控件最大长度需大于最小长度",
|
|
32
|
+
"TheMinimumLengthIsGreaterThanTheMaximumLength": "该控件最小长度需小于最大长度",
|
|
33
|
+
"PleaseSelectTheCorrectOptionSettings": "请选择正确的选项设置",
|
|
34
|
+
"optionIdIsRepeat": "选项ID不能重复",
|
|
35
|
+
"optionIsRequired": "请输入至少一条选项",
|
|
36
|
+
"pleaseEnterDataCode": "请绑定业务模型",
|
|
37
|
+
"pleaseEnterValueFieldCode": "请绑定存储值",
|
|
38
|
+
"pleaseEnterSvcCode": "请绑定服务",
|
|
39
|
+
"pleaseBindAtLeastOneDisplayValue": "至少绑定一个显示值",
|
|
40
|
+
"pleaseSelectProvince": "请选择省",
|
|
41
|
+
"pleaseSelectCity": "请选择市",
|
|
42
|
+
"pleaseSelectDistrict": "请选择区",
|
|
43
|
+
"limitRowsCannotBeLessThan0": "最少填写行数不能小于0",
|
|
44
|
+
"TheNumberOfRowsCannotBeLessThanMinRows": "行数量不能小于{min}行",
|
|
45
|
+
"pleaseEnterColumnWidth": "请输入列宽",
|
|
46
|
+
"pleaseSetTheLogicalRelationshipOfAllRuleConditions": "请设置所有规则条件的逻辑关系",
|
|
47
|
+
"pleaseCompleteAllRulesAndConditions": "请将所有规则条件填写完整",
|
|
48
|
+
"pleaseSelectControl": "请选择控件",
|
|
49
|
+
"pleaseSelectAtLeastOneColumn": "请至少选择一个显示字段",
|
|
50
|
+
"pleaseSelectFillBackMode": "请选择回填设置",
|
|
51
|
+
"pleaseSelectDashboard": "请选择仪表盘",
|
|
52
|
+
"rootNodeIsRequired": "请选择根节点",
|
|
53
|
+
"theViewNameCannotBeEmpty": "视图名称不能为空",
|
|
54
|
+
"pleaseSelectOcrType": "请选择识别类型",
|
|
55
|
+
"pleaseSelectAtLeastOneFieldToFillIn": "请至少选择一个字段进行填充",
|
|
56
|
+
"pleaseChooseAtLeastOne": "请至少选择一个",
|
|
57
|
+
"pleaseEnterButtonContent": "请输入按钮标题",
|
|
58
|
+
"pleaseEnterDataCodeInDataSetting": "请在数据设置中绑定业务模型",
|
|
59
|
+
"pleaseEnterValueFieldCodeInDataSetting": "请在数据设置中绑定存储值",
|
|
60
|
+
"pleaseEnterSvcCodeInDataSetting": "请在数据设置中绑定服务",
|
|
61
|
+
"pleaseBindAtLeastOneDisplayValueInDataSetting": "请在数据设置中至少绑定一个显示值",
|
|
62
|
+
"rootNodeIsRequiredInDataSetting": "请在数据设置中选择根节点",
|
|
63
|
+
"pleaseEnterMaxHeight": "请输入最大高度",
|
|
64
|
+
"pleaseEnter": "输入内容不能为空",
|
|
65
|
+
"pleaseEnterWatermark": "水印不能为空",
|
|
66
|
+
"pleaseEnterFileName": "文件名称不能为空",
|
|
67
|
+
"pleaseUploadAtLeastOnePrintTemplate": "请至少上传一个打印模版!",
|
|
68
|
+
"pleaseAssignBusiness":"请选择指定业务部门",
|
|
69
|
+
"pleaseAssignExternal":"请选择指定外部组织",
|
|
70
|
+
"pleaseEnterAliasCode":"请输入子表别名",
|
|
71
|
+
"pleaseSelectDataCode":"请选择关联表设置业务模型",
|
|
72
|
+
"pleaseSelectSvcCode":"请选择关联表设置绑定服务",
|
|
73
|
+
"pleaseSelectJoinFieldCode":"请选择关联子表字段",
|
|
74
|
+
"pleaseSelectMainFieldCode":"请选择关联主表字段",
|
|
75
|
+
"pleaseSelectSortFieldCode": "请选择排序字段"
|
|
76
|
+
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { warn } from "./log";
|
|
2
|
-
/**
|
|
3
|
-
* 通过key字符串类修改对象上边的属性
|
|
4
|
-
* @param obj 执行修改的对象
|
|
5
|
-
* @param key 修改的key,可以是 name,可以是0,可以是深层嵌套的obj.0,obj[0].name等等
|
|
6
|
-
* @param value 修改的值
|
|
7
|
-
* @return boolean 是否修改成功
|
|
2
|
+
/**
|
|
3
|
+
* 通过key字符串类修改对象上边的属性
|
|
4
|
+
* @param obj 执行修改的对象
|
|
5
|
+
* @param key 修改的key,可以是 name,可以是0,可以是深层嵌套的obj.0,obj[0].name等等
|
|
6
|
+
* @param value 修改的值
|
|
7
|
+
* @return boolean 是否修改成功
|
|
8
8
|
* */ export function updateValueFromKeys(obj, key, value) {
|
|
9
9
|
// 'obj[0].name' 会被转换为 obj.0.name 然后变成 ['obj', 0, 'name']数组,最终匹配内容
|
|
10
10
|
var keyList = key.replace(/\[(\d)]/g, function(text, $1) {
|
package/dist/esm/utils.js
CHANGED
|
@@ -69,10 +69,10 @@ export function debounce(func) {
|
|
|
69
69
|
var wait = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : 500;
|
|
70
70
|
var timer;
|
|
71
71
|
return function() {
|
|
72
|
+
var _this = this;
|
|
72
73
|
for(var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++){
|
|
73
74
|
args[_key] = arguments[_key];
|
|
74
75
|
}
|
|
75
|
-
var _this = this;
|
|
76
76
|
if (timer) {
|
|
77
77
|
return;
|
|
78
78
|
}
|
|
@@ -90,16 +90,16 @@ export function wait() {
|
|
|
90
90
|
setTimeout(resolve, time);
|
|
91
91
|
});
|
|
92
92
|
}
|
|
93
|
-
/**
|
|
94
|
-
* schema逐个遍历,提供转换回调
|
|
95
|
-
* @author qiyu
|
|
96
|
-
* @param schemaItems
|
|
97
|
-
* @param convertion
|
|
98
|
-
* @example
|
|
99
|
-
import { loop, camelizeKeys } from 'model-driven-front/lib/utils/dataCleaner'
|
|
100
|
-
new_model = loop(new_model, (item: any) => {
|
|
101
|
-
return camelizeKeys(item)
|
|
102
|
-
})
|
|
93
|
+
/**
|
|
94
|
+
* schema逐个遍历,提供转换回调
|
|
95
|
+
* @author qiyu
|
|
96
|
+
* @param schemaItems
|
|
97
|
+
* @param convertion
|
|
98
|
+
* @example
|
|
99
|
+
import { loop, camelizeKeys } from 'model-driven-front/lib/utils/dataCleaner'
|
|
100
|
+
new_model = loop(new_model, (item: any) => {
|
|
101
|
+
return camelizeKeys(item)
|
|
102
|
+
})
|
|
103
103
|
*/ export function loop(schemaItems, convertion) {
|
|
104
104
|
var new_items = [];
|
|
105
105
|
if (Array.isArray(schemaItems)) {
|