workflow-editor 0.0.3 → 0.0.4-up
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/.vscode/extensions.json +3 -0
- package/README.md +7 -0
- package/index.html +13 -0
- package/lib/workflow-editor.js +23979 -0
- package/package.json +30 -38
- package/packages/index.js +34 -0
- package/packages/plugins/formValidatorUtil.js +533 -0
- package/packages/plugins/index.js +8 -0
- package/packages/workflow-editor/index.js +14 -0
- package/packages/workflow-editor/src/api.js +7 -0
- package/packages/workflow-editor/src/assets/wf-editor-icons.js +2 -0
- package/packages/workflow-editor/src/constant.js +8 -0
- package/packages/workflow-editor/src/json-object-templates/auto-task.js +70 -0
- package/packages/workflow-editor/src/json-object-templates/copy-task.js +72 -0
- package/packages/workflow-editor/src/json-object-templates/decision.js +11 -0
- package/packages/workflow-editor/src/json-object-templates/end.js +14 -0
- package/packages/workflow-editor/src/json-object-templates/fork.js +10 -0
- package/packages/workflow-editor/src/json-object-templates/human-decision.js +9 -0
- package/packages/workflow-editor/src/json-object-templates/human-task.js +199 -0
- package/packages/workflow-editor/src/json-object-templates/join.js +10 -0
- package/packages/workflow-editor/src/json-object-templates/process.js +98 -0
- package/packages/workflow-editor/src/json-object-templates/start.js +13 -0
- package/packages/workflow-editor/src/json-object-templates/subprocess.js +31 -0
- package/packages/workflow-editor/src/json-object-templates/transition.js +26 -0
- package/packages/workflow-editor/src/main/admin-save-dialog.vue +66 -0
- package/packages/workflow-editor/src/main/canvas.vue +483 -0
- package/packages/workflow-editor/src/main/context-menu.vue +132 -0
- package/packages/workflow-editor/src/main/icon-svg.vue +32 -0
- package/packages/workflow-editor/src/main/selection-region.vue +66 -0
- package/packages/workflow-editor/src/main/tache-history-tooltip.vue +38 -0
- package/packages/workflow-editor/src/main/tache-name-input.vue +19 -0
- package/packages/workflow-editor/src/main/tache-subprocess-history-dialog.vue +35 -0
- package/packages/workflow-editor/src/main/toolbox.vue +60 -0
- package/packages/workflow-editor/src/main/wf-history-canvas.vue +304 -0
- package/packages/workflow-editor/src/process-json.js +623 -0
- package/packages/workflow-editor/src/process-service.js +31 -0
- package/packages/workflow-editor/src/properties-editors/auto-task/basic-properties.vue +81 -0
- package/packages/workflow-editor/src/properties-editors/auto-task/permission-settings.vue +155 -0
- package/packages/workflow-editor/src/properties-editors/auto-task.vue +73 -0
- package/packages/workflow-editor/src/properties-editors/common/additional-condition-utils.js +531 -0
- package/packages/workflow-editor/src/properties-editors/common/additional-condition.vue +276 -0
- package/packages/workflow-editor/src/properties-editors/common/auto-filled-fields-utils.js +34 -0
- package/packages/workflow-editor/src/properties-editors/common/auto-filled-fields.vue +239 -0
- package/packages/workflow-editor/src/properties-editors/common/common-notice-tool.vue +67 -0
- package/packages/workflow-editor/src/properties-editors/common/common-user-condition.vue +241 -0
- package/packages/workflow-editor/src/properties-editors/common/form-fields-utils.js +23 -0
- package/packages/workflow-editor/src/properties-editors/common/form-fields.vue +116 -0
- package/packages/workflow-editor/src/properties-editors/common/i18n-input.vue +75 -0
- package/packages/workflow-editor/src/properties-editors/common/i18n-set-dialog.vue +125 -0
- package/packages/workflow-editor/src/properties-editors/common/notice-reminder.vue +72 -0
- package/packages/workflow-editor/src/properties-editors/common/notice.vue +101 -0
- package/packages/workflow-editor/src/properties-editors/common/reminder.vue +185 -0
- package/packages/workflow-editor/src/properties-editors/common/select-mail-template.vue +83 -0
- package/packages/workflow-editor/src/properties-editors/common/standard-fields.vue +65 -0
- package/packages/workflow-editor/src/properties-editors/common/system-role-tree-inline.vue +347 -0
- package/packages/workflow-editor/src/properties-editors/common/system-role-tree.vue +63 -0
- package/packages/workflow-editor/src/properties-editors/common/task-title.vue +148 -0
- package/packages/workflow-editor/src/properties-editors/common/transactor-settings.vue +233 -0
- package/packages/workflow-editor/src/properties-editors/common/user-selection.vue +386 -0
- package/packages/workflow-editor/src/properties-editors/common/value-selection-dialog.vue +209 -0
- package/packages/workflow-editor/src/properties-editors/common/variables.vue +135 -0
- package/packages/workflow-editor/src/properties-editors/copy-task/basic-properties.vue +90 -0
- package/packages/workflow-editor/src/properties-editors/copy-task/permission-settings.vue +155 -0
- package/packages/workflow-editor/src/properties-editors/copy-task.vue +94 -0
- package/packages/workflow-editor/src/properties-editors/decision.vue +90 -0
- package/packages/workflow-editor/src/properties-editors/fork.vue +72 -0
- package/packages/workflow-editor/src/properties-editors/human-decision.vue +44 -0
- package/packages/workflow-editor/src/properties-editors/human-task/additional-condition-dialog.vue +60 -0
- package/packages/workflow-editor/src/properties-editors/human-task/basic-properties.vue +160 -0
- package/packages/workflow-editor/src/properties-editors/human-task/componentsConfigUtil.js +291 -0
- package/packages/workflow-editor/src/properties-editors/human-task/custom-actions.vue +249 -0
- package/packages/workflow-editor/src/properties-editors/human-task/editable-child-field-setting.vue +392 -0
- package/packages/workflow-editor/src/properties-editors/human-task/editable-child-fields.vue +241 -0
- package/packages/workflow-editor/src/properties-editors/human-task/editable-field-selection.vue +220 -0
- package/packages/workflow-editor/src/properties-editors/human-task/editable-fields.vue +204 -0
- package/packages/workflow-editor/src/properties-editors/human-task/events.vue +59 -0
- package/packages/workflow-editor/src/properties-editors/human-task/permission-settings.vue +207 -0
- package/packages/workflow-editor/src/properties-editors/human-task/selection-conditions.vue +390 -0
- package/packages/workflow-editor/src/properties-editors/human-task.vue +109 -0
- package/packages/workflow-editor/src/properties-editors/join.vue +44 -0
- package/packages/workflow-editor/src/properties-editors/process/basic-properties.vue +273 -0
- package/packages/workflow-editor/src/properties-editors/process/events.vue +76 -0
- package/packages/workflow-editor/src/properties-editors/process/notice-settings.vue +60 -0
- package/packages/workflow-editor/src/properties-editors/process/parameter-settings.vue +95 -0
- package/packages/workflow-editor/src/properties-editors/process/permission-settings.vue +28 -0
- package/packages/workflow-editor/src/properties-editors/process/selectPage.vue +81 -0
- package/packages/workflow-editor/src/properties-editors/process.vue +115 -0
- package/packages/workflow-editor/src/properties-editors/subprocess/basic-properties.vue +199 -0
- package/packages/workflow-editor/src/properties-editors/subprocess/events.vue +26 -0
- package/packages/workflow-editor/src/properties-editors/subprocess/field-mappings.vue +206 -0
- package/packages/workflow-editor/src/properties-editors/subprocess/transactor-settings.vue +64 -0
- package/packages/workflow-editor/src/properties-editors/subprocess.vue +79 -0
- package/packages/workflow-editor/src/properties-editors/transition/basic-properties.vue +53 -0
- package/packages/workflow-editor/src/properties-editors/transition.vue +74 -0
- package/packages/workflow-editor/src/properties-editors/user-condition.js +177 -0
- package/packages/workflow-editor/src/store/getters.js +27 -0
- package/packages/workflow-editor/src/store/workflow-editor.js +125 -0
- package/packages/workflow-editor/src/taches/auto-task.vue +99 -0
- package/packages/workflow-editor/src/taches/common-methods.js +21 -0
- package/packages/workflow-editor/src/taches/copy-task.vue +99 -0
- package/packages/workflow-editor/src/taches/custom-task.vue +88 -0
- package/packages/workflow-editor/src/taches/decision.vue +102 -0
- package/packages/workflow-editor/src/taches/end.vue +76 -0
- package/packages/workflow-editor/src/taches/fork.vue +102 -0
- package/packages/workflow-editor/src/taches/human-decision.vue +102 -0
- package/packages/workflow-editor/src/taches/human-task.vue +113 -0
- package/packages/workflow-editor/src/taches/join.vue +91 -0
- package/packages/workflow-editor/src/taches/joint.vue +177 -0
- package/packages/workflow-editor/src/taches/start.vue +76 -0
- package/packages/workflow-editor/src/taches/subprocess.vue +99 -0
- package/packages/workflow-editor/src/taches/tache-resizer.vue +80 -0
- package/packages/workflow-editor/src/transitions/broken-line.vue +91 -0
- package/packages/workflow-editor/src/transitions/curve-line.vue +91 -0
- package/packages/workflow-editor/src/transitions/straight-line.vue +26 -0
- package/packages/workflow-editor/src/transitions/transition.vue +212 -0
- package/packages/workflow-editor/src/transitions/virtual-transition.vue +43 -0
- package/packages/workflow-editor/src/util.js +489 -0
- package/packages/workflow-editor/src/workflow-editor.vue +606 -0
- package/packages/workflow-editor/src/workflow-history.vue +153 -0
- package/public/vite.svg +1 -0
- package/src/i18n/i18n.js +16 -0
- package/src/i18n/langs/cn.js +509 -0
- package/src/i18n/langs/en.js +551 -0
- package/vite.config.js +36 -0
- package/yarn-error.log +0 -8405
|
@@ -0,0 +1,551 @@
|
|
|
1
|
+
const en = {
|
|
2
|
+
workflowEditorPublicModel: {
|
|
3
|
+
add: 'Add',
|
|
4
|
+
insert: 'Insert',
|
|
5
|
+
delete: 'Delete',
|
|
6
|
+
viewConditions: 'View Conditions',
|
|
7
|
+
agree: 'Agree',
|
|
8
|
+
disagree: 'Disagree',
|
|
9
|
+
andOr: 'And / Or',
|
|
10
|
+
mail: 'Mail',
|
|
11
|
+
message: 'Message',
|
|
12
|
+
App: 'App',
|
|
13
|
+
dingding: 'Dingding',
|
|
14
|
+
determine: 'Determine',
|
|
15
|
+
cancel: 'Cancel',
|
|
16
|
+
choice: 'Choice',
|
|
17
|
+
empty: 'Empty',
|
|
18
|
+
save: 'Save',
|
|
19
|
+
export: 'Export',
|
|
20
|
+
open: 'Open',
|
|
21
|
+
return: 'Return',
|
|
22
|
+
flowChart: 'Flow Chart',
|
|
23
|
+
close: 'Close',
|
|
24
|
+
selectPage: 'Select Page',
|
|
25
|
+
search: 'Search',
|
|
26
|
+
adminSave: 'Admin Save',
|
|
27
|
+
tipTitle: 'Tip',
|
|
28
|
+
i18nSet: 'I18n Setting',
|
|
29
|
+
i18nZh: 'Chinese',
|
|
30
|
+
i18nEn: 'English',
|
|
31
|
+
i18nKey: 'I18n Key',
|
|
32
|
+
subprocessTitle: 'Subprocess History',
|
|
33
|
+
custom: 'Custom',
|
|
34
|
+
},
|
|
35
|
+
workflowEditorMessage: {
|
|
36
|
+
requiredAndMustBeADate: 'Required And Must Be A Date',
|
|
37
|
+
requiredAndMustBeAnInteger: 'Required And Must Be An Integer',
|
|
38
|
+
requiredAndMustBeDecimal: 'Required And Must Be Decimal',
|
|
39
|
+
mustFill: 'Must Fill',
|
|
40
|
+
recordLine: 'Record Line {row}',
|
|
41
|
+
pageRecordLine: 'Record in row {row} of page {pageNum}',
|
|
42
|
+
currentHandlingPersonnel: 'Current Handling Personnel',
|
|
43
|
+
pleaseSelect: 'Please Select',
|
|
44
|
+
pleaseSelectARow: 'Please Select A Row',
|
|
45
|
+
conditionsHaveNotBeenSet: 'Conditions Have Not Been Set',
|
|
46
|
+
viewConditions: 'View Conditions',
|
|
47
|
+
fieldSettings: 'Field Settings',
|
|
48
|
+
valueSetting: 'Value Setting',
|
|
49
|
+
pleaseEnterContent: 'Please Enter Content',
|
|
50
|
+
theFieldNameOrFieldValueInLineCannotBeEmpty:
|
|
51
|
+
'The Field Name Or Field Value In Line {row} Cannot Be Empty',
|
|
52
|
+
fieldNameCannotBeEmpty: 'Field Name Cannot Be Empty',
|
|
53
|
+
fieldValueCannotBeEmpty: 'Field Value Cannot Be Empty',
|
|
54
|
+
pleaseEnterASubject: 'Please Enter A Subject',
|
|
55
|
+
selectStandardFields: 'Select Standard Fields',
|
|
56
|
+
pleaseEnterTheRoleName: 'Please Enter The Role Name',
|
|
57
|
+
queryResultIsEmpty: 'Query Result Is Empty',
|
|
58
|
+
selectRole: 'Select Role',
|
|
59
|
+
enterText: 'Enter Text',
|
|
60
|
+
selectField: 'Select Field',
|
|
61
|
+
pleaseSelectPersonnel: 'Please Select Personnel',
|
|
62
|
+
pleaseSelectAValue: 'Please Select A Value',
|
|
63
|
+
pleaseSelectAValueInTheCurrentTab:
|
|
64
|
+
'Please Select A Value In The Current Tab',
|
|
65
|
+
variableNameCannotBeEmpty: 'Variable Name Cannot Be Empty',
|
|
66
|
+
variableValueCannotBeEmpty: 'Variable Value Cannot Be Empty',
|
|
67
|
+
variableNameOrValueOnLineCannotBeEmpty:
|
|
68
|
+
'Variable Name Or Value On Line {row} Cannot Be Empty',
|
|
69
|
+
whenThereAreMultipleManagers: 'When There Are Multiple Managers',
|
|
70
|
+
duplicateOperationTypeWithLinePleaseReselect:
|
|
71
|
+
'Duplicate Operation Type With Line {row}, Please Reselect',
|
|
72
|
+
theOperationTypeOrNameInLineIsEmpty:
|
|
73
|
+
'The Operation Type Or Name In Line {row} Is Empty',
|
|
74
|
+
readOnly: 'Read Only',
|
|
75
|
+
pleaseEnterFieldName: 'Please Enter Field Name',
|
|
76
|
+
dataInLineCannotBeEmpty: '{data1} Or {data2} In Line {row} Cannot Be Empty',
|
|
77
|
+
dataCannotBeEmpty: '{data} Cannot Be Empty',
|
|
78
|
+
theStartAndEndOfTheFlowDirectionCannotBeTheSame:
|
|
79
|
+
'The Start And End Of The Flow Direction Cannot Be The Same',
|
|
80
|
+
onlyConditionJudgmentBranchAndManualJudgmentCanHaveMultipleOutboundFlows:
|
|
81
|
+
'Only Condition Judgment, Branch And Manual Judgment Can Have Multiple Outbound Flows',
|
|
82
|
+
startAndEndNodesCannotBeConnectedDirectly:
|
|
83
|
+
'Start And End Nodes Cannot Be Connected Directly',
|
|
84
|
+
endNodeCannotHaveOutFlowDirection:
|
|
85
|
+
'End Node Cannot Have Out Flow Direction',
|
|
86
|
+
itIsTheSameAsTheExistingLink: 'It Is The Same As The Existing Link: {name}',
|
|
87
|
+
updateSuccessful: 'Update Successful',
|
|
88
|
+
savedSuccessfully: 'Saved Successfully',
|
|
89
|
+
exportSucceeded: 'Export Succeeded',
|
|
90
|
+
pleaseSelectRole: 'Please select role',
|
|
91
|
+
subTableMustInputDatas: 'The [{subtable}] subtable must enter data',
|
|
92
|
+
pleaseEnterTheNameOrCode: 'Please Enter The Name Or Describe',
|
|
93
|
+
updateVersionSuccessful: 'Version updated successfully',
|
|
94
|
+
addVersionSuccessful: 'Version added successfully',
|
|
95
|
+
adminSaveTip: 'The version must be added in the following cases:',
|
|
96
|
+
adminSaveTip1: '1.The process name or code has been modified',
|
|
97
|
+
adminSaveTip2: '2.The node name or code has been modified',
|
|
98
|
+
adminSaveTip3: '3.Added node or flow direction',
|
|
99
|
+
adminSaveTip4: '4.Node or flow direction removed',
|
|
100
|
+
adminSaveTip5: 'Please select "Add Version" or "Update Current Version"?',
|
|
101
|
+
updateVersion: 'Update Current Version',
|
|
102
|
+
addVersion: 'Add Version',
|
|
103
|
+
pleaseInputCode:
|
|
104
|
+
'Please input the code first, and then do the international configuration',
|
|
105
|
+
blankFieldNameOrValue: 'Blank Field Name Or Value',
|
|
106
|
+
},
|
|
107
|
+
workflowEditor: {
|
|
108
|
+
// 主页面
|
|
109
|
+
main: {
|
|
110
|
+
tacheType: 'Tache Type',
|
|
111
|
+
straightLine: 'Straight Line',
|
|
112
|
+
curveLine: 'Curve Line',
|
|
113
|
+
brokenLine: 'Broken Line',
|
|
114
|
+
},
|
|
115
|
+
// 公共属性
|
|
116
|
+
common: {
|
|
117
|
+
remove: 'Remove',
|
|
118
|
+
attribute: 'Attribute',
|
|
119
|
+
fieldName: 'Field Name(*)',
|
|
120
|
+
operator: 'Operator',
|
|
121
|
+
value: 'Value(*)',
|
|
122
|
+
name: 'Name',
|
|
123
|
+
fieldValue: 'Field Value',
|
|
124
|
+
separator: 'Separator',
|
|
125
|
+
fillInMethod: 'Fill In Method',
|
|
126
|
+
cover: 'Cover',
|
|
127
|
+
append: 'Append',
|
|
128
|
+
insertToFront: 'Insert To Front',
|
|
129
|
+
fillInTime: 'Fill In Time',
|
|
130
|
+
fillInBeforeHandling: 'Fill In Before Handling',
|
|
131
|
+
fillInAfterHandling: 'Fill In After Handling',
|
|
132
|
+
type: 'Type(*)',
|
|
133
|
+
user: 'User',
|
|
134
|
+
role: 'Role',
|
|
135
|
+
department: 'Department',
|
|
136
|
+
workgroup: 'Workgroup',
|
|
137
|
+
selectFormField: 'Select Form Field',
|
|
138
|
+
notificationMethod: 'Notification Method',
|
|
139
|
+
addressee: 'Addressee',
|
|
140
|
+
theme: 'Theme',
|
|
141
|
+
content: 'Content',
|
|
142
|
+
notifyPersonnel: 'Notify Personnel',
|
|
143
|
+
selectusers: 'Select Users',
|
|
144
|
+
selectDepartment: 'Select Department',
|
|
145
|
+
selectTeam: 'Select Team',
|
|
146
|
+
selectRole: 'Select Role',
|
|
147
|
+
organizationStructure: 'Organization Structure',
|
|
148
|
+
formField: 'Form Field',
|
|
149
|
+
variableName: 'Variable Name',
|
|
150
|
+
variableValue: 'Variable Value',
|
|
151
|
+
selectField: 'Select Field',
|
|
152
|
+
taskNotice: 'Task Notice',
|
|
153
|
+
reminderNotice: 'Reminder Notice',
|
|
154
|
+
customMsg: 'Custom Notice Message',
|
|
155
|
+
},
|
|
156
|
+
// 流程属性
|
|
157
|
+
process: {
|
|
158
|
+
processInitiator: 'Process Initiator',
|
|
159
|
+
processInitiatorRole: 'Process Initiator Role',
|
|
160
|
+
processInitiatorDepartment: 'ProcessInitiator Department',
|
|
161
|
+
processInitiatorSuperiorDepartment:
|
|
162
|
+
'Process Initiator Superior Ddepartment',
|
|
163
|
+
processInitiatorTopDepartment: 'Process Initiator Top Department',
|
|
164
|
+
processInitiatorWorkingGroup: 'Process Initiator Working Group',
|
|
165
|
+
nameOfTheDirectSuperiorOfTheProcessInitiator:
|
|
166
|
+
'Name Of The Direct Superior Of The Process Initiator',
|
|
167
|
+
processInitiatorsDirectSuperiorDepartment:
|
|
168
|
+
'Process initiator`s Direct Superior Department',
|
|
169
|
+
directSuperiorRoleOfProcessInitiator:
|
|
170
|
+
'Direct Superior Role Of Process Initiator',
|
|
171
|
+
ProcessInitiatorsImmediateSuperiorWorkingGroup:
|
|
172
|
+
'Process Initiator`s Immediate Superior Working Group',
|
|
173
|
+
nameOfCurrentHandler: 'Name Of Current Handler',
|
|
174
|
+
currentHandlerRole: 'Current Handler Role',
|
|
175
|
+
currentHandlerDepartment: 'Current Handler Department',
|
|
176
|
+
currentHandlerSuperiorDepartment: 'Current Handler`s Superior Department',
|
|
177
|
+
topDepartmentOfCurrentHandler: 'Top Department Of current Handler',
|
|
178
|
+
currentHandlerWorkingGroup: 'Current Handler Working Group',
|
|
179
|
+
nameOfTheImmediateSuperiorOfTheCurrentHandler:
|
|
180
|
+
'Name Of The Immediate Superior Of The Current Handler',
|
|
181
|
+
currentHandlerDirectSuperiorDepartment:
|
|
182
|
+
'Current handler`s Direct Superior Department',
|
|
183
|
+
currentManagerDirectSuperiorRole:
|
|
184
|
+
'Current Manager`s Direct Superior Role',
|
|
185
|
+
workingGroupDirectlyUnderTheCurrentHandler:
|
|
186
|
+
'Working Group Directly Under The Current Handler',
|
|
187
|
+
topDepartments: 'Top Departments',
|
|
188
|
+
approvalResults: 'Approval Results',
|
|
189
|
+
totalNnumberOfPersonsWhoDisagreeWithTheCountersignature:
|
|
190
|
+
'Total Number O Persons Who Disagree With The Countersignature',
|
|
191
|
+
totalNumberOfCountersignedAndAgreedPersonnel:
|
|
192
|
+
'Total Number Of Countersigned And Agreed Personnel',
|
|
193
|
+
percentageOfPersonsWhoDisagreeWithTheCountersignature:
|
|
194
|
+
'Percntage Of Persons Who Disagree With The Countersignature',
|
|
195
|
+
percentageOfCountersignedAndAgreedPersonnel:
|
|
196
|
+
'Percentage Of Countersigned And Agreed Personnel',
|
|
197
|
+
percentageOfAbstentions: 'Percentage Of Abstentions',
|
|
198
|
+
percentageOfVotesAgainst: 'Percentage Of Votes Against',
|
|
199
|
+
percentageOfAffirmativeVotes: 'Percentage Of Affirmative Votes',
|
|
200
|
+
totalNumberOfAbstentions: 'Total Number Of Abstentions',
|
|
201
|
+
totalVotesAgainst: 'Total Votes Against',
|
|
202
|
+
totalNumberOfAffirmativeVotes: 'Total Number Of Affirmative Votes',
|
|
203
|
+
standardFields: 'Standard Fields',
|
|
204
|
+
perhaps: 'Perhaps',
|
|
205
|
+
also: 'Also',
|
|
206
|
+
greaterThan: 'Greater Than',
|
|
207
|
+
lessThan: 'Less Than',
|
|
208
|
+
beEqualTo: 'Be Equal To',
|
|
209
|
+
notGreaterThan: 'Not Greater Than',
|
|
210
|
+
notLessThan: 'Not Less Than',
|
|
211
|
+
notEqualTo: 'Not Equal To',
|
|
212
|
+
contain: 'Contain',
|
|
213
|
+
notIncluded: 'Not Included',
|
|
214
|
+
laterThan: 'Later Than',
|
|
215
|
+
earlierThan: 'Earlier Than',
|
|
216
|
+
noLaterThan: 'No Later Than',
|
|
217
|
+
noEarlierThan: 'No Earlier Than',
|
|
218
|
+
handlingTimeOfThisLink: 'Handling Time Of This Link',
|
|
219
|
+
handlerIDOfThisLink: 'Handler ID Of This Link',
|
|
220
|
+
currentHandlerPrincipalDepartmentID:
|
|
221
|
+
'Current Handler Principal Department ID',
|
|
222
|
+
iDOfTheImmediateSuperiorOfTheCurrentHandler:
|
|
223
|
+
'ID Of The Immediate Superior Of The Current Handler',
|
|
224
|
+
iDOfTheSuperiorDepartmentDirectlyUnderTheCurrentHandler:
|
|
225
|
+
'ID Of The Superior Department Directly Under The Current Handler',
|
|
226
|
+
loginNameOfTheHandlerInThisLink: 'Login Name Of The Handler In This Link',
|
|
227
|
+
NameOfCurrentHandler: 'Name Of Current Handler',
|
|
228
|
+
CurrentHandlerDepartment: 'Current Handler Department',
|
|
229
|
+
CurrentHandlerDepartmentID: 'Current Handler Department ID',
|
|
230
|
+
CurrentManagersPrincipalDepartment:
|
|
231
|
+
'Current Manager`s Principal Department',
|
|
232
|
+
iDOfSsuperiorDepartmentOfCurrentHandler:
|
|
233
|
+
'ID Of Superior Department Of Current Handler',
|
|
234
|
+
CurrentHandlersSuperiorDepartment:
|
|
235
|
+
'Current Handler`s Superior Department',
|
|
236
|
+
TopDepartmentOfCurrentHandler: 'Top Department Of Current Handler',
|
|
237
|
+
TopDepartmentIDOfCurrentHandler: 'Top Department ID Of Current Handler',
|
|
238
|
+
CurrentHandlerRole: 'Current Handler Role',
|
|
239
|
+
CurrentHandlerRoleID: 'Current Handler Role ID',
|
|
240
|
+
CurrentHandlerWorkingGroupID: 'Current Handler Working Group ID',
|
|
241
|
+
LoginNameOfTheImmediateSuperiorOfTheCurrentHandler:
|
|
242
|
+
'Login Name Of The Immediate Superior Of The Current Handler',
|
|
243
|
+
currentHandlersDirectSuperiorDepartment:
|
|
244
|
+
'Current handler`s Direct Superior Department',
|
|
245
|
+
currentManagersDirectSuperiorDepartment:
|
|
246
|
+
'Current Manager`s Direct Superior Department',
|
|
247
|
+
currentManagersDirectSuperiorRole:
|
|
248
|
+
'Current manager`s Direct Superior Role',
|
|
249
|
+
currentHandlersDirectSuperiorRoleID:
|
|
250
|
+
'Current Handler`s Direct Superior Role ID',
|
|
251
|
+
currentManagersDirectSuperiorWork:
|
|
252
|
+
'Current Manager`s Direct Superior Work',
|
|
253
|
+
iDOfTheWorkingGroupDirectlyUnderTheCurrentHandler:
|
|
254
|
+
'ID Of The Working Group Directly Under The Current Handler',
|
|
255
|
+
operationsPerformedInThisPhase: 'Operations Performed In This Phase',
|
|
256
|
+
handlerIDOfThePreviousLink: 'Handler ID Of The Previous Link',
|
|
257
|
+
lastLinkHandlerLogin: 'Last Link Handler Login',
|
|
258
|
+
nameOfHandlerInThePreviousLink: 'Name Of Handler In The Previous Link',
|
|
259
|
+
currentManagersIdDirectlyUnderTheSuperior:
|
|
260
|
+
'Current Manager`s Id Directly Under The Ssuperior',
|
|
261
|
+
appointmentOfHandlerInThePreviousLink:
|
|
262
|
+
'Appointment Of Handler In The Previous Link',
|
|
263
|
+
personSpecifiedInFormField: 'Person Specified In Form Field',
|
|
264
|
+
filterByCriteria: 'Filter by Criteria',
|
|
265
|
+
additionalConditions: 'Additional Conditions',
|
|
266
|
+
handlingYyThePersonnelOfTheDepartmentOfTheInitiator:
|
|
267
|
+
'Handling By The Personnel Of The Department Of The Initiator',
|
|
268
|
+
personnelOfTheDepartmentWhereTheInitiatorWorksParticipateInTheHandling:
|
|
269
|
+
'Personnel Of The Department Where The Initiator Works Participate In The Handling',
|
|
270
|
+
selectSpecificHandler: 'Select Specific Handler',
|
|
271
|
+
selectOneFromDept:
|
|
272
|
+
'Only one person is required to handle the same department',
|
|
273
|
+
generateOneInstanceFromDept:
|
|
274
|
+
'Generate an instance from the same department',
|
|
275
|
+
selectionMethod: 'Selection Method',
|
|
276
|
+
manualSelection: 'Manual Selection',
|
|
277
|
+
autoSelect: 'Auto Select',
|
|
278
|
+
callbackURL: 'Callback URL',
|
|
279
|
+
cannotBeEmpty: 'Cannot Be Empty',
|
|
280
|
+
selectURL: 'Select URL',
|
|
281
|
+
fieldName: 'Field Name',
|
|
282
|
+
processAdministrator: 'Process Administrator',
|
|
283
|
+
currentHandler: 'Current Handler',
|
|
284
|
+
allHandlingPersonnel: 'All Handling Personnel',
|
|
285
|
+
designatedPersonnel: 'Designated Personnel',
|
|
286
|
+
listOfDesignatedPersons: 'List Of Designated Persons',
|
|
287
|
+
processName: 'Process Name',
|
|
288
|
+
processCode: 'Process Code',
|
|
289
|
+
creater: 'Creater',
|
|
290
|
+
correspondingForm: 'Corresponding Form',
|
|
291
|
+
processType: 'Process Type',
|
|
292
|
+
system: 'System',
|
|
293
|
+
affiliatedBranch: 'Affiliated Branch',
|
|
294
|
+
customCategory: 'Custom Category',
|
|
295
|
+
initiationProcess: 'Initiation Process',
|
|
296
|
+
deleteProcess: 'Delete Process',
|
|
297
|
+
cancelProcess: 'Cancel Process',
|
|
298
|
+
endProcess: 'End Process',
|
|
299
|
+
pauseProcess: 'Pause Process',
|
|
300
|
+
continueTheProcess: 'Continue The Process',
|
|
301
|
+
jumpLink: 'Jump Link',
|
|
302
|
+
modificationHandler: 'Modification Handler',
|
|
303
|
+
addHandler: 'Add Handler',
|
|
304
|
+
decreaseOofHandler: 'Decrease Of Handler',
|
|
305
|
+
appointedTask: 'Appointed Task',
|
|
306
|
+
returnTask: 'Return Task',
|
|
307
|
+
retrieveTask: 'Retrieve Task',
|
|
308
|
+
processTaskParameterSettings: 'Process Task Parameter Settings',
|
|
309
|
+
uRLForProcessingTask: 'URL For Processing Task',
|
|
310
|
+
parametersForReceivingTaskID: 'Parameters For Receiving Task ID',
|
|
311
|
+
viewFormParameterSettings: 'View Form Parameter Settings',
|
|
312
|
+
viewTheURLOfTheForm: 'View The URL Of The Form',
|
|
313
|
+
parametersOfReceivingEntityID: 'Parameters Of Receiving Entity ID',
|
|
314
|
+
emergencyTreatmentParameterSetting:
|
|
315
|
+
'Emergency Treatment Parameter Setting',
|
|
316
|
+
uRLOfEmergencyHandling: 'URL Of Emergency Handling',
|
|
317
|
+
initiateProcessParameterSettings: 'Initiate Process Parameter Settings',
|
|
318
|
+
uRLOfTheInitiatingProcess: 'URL Of The Initiating Process',
|
|
319
|
+
parametersForReceivingProcessName:
|
|
320
|
+
'Parameters For Receiving Process Name',
|
|
321
|
+
customParameterValue: 'Custom Parameter Value',
|
|
322
|
+
ViewFlowHistoryPersonnel: 'View Flow History Personnel',
|
|
323
|
+
ViewCountersignatureResultPersonnel:
|
|
324
|
+
'View Countersignature Result Personnel',
|
|
325
|
+
ViewVotingResultsBy: 'View Voting Results By',
|
|
326
|
+
name: 'Name',
|
|
327
|
+
code: 'Code',
|
|
328
|
+
subprocess: 'Subprocess',
|
|
329
|
+
transferValueFromMainFormToSubForm:
|
|
330
|
+
'Transfer Value From Main Form To Sub Form',
|
|
331
|
+
fieldsOfTheMainForm: 'Fields Of The Main Form',
|
|
332
|
+
fieldsOfSubform: 'Fields Of Subform',
|
|
333
|
+
subformReturnsResultsToMainForm: 'Subform Returns Results To Main Form',
|
|
334
|
+
eventsTriggeredBeforeStartingASubprocess:
|
|
335
|
+
'Events Triggered Before Starting A Subprocess',
|
|
336
|
+
triggerSubprocessEndEvent: 'Trigger Subprocess End Event',
|
|
337
|
+
setTheHandlerOfTheFirstPhaseOfTheSubProcess:
|
|
338
|
+
'Set The Handler Of The First Phase Of The Sub Process',
|
|
339
|
+
keepTheHandlerUnchangedWhenTheTargetLinkIsHandledRepeatedly:
|
|
340
|
+
'Keep The Handler Unchanged When The Target Link Is Handled Repeatedly',
|
|
341
|
+
branchingCondition: 'Branching Condition',
|
|
342
|
+
processProperties: 'Process Properties',
|
|
343
|
+
basicProperties: 'Basic Properties',
|
|
344
|
+
permissionSettings: 'Permission Settings',
|
|
345
|
+
notificationSettings: 'Notification Settings',
|
|
346
|
+
sendNotificationAfterProcessEnds: 'Send Notification After Process Ends',
|
|
347
|
+
reminderSettings: 'Notice And Reminder Settings',
|
|
348
|
+
parameterSsetting: 'Parameter Setting',
|
|
349
|
+
event: 'Event',
|
|
350
|
+
processVariables: 'Process Variables',
|
|
351
|
+
propertiesOfSubprocesses: 'Properties Of Subprocesses',
|
|
352
|
+
settingOfHandler: 'Setting Of Handler',
|
|
353
|
+
eventProcessing: 'Event Processing',
|
|
354
|
+
sponsorsImmediateSuperior: 'Sponsor`s Immediate Superior',
|
|
355
|
+
sponsorsSuperiorDepartment: 'Sponsor`s Superior Department',
|
|
356
|
+
sponsorTopDepartment: 'Sponsor Top Department',
|
|
357
|
+
superiorDepartmentDirectlyUnderTheInitiator:
|
|
358
|
+
'Superior Department Directly Under The Initiator',
|
|
359
|
+
sponsorsImmediateSuperiorWorkingGroup:
|
|
360
|
+
'Sponsor`s Immediate Superior Working Group',
|
|
361
|
+
lastLinkHandlerDepartment: 'Last Link Handler Department',
|
|
362
|
+
previousLinkHandlerSuperiorDepartment:
|
|
363
|
+
'Previous Link Handler Superior Department',
|
|
364
|
+
topDepartmentOfHandlerInThePreviousLink:
|
|
365
|
+
'Top Department Of Handler In The Previous Link',
|
|
366
|
+
previousLinkHandlersDirectSuperiorDepartment:
|
|
367
|
+
'Previous Link Handler`s Direct Superior Department',
|
|
368
|
+
previousLinkHandlerWorkingGroup: 'Previous Link Handler Working Group',
|
|
369
|
+
workingGroupDirectlyUnderTheManagerInThePreviousLink:
|
|
370
|
+
'Working Group Directly Under The Manager In The Previous Link',
|
|
371
|
+
getSubprocessEntityBean: 'Get subprocess entity bean',
|
|
372
|
+
getSubprocessEntityBeanPlaceholder:
|
|
373
|
+
'The format is:xxxServiceImpl,for example:exampleServiceImpl',
|
|
374
|
+
getSubprocessEntityBeanInfo:
|
|
375
|
+
'The bean needs to implement the interface "tech.imatrix.wf.core.OnStartingSubProcess"',
|
|
376
|
+
isNull: 'Is Null',
|
|
377
|
+
isNotNull: 'Is Not Null',
|
|
378
|
+
defaultMailTemplate: 'Default Mail Template',
|
|
379
|
+
trustTask: 'Trust Task',
|
|
380
|
+
subprocessIsSharedForm: 'Main process and subprocess shared form',
|
|
381
|
+
},
|
|
382
|
+
// 环节属性
|
|
383
|
+
task: {
|
|
384
|
+
newCc: 'New Cc',
|
|
385
|
+
judge: 'Judge',
|
|
386
|
+
end: 'End',
|
|
387
|
+
branch: 'Branch',
|
|
388
|
+
manualJudgment: 'Manual Judgment',
|
|
389
|
+
newTask: 'New Task',
|
|
390
|
+
converge: 'Converge',
|
|
391
|
+
newProcess: 'New Process',
|
|
392
|
+
start: 'Start',
|
|
393
|
+
subprocess: 'Subprocess',
|
|
394
|
+
needToBeUrged: 'Need To Be Urged',
|
|
395
|
+
urgingMethod: 'Urging Method',
|
|
396
|
+
timeLimitForHandling: 'Time Limit For Handling',
|
|
397
|
+
day: 'Day',
|
|
398
|
+
urgingInterval: 'Urging Interval',
|
|
399
|
+
hour: 'Hour',
|
|
400
|
+
alwaysUrging: 'Always Urging',
|
|
401
|
+
limitedUrging: 'Limited Urging',
|
|
402
|
+
timesOfUrging: 'Times Of Urging',
|
|
403
|
+
includingHandoverPersonnel: 'Including Handover Personnel',
|
|
404
|
+
handoverPersonnel: 'Handover Personnel',
|
|
405
|
+
includeNotifyPeople: 'Include Notify People',
|
|
406
|
+
name: 'Name',
|
|
407
|
+
code: 'Code',
|
|
408
|
+
taskTitle: 'Task Title',
|
|
409
|
+
emailNotification: 'Email Notification',
|
|
410
|
+
handlingPage: 'Handling Page',
|
|
411
|
+
remarks: 'Remarks',
|
|
412
|
+
allowViews: 'Allow Views',
|
|
413
|
+
allowToViewCountersignatureResults:
|
|
414
|
+
'Allow To View Countersignature Results',
|
|
415
|
+
allowToViewVotingResults: 'Allow To View Voting Results',
|
|
416
|
+
allowToViewFlowHistory: 'Allow To View Flow History',
|
|
417
|
+
allowFormsToPrint: 'Allow Forms To Print',
|
|
418
|
+
attachmentAuthority: 'Attachment Authority',
|
|
419
|
+
downloadAttachment: 'Download Attachment',
|
|
420
|
+
bodyPermission: 'Body Permission(Temporarily Closed)',
|
|
421
|
+
additionalConditions: 'Additional Conditions',
|
|
422
|
+
setConditions: 'Set Conditions',
|
|
423
|
+
HandlingMethod: 'Handling Method',
|
|
424
|
+
editorial: 'Editorial',
|
|
425
|
+
approvalType: 'Approval Type',
|
|
426
|
+
countersign: 'Countersign',
|
|
427
|
+
voting: 'Voting',
|
|
428
|
+
anyOneCanHandleIt: 'Any One Can Handle It',
|
|
429
|
+
forAll: 'For All',
|
|
430
|
+
passRate: 'Pass Rate',
|
|
431
|
+
modifyOperationName: 'Modify Operation Name',
|
|
432
|
+
operationType: 'Operation Type',
|
|
433
|
+
visibleOrNot: 'Visible Or Not',
|
|
434
|
+
save: 'Save',
|
|
435
|
+
submission: 'Submission',
|
|
436
|
+
agree: 'Agree',
|
|
437
|
+
disagree: 'Disagree',
|
|
438
|
+
favor: 'Favor',
|
|
439
|
+
opposition: 'Opposition',
|
|
440
|
+
waiver: 'Waiver',
|
|
441
|
+
receive: 'Receive',
|
|
442
|
+
giveUp: 'Give Up',
|
|
443
|
+
additionalSignature: 'Additional Signature',
|
|
444
|
+
reductionOfSignature: 'Reduction Of Signature',
|
|
445
|
+
assignTask: 'Assign Task',
|
|
446
|
+
copyTask: 'Copy Task',
|
|
447
|
+
retrieveTask: 'Retrieve Task',
|
|
448
|
+
exportReport: 'Export Report',
|
|
449
|
+
readTask: 'Read',
|
|
450
|
+
selectEditableField: 'Select Editable Field',
|
|
451
|
+
optionalField: 'Optional Field',
|
|
452
|
+
selectedFields: 'Selected Fields',
|
|
453
|
+
editingMethod: 'Editing Method',
|
|
454
|
+
propertyName: 'Property Name',
|
|
455
|
+
condition: 'Condition',
|
|
456
|
+
nothing: 'Nothing',
|
|
457
|
+
beforeSubmission: 'Before Submission',
|
|
458
|
+
executionURL: 'Execution URL',
|
|
459
|
+
errorMessage: 'Error Message',
|
|
460
|
+
afterSubmission: 'After Submission',
|
|
461
|
+
allowEditingForms: 'Allow Editing Forms',
|
|
462
|
+
commentsAllowed: 'Comments Allowed',
|
|
463
|
+
commentsAreRequired: 'Comments Are Required',
|
|
464
|
+
deletePermission: 'Delete Permission',
|
|
465
|
+
addAttachment: 'Add Attachment',
|
|
466
|
+
deleteAttachment: 'Delete Attachment',
|
|
467
|
+
propertiesOfCCTask: 'Properties Of CC Task',
|
|
468
|
+
basicProperties: 'Basic Properties',
|
|
469
|
+
settingOfHandler: 'Setting Of Handler',
|
|
470
|
+
permissionSettings: 'Permission Settings',
|
|
471
|
+
attributeOfConditionJudgment: 'Attribute Of Condition Judgment',
|
|
472
|
+
allBranchFlows: 'All Branch Flows',
|
|
473
|
+
targetLink: 'Target Link',
|
|
474
|
+
propertiesOfBranches: 'Properties Of Branches',
|
|
475
|
+
attributesOfManualJudgment: 'Attributes of manual Judgment',
|
|
476
|
+
linkAttribute: 'Link Attribute',
|
|
477
|
+
autoFillInFieldSettings: 'Auto Fill In Field Settings',
|
|
478
|
+
reminderSettings: 'Notice And Reminder Settings',
|
|
479
|
+
eventProcessing: 'Event Processing',
|
|
480
|
+
linkVariable: 'Link Variable',
|
|
481
|
+
convergedProperties: 'Converged Properties',
|
|
482
|
+
humanTask: 'Human Task',
|
|
483
|
+
conditionJudgment: 'Condition Judgment',
|
|
484
|
+
cCtask: 'CC Task',
|
|
485
|
+
canItBeRejected: 'Can It Be Rejected',
|
|
486
|
+
selectMailTemplate: 'Select Notice Template',
|
|
487
|
+
selectTemplate: 'Select Template',
|
|
488
|
+
autoTask: 'Auto Task',
|
|
489
|
+
newAutoTask: 'New Auto Task',
|
|
490
|
+
propertiesOfAutoTask: 'Properties Of Auto Task',
|
|
491
|
+
custombeanName: 'Custom Bean Name',
|
|
492
|
+
},
|
|
493
|
+
// 流向属性
|
|
494
|
+
transition: {
|
|
495
|
+
flowProperties: 'Flow Properties',
|
|
496
|
+
basicProperties: 'Basic Properties',
|
|
497
|
+
notificationSettings: 'Notification Settings',
|
|
498
|
+
sendNotificationAfterFlow: 'Send Notification After Flow',
|
|
499
|
+
autoFillInFieldSettings: 'Auto Fill In Field Settings',
|
|
500
|
+
eventProcessing: 'Event Processing',
|
|
501
|
+
triggerFlowThroughEvent: 'Trigger Flow Through Event',
|
|
502
|
+
beanName: 'Bean Name',
|
|
503
|
+
},
|
|
504
|
+
condition: {
|
|
505
|
+
combinationCondition: 'Combination Condition',
|
|
506
|
+
currentUserId: 'Current User ID',
|
|
507
|
+
currentUserLogin: 'Current User Login',
|
|
508
|
+
currentUserName: 'Current User Name',
|
|
509
|
+
fillInManually: 'Fill In Manually',
|
|
510
|
+
environmentVariable: 'Environment Variable',
|
|
511
|
+
databaseFields: 'Database fields',
|
|
512
|
+
requestParameters: 'Request Parameters',
|
|
513
|
+
currentTime: 'Current Time',
|
|
514
|
+
currentDate: 'Current Date',
|
|
515
|
+
currentTransactor: 'Current Transactor',
|
|
516
|
+
currentTransactorName: 'Current Transactor Name',
|
|
517
|
+
currentTransactorId: 'Current Transactor Id',
|
|
518
|
+
currentTransactorMainDepartmentId:
|
|
519
|
+
'Current Transactor Main Department Id',
|
|
520
|
+
currentTransactorMainDepartment: 'Current Transactor Main Department',
|
|
521
|
+
currentTransactorRoleId: 'Current Transactor Role Id',
|
|
522
|
+
currentTransactorRole: 'Current Transactor Role',
|
|
523
|
+
currentTransactorWorkGroupId: 'Current Transactor Work Group Id',
|
|
524
|
+
currentTransactorWorkGroup: 'Current Transactor Work Group',
|
|
525
|
+
whenTheVariableIsEmpty: 'When The Variable Is Empty',
|
|
526
|
+
ignore11: 'Ignore (1 = 1)',
|
|
527
|
+
nonConformity: 'Non Conformity (1 < > 1)',
|
|
528
|
+
currentHandler: 'Current Handler',
|
|
529
|
+
currentTaskClient: 'Current Task Client',
|
|
530
|
+
currentAssignor: 'Current Assignor',
|
|
531
|
+
rowsCanBeAdded: 'Rows Can Be Added',
|
|
532
|
+
deleteLine: 'Delete Line',
|
|
533
|
+
modifiableHistoricalData: 'Modifiable Historical Data',
|
|
534
|
+
controlByField: 'Control By Field',
|
|
535
|
+
allReadOnly: 'All Read Only',
|
|
536
|
+
allRequired: 'All Required',
|
|
537
|
+
mainTableField: 'Main Table Field',
|
|
538
|
+
linkName: 'Link Name',
|
|
539
|
+
linkCode: 'Link Code',
|
|
540
|
+
taskFields: 'Task Fields',
|
|
541
|
+
systemParameter: 'System Parameter',
|
|
542
|
+
personnelScope: 'Personnel Scope',
|
|
543
|
+
mainTableConditions: 'Main Table Conditions',
|
|
544
|
+
subtableCondition: 'Subtable Condition',
|
|
545
|
+
accessControl: 'Access Control',
|
|
546
|
+
formBindingModel: 'Form Binding Model',
|
|
547
|
+
allFields: 'All Fields',
|
|
548
|
+
},
|
|
549
|
+
},
|
|
550
|
+
}
|
|
551
|
+
export default en
|
package/vite.config.js
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { defineConfig } from "vite";
|
|
2
|
+
import vue from "@vitejs/plugin-vue";
|
|
3
|
+
import path from "path";
|
|
4
|
+
//https://vitejs.dev/config/
|
|
5
|
+
export default defineConfig({
|
|
6
|
+
plugins: [vue()],
|
|
7
|
+
build: {
|
|
8
|
+
outDir: "lib",//输出文件名称
|
|
9
|
+
lib: {
|
|
10
|
+
entry: path.resolve(__dirname, "./packages/index.js"),//指定组件编译入口文件
|
|
11
|
+
name: "workflow-editor",//打包js名称
|
|
12
|
+
fileName: "workflow-editor",
|
|
13
|
+
},//库编译模式配置
|
|
14
|
+
rollupOptions: {
|
|
15
|
+
//确保外部化处理那些你不想打包进库的依赖
|
|
16
|
+
external: ["vue"],
|
|
17
|
+
output: {
|
|
18
|
+
//在UMD构建模式下为这些外部化的依赖提供一个全局变量
|
|
19
|
+
globals: {
|
|
20
|
+
vue: "Vue",
|
|
21
|
+
},
|
|
22
|
+
//定义生成css的名称
|
|
23
|
+
assetFileNames: (assetInfo) => {
|
|
24
|
+
if (assetInfo.name == 'style.css')
|
|
25
|
+
return 'workflow-editor.css';//打包的css名称
|
|
26
|
+
return assetInfo.name;
|
|
27
|
+
},
|
|
28
|
+
},
|
|
29
|
+
},//rollup打包配置
|
|
30
|
+
},
|
|
31
|
+
//...其他配置项
|
|
32
|
+
resolve: {
|
|
33
|
+
//忽略后缀名的配置选项,添加.vue选项时要记得原本默认忽略的选项也要手动写入
|
|
34
|
+
extensions: ['.mjs', '.js', '.ts', '.jsx', '.tsx', '.json', '.vue']
|
|
35
|
+
}
|
|
36
|
+
});
|