@ebiz/designer-components 0.1.1 → 0.1.4

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.
Files changed (205) hide show
  1. package/README.md +29 -29
  2. package/dist/designer-components.css +1 -1
  3. package/dist/index.mjs +4781 -4773
  4. package/package.json +1 -1
  5. package/src/App.vue +26 -26
  6. package/src/apiService/SIMPLE_DATA_SERVICE.md +284 -284
  7. package/src/apiService/mockDataService.js +115 -115
  8. package/src/apiService/simpleDataService.js +297 -297
  9. package/src/assets/base.css +86 -86
  10. package/src/assets/logo.svg +1 -1
  11. package/src/components/Button.vue +149 -149
  12. package/src/components/DataContainer.vue +40 -40
  13. package/src/components/EbizApproval.vue +332 -332
  14. package/src/components/EbizAutoForm.vue +596 -596
  15. package/src/components/EbizAvatar.vue +115 -115
  16. package/src/components/EbizCheckbox.vue +93 -93
  17. package/src/components/EbizCheckboxGroup.vue +69 -69
  18. package/src/components/EbizDepartmentSelector.vue +144 -144
  19. package/src/components/EbizDescriptions.vue +340 -340
  20. package/src/components/EbizDescriptionsItem.vue +47 -47
  21. package/src/components/EbizDetailBlock.vue +81 -81
  22. package/src/components/EbizDialog.vue +260 -260
  23. package/src/components/EbizDiv.vue +32 -32
  24. package/src/components/EbizDivider.vue +96 -96
  25. package/src/components/EbizEmployeeInfo.vue +138 -138
  26. package/src/components/EbizEmployeeSelector.vue +1095 -1095
  27. package/src/components/EbizFileUpload.vue +238 -238
  28. package/src/components/EbizMap.vue +541 -541
  29. package/src/components/EbizMeetingRoomSelector.vue +664 -664
  30. package/src/components/EbizMobileMeetingRoomSelector.vue +727 -727
  31. package/src/components/EbizOkrTree.vue +99 -99
  32. package/src/components/EbizPageHeader.vue +95 -95
  33. package/src/components/EbizPagination.vue +162 -162
  34. package/src/components/EbizPopconfirm.vue +47 -47
  35. package/src/components/EbizRadio.vue +86 -86
  36. package/src/components/EbizRadioGroup.vue +83 -83
  37. package/src/components/EbizRemoteSelect.vue +232 -232
  38. package/src/components/EbizRouteBreadcrumb.vue +46 -46
  39. package/src/components/EbizSelect.vue +85 -85
  40. package/src/components/EbizSpace.vue +100 -100
  41. package/src/components/EbizStatistic.vue +149 -149
  42. package/src/components/EbizStatsCard.vue +113 -113
  43. package/src/components/EbizSwiper.vue +113 -113
  44. package/src/components/EbizSwiperItem.vue +13 -13
  45. package/src/components/EbizSwitch.vue +85 -85
  46. package/src/components/EbizTabHeader.vue +132 -132
  47. package/src/components/EbizTabPanel.vue +22 -22
  48. package/src/components/EbizTable.vue +469 -469
  49. package/src/components/EbizTableColumn.vue +116 -116
  50. package/src/components/EbizTableSort.vue +179 -179
  51. package/src/components/EbizTabs.vue +142 -142
  52. package/src/components/EbizTdesignButtonDialog.vue +332 -332
  53. package/src/components/EbizTdesignLoading.vue +107 -107
  54. package/src/components/EbizTimePicker.vue +143 -143
  55. package/src/components/EbizTitle.vue +91 -91
  56. package/src/components/EbizTree.vue +152 -152
  57. package/src/components/EbizTreeMergeTable.vue +1414 -1414
  58. package/src/components/EbizTreeSelector.vue +418 -418
  59. package/src/components/EbizVxeTable.vue +290 -290
  60. package/src/components/Form.vue +28 -28
  61. package/src/components/Home.vue +7 -7
  62. package/src/components/MyComponent.vue +39 -39
  63. package/src/components/Table.vue +45 -45
  64. package/src/components/TdesignAlert.vue +115 -115
  65. package/src/components/TdesignButton.vue +135 -135
  66. package/src/components/TdesignCalendar/index.vue +145 -145
  67. package/src/components/TdesignCard.vue +195 -195
  68. package/src/components/TdesignCol.vue +101 -101
  69. package/src/components/TdesignCollapse.vue +142 -142
  70. package/src/components/TdesignCollapsePanel.vue +79 -79
  71. package/src/components/TdesignDatePicker.vue +124 -124
  72. package/src/components/TdesignDescriptions.vue +74 -74
  73. package/src/components/TdesignDescriptionsItem.vue +50 -50
  74. package/src/components/TdesignDialog.vue +225 -225
  75. package/src/components/TdesignForm.vue +138 -138
  76. package/src/components/TdesignFormItem.vue +105 -105
  77. package/src/components/TdesignGrid.vue +55 -55
  78. package/src/components/TdesignIcon.vue +67 -67
  79. package/src/components/TdesignImage.vue +162 -162
  80. package/src/components/TdesignImageViewer.vue +200 -200
  81. package/src/components/TdesignInput.vue +242 -242
  82. package/src/components/TdesignSelect.vue +444 -444
  83. package/src/components/TdesignTag.vue +117 -117
  84. package/src/components/TdesignTextarea.vue +142 -142
  85. package/src/components/TdesignTimeline.vue +58 -58
  86. package/src/components/TdesignTimelineItem.vue +71 -71
  87. package/src/components/TdesignUpload.vue +405 -392
  88. package/src/components/TdesignWatermark.vue +107 -107
  89. package/src/components/ebiz-form/components/cascader.vue +61 -61
  90. package/src/components/ebiz-form/components/checkbox.vue +37 -37
  91. package/src/components/ebiz-form/components/city.vue +137 -137
  92. package/src/components/ebiz-form/components/date-panel.vue +52 -52
  93. package/src/components/ebiz-form/components/date-range-panel.vue +52 -52
  94. package/src/components/ebiz-form/components/date-range.vue +56 -56
  95. package/src/components/ebiz-form/components/date.vue +52 -52
  96. package/src/components/ebiz-form/components/editor-multi-language.vue +47 -47
  97. package/src/components/ebiz-form/components/editor.vue +78 -78
  98. package/src/components/ebiz-form/components/file-multi-language.vue +52 -52
  99. package/src/components/ebiz-form/components/file.vue +149 -149
  100. package/src/components/ebiz-form/components/images-multi-language.vue +52 -52
  101. package/src/components/ebiz-form/components/images.vue +129 -129
  102. package/src/components/ebiz-form/components/img-multi-language.vue +51 -51
  103. package/src/components/ebiz-form/components/img.vue +129 -129
  104. package/src/components/ebiz-form/components/number.vue +50 -50
  105. package/src/components/ebiz-form/components/radio.vue +28 -28
  106. package/src/components/ebiz-form/components/select.vue +119 -119
  107. package/src/components/ebiz-form/components/switch.vue +23 -23
  108. package/src/components/ebiz-form/components/text-multi-language.vue +47 -47
  109. package/src/components/ebiz-form/components/text.vue +52 -52
  110. package/src/components/ebiz-form/components/textarea-multi-language.vue +48 -48
  111. package/src/components/ebiz-form/components/textarea.vue +29 -29
  112. package/src/components/ebiz-form/components/video-multi-language.vue +51 -51
  113. package/src/components/ebiz-form/components/video.vue +97 -97
  114. package/src/components/ebiz-form/index.vue +157 -157
  115. package/src/components/examples/PopconfirmExample.vue +149 -149
  116. package/src/components/icons/IconCommunity.vue +7 -7
  117. package/src/components/icons/IconDocumentation.vue +7 -7
  118. package/src/components/icons/IconEcosystem.vue +7 -7
  119. package/src/components/icons/IconSupport.vue +7 -7
  120. package/src/components/icons/IconTooling.vue +19 -19
  121. package/src/components/senior/EbizSData/index.vue +262 -262
  122. package/src/components/senior/EbizSDialog/index.vue +715 -715
  123. package/src/components/senior/EbizSForm/README.md +157 -157
  124. package/src/components/senior/EbizSForm/index.vue +668 -668
  125. package/src/components/senior/EbizSForm/item.vue +512 -512
  126. package/src/components/senior/EbizSForm/mItems/DateTimePicker.vue +51 -51
  127. package/src/components/senior/EbizSForm/mItems/Picker.vue +63 -63
  128. package/src/index.js +224 -224
  129. package/src/main.js +55 -55
  130. package/src/router/index.js +386 -386
  131. package/src/utils/formatCode.js +24 -24
  132. package/src/utils/generateImportStatement.js +52 -52
  133. package/src/utils/hasJsx.js +25 -25
  134. package/src/utils/index.js +166 -166
  135. package/src/utils/mergeOptions.js +29 -29
  136. package/src/utils/parseRequiredBlocks.js +18 -18
  137. package/src/utils/upload.ts +126 -126
  138. package/src/utils/vue-sfc-validator.js +155 -155
  139. package/src/views/Button.vue +23 -23
  140. package/src/views/CheckboxDemo.vue +104 -104
  141. package/src/views/DataContainer.vue +19 -19
  142. package/src/views/DialogDemo.vue +125 -125
  143. package/src/views/EbizApprovalDemo.vue +76 -76
  144. package/src/views/EbizAutoFormDemo.vue +129 -129
  145. package/src/views/EbizAvatar.vue +223 -223
  146. package/src/views/EbizDepartmentSelectorDemo.vue +169 -169
  147. package/src/views/EbizDetailBlockDemo.vue +30 -30
  148. package/src/views/EbizEmployeeInfo.vue +249 -249
  149. package/src/views/EbizEmployeeSelector.vue +83 -83
  150. package/src/views/EbizMap.vue +201 -201
  151. package/src/views/EbizMeetingRoomSelectorDemo.vue +293 -293
  152. package/src/views/EbizMobileMeetingRoomSelectorDemo.vue +566 -566
  153. package/src/views/EbizRadioDemo.vue +151 -151
  154. package/src/views/EbizSDataDemo.vue +136 -136
  155. package/src/views/EbizSDialogDemo.vue +301 -301
  156. package/src/views/EbizSForm/index.vue +359 -359
  157. package/src/views/EbizSFormDemo.vue +420 -420
  158. package/src/views/EbizSpace.vue +185 -185
  159. package/src/views/EbizSwiper.vue +157 -157
  160. package/src/views/EbizTdesignButtonDialogExample.vue +437 -437
  161. package/src/views/Form.vue +19 -19
  162. package/src/views/GridDemo.vue +238 -238
  163. package/src/views/Home.vue +148 -148
  164. package/src/views/Mindmap.vue +17 -17
  165. package/src/views/MyComponent.vue +19 -19
  166. package/src/views/OkrTree.vue +19 -19
  167. package/src/views/PageHeaderDemo.vue +104 -104
  168. package/src/views/PaginationDemo.vue +96 -96
  169. package/src/views/PermissionBoxDemo.vue +85 -85
  170. package/src/views/PopconfirmDemo.vue +80 -80
  171. package/src/views/RemoteSelect.vue +350 -350
  172. package/src/views/StatisticDemo.vue +190 -190
  173. package/src/views/SwitchDemo.vue +79 -79
  174. package/src/views/Table.vue +19 -19
  175. package/src/views/TableDemo.vue +334 -334
  176. package/src/views/TableSortDemo.vue +143 -143
  177. package/src/views/TableView.vue +68 -68
  178. package/src/views/TabsDemo.vue +282 -282
  179. package/src/views/TagDemo.vue +101 -101
  180. package/src/views/TdesignAlert.vue +98 -98
  181. package/src/views/TdesignButton.vue +190 -190
  182. package/src/views/TdesignCalendar.vue +94 -94
  183. package/src/views/TdesignCard.vue +296 -296
  184. package/src/views/TdesignCollapse.vue +293 -293
  185. package/src/views/TdesignDatePicker.vue +187 -187
  186. package/src/views/TdesignDescriptions.vue +101 -101
  187. package/src/views/TdesignForm.vue +248 -248
  188. package/src/views/TdesignIcon.vue +203 -203
  189. package/src/views/TdesignImage.vue +215 -215
  190. package/src/views/TdesignImageViewer.vue +198 -198
  191. package/src/views/TdesignInput.vue +252 -252
  192. package/src/views/TdesignSelect.vue +473 -473
  193. package/src/views/TdesignSwiper.vue +157 -157
  194. package/src/views/TextareaDemo.vue +93 -93
  195. package/src/views/TimePickerDemo.vue +146 -146
  196. package/src/views/TimelineDemo.vue +160 -160
  197. package/src/views/Title.vue +19 -19
  198. package/src/views/TreeDemo.vue +254 -254
  199. package/src/views/TreeMergeTableDemo.vue +239 -239
  200. package/src/views/TreeSelectorDemo.vue +245 -245
  201. package/src/views/UploadDemo.vue +121 -121
  202. package/src/views/VxeTableDemo.vue +279 -279
  203. package/src/views/WatermarkDemo.vue +85 -85
  204. package/src/components/EbizDropdown.vue +0 -117
  205. package/src/components/EbizDropdownItem.vue +0 -81
@@ -1,716 +1,716 @@
1
- <template>
2
- <div class="ebiz-tdesign-button-dialog">
3
- <div v-if="$slots.trigger" @click="openDialog">
4
- <slot name="trigger"></slot>
5
- </div>
6
- <t-dialog v-model:visible="dialogVisible" :header="title || computedTitle" :width="dialogWidth" :top="dialogTop"
7
- :attach="dialogAttach" :destroy-on-close="dialogDestroyOnClose" :mode="dialogMode" :placement="dialogPlacement"
8
- :show-overlay="dialogShowOverlay" :close-on-esc-keydown="dialogCloseOnEscKeydown"
9
- :close-on-overlay-click="dialogCloseOnOverlayClick" :show-footer="dialogShowFooter" @close="handleDialogClose"
10
- @confirm="handleDialogConfirm" @cancel="handleDialogCancel">
11
- <template #header>
12
- <slot name="header">
13
- <div :class="['dialog-header', dialogType === 'delete' ? 'dialog-header-delete' : '']">
14
- {{ title || computedTitle }}
15
- </div>
16
- </slot>
17
- </template>
18
-
19
- <template #body>
20
- <div v-if="dialogType === 'normal'">
21
- <slot name="body"></slot>
22
- </div>
23
- <div v-else-if="dialogType === 'add'">
24
- <t-form ref="formRef" :colon="colon" :data="localFormData" :disabled="disabled" :label-align="labelAlign"
25
- :label-width="labelWidth" :layout="layout" :reset-type="resetType"
26
- :reset-on-semi-controlled="resetOnSemiControlled" :rules="rules" :show-error-message="showErrorMessage"
27
- :status-icon="statusIcon" :style="customStyle" @reset="handleReset" @submit="handleSubmit"
28
- @validate="handleValidate">
29
- <slot name="body"></slot>
30
- </t-form>
31
- </div>
32
- <div v-else-if="dialogType === 'edit'">
33
- <t-form ref="formRef" :colon="colon" :data="localFormData" :disabled="disabled" :label-align="labelAlign"
34
- :label-width="labelWidth" :layout="layout" :reset-type="resetType"
35
- :reset-on-semi-controlled="resetOnSemiControlled" :rules="rules" :show-error-message="showErrorMessage"
36
- :status-icon="statusIcon" :style="customStyle" @reset="handleReset" @submit="handleSubmit"
37
- @validate="handleValidate">
38
- <slot name="body"></slot>
39
- </t-form>
40
- </div>
41
- <slot v-else-if="dialogType === 'delete'" name="body">
42
- <div class="delete-confirm-content">
43
- <t-icon name="error-circle" size="large" class="delete-icon" />
44
- <p class="delete-message">{{ deleteConfirmMessage }}</p>
45
- </div>
46
- </slot>
47
- </template>
48
- </t-dialog>
49
- </div>
50
- </template>
51
-
52
- <script setup>
53
- import { ref, computed, watch } from 'vue'
54
- import { Dialog as TDialog, MessagePlugin, Icon as TIcon, Form as TForm } from 'tdesign-vue-next'
55
- import dataService from '../../../apiService/simpleDataService'
56
-
57
- const props = defineProps({
58
- // 弹窗类型
59
- dialogType: {
60
- type: String,
61
- default: 'normal', // 'normal', 'add', 'delete'
62
- validator: (value) => ['normal', 'add', 'edit', 'delete'].includes(value)
63
- },
64
-
65
- // 删除确认消息
66
- deleteConfirmMessage: {
67
- type: String,
68
- default: '确定要删除该数据吗?此操作不可逆,请谨慎操作。'
69
- },
70
-
71
- // 按钮基础属性
72
- buttonText: {
73
- type: String,
74
- default: ''
75
- },
76
- // 按钮样式属性
77
- buttonTheme: {
78
- type: String,
79
- default: ''
80
- },
81
- buttonVariant: {
82
- type: String,
83
- default: 'base'
84
- },
85
- buttonSize: {
86
- type: String,
87
- default: 'medium'
88
- },
89
- buttonBlock: {
90
- type: Boolean,
91
- default: false
92
- },
93
- buttonShape: {
94
- type: String,
95
- default: 'rectangle'
96
- },
97
- buttonDisabled: {
98
- type: Boolean,
99
- default: false
100
- },
101
- buttonLoading: {
102
- type: Boolean,
103
- default: false
104
- },
105
- buttonIcon: {
106
- type: String,
107
- default: ''
108
- },
109
-
110
- // 弹窗基础属性
111
- title: {
112
- type: String,
113
- default: ''
114
- },
115
- visible: {
116
- type: Boolean,
117
- default: false
118
- },
119
- confirmText: {
120
- type: String,
121
- default: undefined
122
- },
123
- cancelText: {
124
- type: String,
125
- default: undefined
126
- },
127
-
128
- // 弹窗样式和行为属性
129
- dialogWidth: {
130
- type: [String, Number],
131
- default: '500px'
132
- },
133
- dialogTop: {
134
- type: [String, Number],
135
- default: '15vh'
136
- },
137
- dialogAttach: {
138
- type: [String, Function],
139
- default: 'body'
140
- },
141
- dialogDestroyOnClose: {
142
- type: Boolean,
143
- default: false
144
- },
145
- dialogMode: {
146
- type: String,
147
- default: 'modal'
148
- },
149
- dialogPlacement: {
150
- type: String,
151
- default: 'top'
152
- },
153
- dialogShowOverlay: {
154
- type: Boolean,
155
- default: true
156
- },
157
- dialogCloseOnEscKeydown: {
158
- type: Boolean,
159
- default: true
160
- },
161
- dialogCloseOnOverlayClick: {
162
- type: Boolean,
163
- default: true
164
- },
165
- dialogShowFooter: {
166
- type: Boolean,
167
- default: true
168
- },
169
-
170
- // API配置
171
- apiConfig: {
172
- type: Object,
173
- default: () => null
174
- },
175
-
176
- // 请求参数
177
- params: {
178
- type: Object,
179
- default: () => null
180
- },
181
-
182
- // 表单数据
183
- formData: {
184
- type: Object,
185
- default: () => null
186
- },
187
-
188
- // 表单验证规则
189
- rules: {
190
- type: Object,
191
- default: () => null
192
- },
193
-
194
- // 是否在API调用成功后自动关闭弹窗
195
- closeOnSuccess: {
196
- type: Boolean,
197
- default: true
198
- },
199
- // 是否显示API调用的结果消息
200
- showResultMessage: {
201
- type: Boolean,
202
- default: true
203
- },
204
-
205
- // 表单组件属性
206
- colon: {
207
- type: Boolean,
208
- default: false
209
- },
210
- disabled: {
211
- type: Boolean,
212
- default: false
213
- },
214
- labelAlign: {
215
- type: String,
216
- default: 'right'
217
- },
218
- labelWidth: {
219
- type: [String, Number],
220
- default: '100px'
221
- },
222
- layout: {
223
- type: String,
224
- default: 'vertical'
225
- },
226
- resetType: {
227
- type: String,
228
- default: 'empty'
229
- },
230
- resetOnSemiControlled: {
231
- type: Boolean,
232
- default: false
233
- },
234
- showErrorMessage: {
235
- type: Boolean,
236
- default: true
237
- },
238
- statusIcon: {
239
- type: Boolean,
240
- default: false
241
- },
242
- customStyle: {
243
- type: Object,
244
- default: () => ({})
245
- },
246
-
247
- // 详情API配置,用于编辑模式加载数据
248
- detailApiConfig: {
249
- type: Object,
250
- default: () => null
251
- },
252
- })
253
-
254
- const emit = defineEmits([
255
- 'update:visible',
256
- 'button-click',
257
- 'dialog-close',
258
- 'dialog-confirm',
259
- 'dialog-cancel',
260
- 'api-success',
261
- 'api-error',
262
- 'reset',
263
- 'submit',
264
- 'submit-error',
265
- 'validate',
266
- 'detail-loaded',
267
- 'detail-error'
268
- ])
269
-
270
- const computedTitle = computed(() => {
271
- switch (props.dialogType) {
272
- case 'add': return '添加数据';
273
- case 'delete': return '删除确认';
274
- case 'edit': return '编辑数据';
275
- default: return '标题';
276
- }
277
- })
278
-
279
- // 初始化dialogVisible
280
- const dialogVisible = ref(props.visible)
281
- const apiLoading = ref(false)
282
- const formRef = ref(null)
283
- const currentId = ref(null)
284
- const currentParams = ref({})
285
- // 本地维护一份表单数据的副本
286
- const localFormData = computed(() => {
287
- return props.formData ? { ...props.formData } : {}
288
- })
289
-
290
- // 监听props的visible变化
291
- watch(() => props.visible, (newVal) => {
292
- dialogVisible.value = newVal
293
- })
294
-
295
- // 监听dialogVisible变化,同步更新modelValue
296
- watch(dialogVisible, (newVal) => {
297
- emit('update:visible', newVal)
298
- })
299
-
300
- // 弹窗关闭事件
301
- const handleDialogClose = (e) => {
302
- dialogVisible.value = false
303
- emit('dialog-close', e)
304
- }
305
-
306
- // API调用方法
307
- // 获取错误消息
308
- const getErrorMessage = (error, dialogType) => {
309
- const errorPrefix = dialogType === 'delete'
310
- ? '删除失败'
311
- : dialogType === 'add'
312
- ? '添加失败'
313
- : dialogType === 'edit'
314
- ? '修改失败'
315
- : '操作失败'
316
-
317
- if (!error) return `${errorPrefix}: 未知错误`
318
-
319
- // 处理不同类型的错误
320
- if (error.response && error.response.data) {
321
- // API返回的详细错误信息
322
- const { message, msg, error: errMsg } = error.response.data
323
- return `${errorPrefix}: ${message || msg || errMsg || error.message || '服务器返回错误'}`
324
- } else if (error.message) {
325
- // 标准错误对象
326
- return `${errorPrefix}: ${error.message}`
327
- } else if (typeof error === 'string') {
328
- // 字符串错误
329
- return `${errorPrefix}: ${error}`
330
- } else {
331
- // 未知错误
332
- return `${errorPrefix}: 未知错误`
333
- }
334
- }
335
-
336
- const callApi = async (config = props.apiConfig) => {
337
- if (!config) return null
338
-
339
- try {
340
- apiLoading.value = true
341
-
342
- // 准备请求参数
343
- const fetchParams = { ...localFormData.value, ...props.formData }
344
-
345
- // 如果有ID,添加到请求参数中
346
- if (currentId.value) {
347
- fetchParams.id = currentId.value
348
- }
349
-
350
- // 合并当前参数到请求参数
351
- if (currentParams.value && Object.keys(currentParams.value).length > 0) {
352
- Object.keys(currentParams.value).forEach(key => {
353
- if (key !== 'formData') { // 避免重复添加表单数据
354
- fetchParams[key] = currentParams.value[key]
355
- }
356
- })
357
- }
358
-
359
- // 调用dataService进行API请求,直接使用config
360
- config.apiType = 'PROCESS'
361
- const response = await dataService.fetch({ detailId: fetchParams.detailId || fetchParams.id, saveData: { ...fetchParams } }, config)
362
-
363
- // 显示成功消息
364
- if (props.showResultMessage) {
365
- const successMessage = props.dialogType === 'delete'
366
- ? '删除成功'
367
- : props.dialogType === 'add'
368
- ? '添加成功'
369
- : props.dialogType === 'edit'
370
- ? '修改成功'
371
- : '操作成功'
372
- MessagePlugin.success(successMessage)
373
- }
374
-
375
- // 触发成功事件
376
- emit('api-success', response)
377
-
378
- // 如果设置了成功后关闭,则关闭弹窗
379
- if (props.closeOnSuccess) {
380
- dialogVisible.value = false
381
- }
382
-
383
- return response
384
- } catch (error) {
385
- // 错误处理和错误消息展示
386
- const errorMessage = getErrorMessage(error, props.dialogType)
387
-
388
- // 显示错误消息
389
- if (props.showResultMessage) {
390
- MessagePlugin.error(errorMessage)
391
- }
392
-
393
- // 触发错误事件
394
- emit('api-error', error)
395
-
396
- throw error // 继续抛出错误以便上层捕获
397
- } finally {
398
- apiLoading.value = false
399
- }
400
- }
401
-
402
- // 弹窗确认事件
403
- const handleDialogConfirm = async (e) => {
404
- emit('dialog-confirm', e)
405
-
406
- // 对于非普通类型的弹窗,总是尝试调用API
407
- if (props.dialogType !== 'normal') {
408
- if (props.apiConfig) {
409
-
410
- // 如果是表单类型(添加或编辑),先进行表单校验
411
- if ((props.dialogType === 'add' || props.dialogType === 'edit') && formRef.value) {
412
-
413
- try {
414
- // 显示加载状态
415
- apiLoading.value = true
416
-
417
- // 使用表单的validate方法进行校验
418
- const validateResult = await formRef.value.validate()
419
-
420
- // 校验成功,执行提交操作
421
- if (validateResult === true) {
422
- // 直接调用callApi传入props.apiConfig
423
- await callApi(props.apiConfig)
424
- } else {
425
- // 校验失败,显示第一个错误信息
426
- const firstError = validateResult[Object.keys(validateResult)[0]]?.[0]?.message || '表单校验失败'
427
- MessagePlugin.error(firstError)
428
- emit('submit-error', { validateResult, firstError })
429
- return // 阻止关闭弹窗
430
- }
431
- } catch (error) {
432
- // 校验或API调用过程中的错误
433
- MessagePlugin.error(`操作失败: ${error.message || '未知错误'}`)
434
- emit('submit-error', { error })
435
- return // 阻止关闭弹窗
436
- } finally {
437
- apiLoading.value = false
438
- }
439
- } else if (props.dialogType === 'delete') {
440
- try {
441
- // 显示加载状态
442
- apiLoading.value = true
443
-
444
- // 删除操作直接调用API
445
- await callApi(props.apiConfig)
446
- } catch (error) {
447
- // API调用过程中的错误
448
- MessagePlugin.error(`删除失败: ${error.message || '未知错误'}`)
449
- emit('api-error', error)
450
- return // 阻止关闭弹窗
451
- } finally {
452
- apiLoading.value = false
453
- }
454
- }
455
- } else {
456
- dialogVisible.value = false
457
- }
458
- } else {
459
- // 普通弹窗的行为
460
- if (props.apiConfig) {
461
- try {
462
- // 显示加载状态
463
- apiLoading.value = true
464
-
465
- // 直接调用API,不修改apiConfig
466
- await callApi(props.apiConfig)
467
- } catch (error) {
468
- // API调用过程中的错误
469
- MessagePlugin.error(`操作失败: ${error.message || '未知错误'}`)
470
- emit('api-error', error)
471
- return // 阻止关闭弹窗
472
- } finally {
473
- apiLoading.value = false
474
- }
475
- } else {
476
- dialogVisible.value = false
477
- }
478
- }
479
- }
480
-
481
- // 弹窗取消事件
482
- const handleDialogCancel = (e) => {
483
- dialogVisible.value = false
484
- emit('dialog-cancel', e)
485
- }
486
-
487
- // 表单重置事件
488
- const handleReset = (e) => {
489
- emit('reset', e)
490
- }
491
-
492
- // 表单提交事件
493
- const handleSubmit = async ({ validateResult, firstError, e }) => {
494
- if (validateResult === true) {
495
- emit('submit', { e, formData: localFormData.value })
496
- } else {
497
- MessagePlugin.error(firstError)
498
- emit('submit-error', { validateResult, firstError })
499
- }
500
- }
501
-
502
- // 表单验证事件
503
- const handleValidate = (params) => {
504
- emit('validate', params)
505
- }
506
-
507
- // 加载详情数据
508
- const loadDetailData = async (id) => {
509
- if (!props.detailApiConfig) return null
510
-
511
- try {
512
- // 显示加载状态
513
- apiLoading.value = true
514
-
515
- // 准备请求参数
516
- const fetchParams = { id }
517
-
518
- // 合并当前参数到请求参数
519
- if (currentParams.value && Object.keys(currentParams.value).length > 0) {
520
- // 过滤掉id和formData,避免重复
521
- const { id: _id, formData: _formData, ...otherParams } = currentParams.value
522
- Object.keys(otherParams).forEach(key => {
523
- fetchParams[key] = otherParams[key]
524
- })
525
- }
526
-
527
- // 调用dataService进行API请求,直接使用detailApiConfig
528
- const response = await dataService.fetch(fetchParams, props.detailApiConfig)
529
-
530
- // 获取详情数据
531
- const detailData = response.data || response
532
-
533
- // 更新本地表单数据
534
- if (detailData) {
535
- // 清空现有数据
536
- Object.keys(localFormData.value).forEach(key => {
537
- delete localFormData.value[key]
538
- })
539
-
540
- // 写入新数据
541
- Object.keys(detailData).forEach(key => {
542
- localFormData.value[key] = detailData[key]
543
- })
544
- }
545
-
546
- // 触发加载成功事件
547
- emit('detail-loaded', detailData)
548
- return detailData
549
- } catch (error) {
550
- // 显示错误消息
551
- if (props.showResultMessage) {
552
- MessagePlugin.error(`加载详情失败: ${error.message || '未知错误'}`)
553
- }
554
-
555
- // 触发错误事件
556
- emit('detail-error', error)
557
- return null
558
- } finally {
559
- apiLoading.value = false
560
- }
561
- }
562
-
563
- // 打开弹窗并传递参数
564
- const openDialog = (params = {}) => {
565
- params = { ...params, ...props.params }
566
- // 重置状态
567
- if (props.dialogType === 'add') {
568
- // 添加模式:清空表单数据
569
- Object.keys(localFormData.value).forEach(key => {
570
- delete localFormData.value[key]
571
- })
572
- }
573
-
574
- // 处理传入的表单数据
575
- if (params.formData && (props.dialogType === 'add' || props.dialogType === 'edit')) {
576
- // 更新本地表单数据副本
577
- Object.keys(params.formData).forEach(key => {
578
- localFormData.value[key] = params.formData[key]
579
- })
580
- }
581
-
582
- // 存储其他参数,如删除ID等
583
- if (params.id) {
584
- currentId.value = params.id
585
-
586
- // 如果是编辑模式且有detailApiConfig,加载详情数据
587
- if (props.dialogType === 'edit' && props.detailApiConfig) {
588
- loadDetailData(params.id)
589
- }
590
- } else {
591
- currentId.value = null
592
- }
593
-
594
- // 存储其他自定义参数
595
- currentParams.value = params
596
-
597
- // 打开弹窗
598
- dialogVisible.value = true
599
-
600
- return { success: true, message: '弹窗已打开' }
601
- }
602
-
603
- // 关闭弹窗
604
- const closeDialog = () => {
605
- dialogVisible.value = false
606
- return { success: true, message: '弹窗已关闭' }
607
- }
608
-
609
- // 重置表单数据到初始状态
610
- const resetFormData = () => {
611
- if (formRef.value) {
612
- formRef.value.reset()
613
- emit('reset', { type: 'manual' })
614
- }
615
-
616
- return { success: true, message: '表单已重置' }
617
- }
618
-
619
- // 清空表单数据
620
- const clearFormData = () => {
621
- // 清空表单数据
622
- Object.keys(localFormData.value).forEach(key => {
623
- delete localFormData.value[key]
624
- })
625
-
626
- emit('reset', { type: 'clear' })
627
- return { success: true, message: '表单数据已清空' }
628
- }
629
-
630
- // 设置表单数据
631
- const setFormData = (data) => {
632
- if (!data || typeof data !== 'object') {
633
- return { success: false, message: '数据必须是一个对象' }
634
- }
635
-
636
- // 清空现有数据
637
- Object.keys(localFormData.value).forEach(key => {
638
- delete localFormData.value[key]
639
- })
640
-
641
- // 写入新数据
642
- Object.keys(data).forEach(key => {
643
- localFormData.value[key] = data[key]
644
- })
645
-
646
- return { success: true, message: '表单数据已设置' }
647
- }
648
-
649
- // 获取表单数据
650
- const getFormData = () => {
651
- return { ...localFormData.value }
652
- }
653
-
654
- // 获取表单的当前验证状态
655
- const validateForm = async () => {
656
- if (!formRef.value) {
657
- return { success: false, message: '表单引用不存在' }
658
- }
659
-
660
- try {
661
- const validateResult = await formRef.value.validate()
662
-
663
- if (validateResult === true) {
664
- return { success: true, message: '表单验证通过', data: getFormData() }
665
- } else {
666
- const firstError = validateResult[Object.keys(validateResult)[0]]?.[0]?.message || '表单校验失败'
667
- return { success: false, message: firstError, errors: validateResult }
668
- }
669
- } catch (error) {
670
- return { success: false, message: error.message || '表单验证过程中发生错误' }
671
- }
672
- }
673
-
674
- // 暴露给父组件的方法
675
- defineExpose({
676
- openDialog,
677
- closeDialog,
678
- resetFormData,
679
- clearFormData,
680
- setFormData,
681
- getFormData,
682
- validateForm,
683
- loadDetailData,
684
- currentId,
685
- currentParams,
686
- formRef
687
- })
688
- </script>
689
-
690
- <style scoped>
691
- .ebiz-tdesign-button-dialog {
692
- display: inline-block;
693
- }
694
-
695
- .dialog-header-delete {
696
- color: var(--td-error-color, #e34d59);
697
- }
698
-
699
- .delete-confirm-content {
700
- display: flex;
701
- align-items: center;
702
- padding: 16px;
703
- }
704
-
705
- .delete-icon {
706
- font-size: 24px;
707
- color: var(--td-error-color, #e34d59);
708
- margin-right: 12px;
709
- }
710
-
711
- .delete-message {
712
- margin: 0;
713
- font-size: 14px;
714
- line-height: 22px;
715
- }
1
+ <template>
2
+ <div class="ebiz-tdesign-button-dialog">
3
+ <div v-if="$slots.trigger" @click="openDialog">
4
+ <slot name="trigger"></slot>
5
+ </div>
6
+ <t-dialog v-model:visible="dialogVisible" :header="title || computedTitle" :width="dialogWidth" :top="dialogTop"
7
+ :attach="dialogAttach" :destroy-on-close="dialogDestroyOnClose" :mode="dialogMode" :placement="dialogPlacement"
8
+ :show-overlay="dialogShowOverlay" :close-on-esc-keydown="dialogCloseOnEscKeydown"
9
+ :close-on-overlay-click="dialogCloseOnOverlayClick" :show-footer="dialogShowFooter" @close="handleDialogClose"
10
+ @confirm="handleDialogConfirm" @cancel="handleDialogCancel">
11
+ <template #header>
12
+ <slot name="header">
13
+ <div :class="['dialog-header', dialogType === 'delete' ? 'dialog-header-delete' : '']">
14
+ {{ title || computedTitle }}
15
+ </div>
16
+ </slot>
17
+ </template>
18
+
19
+ <template #body>
20
+ <div v-if="dialogType === 'normal'">
21
+ <slot name="body"></slot>
22
+ </div>
23
+ <div v-else-if="dialogType === 'add'">
24
+ <t-form ref="formRef" :colon="colon" :data="localFormData" :disabled="disabled" :label-align="labelAlign"
25
+ :label-width="labelWidth" :layout="layout" :reset-type="resetType"
26
+ :reset-on-semi-controlled="resetOnSemiControlled" :rules="rules" :show-error-message="showErrorMessage"
27
+ :status-icon="statusIcon" :style="customStyle" @reset="handleReset" @submit="handleSubmit"
28
+ @validate="handleValidate">
29
+ <slot name="body"></slot>
30
+ </t-form>
31
+ </div>
32
+ <div v-else-if="dialogType === 'edit'">
33
+ <t-form ref="formRef" :colon="colon" :data="localFormData" :disabled="disabled" :label-align="labelAlign"
34
+ :label-width="labelWidth" :layout="layout" :reset-type="resetType"
35
+ :reset-on-semi-controlled="resetOnSemiControlled" :rules="rules" :show-error-message="showErrorMessage"
36
+ :status-icon="statusIcon" :style="customStyle" @reset="handleReset" @submit="handleSubmit"
37
+ @validate="handleValidate">
38
+ <slot name="body"></slot>
39
+ </t-form>
40
+ </div>
41
+ <slot v-else-if="dialogType === 'delete'" name="body">
42
+ <div class="delete-confirm-content">
43
+ <t-icon name="error-circle" size="large" class="delete-icon" />
44
+ <p class="delete-message">{{ deleteConfirmMessage }}</p>
45
+ </div>
46
+ </slot>
47
+ </template>
48
+ </t-dialog>
49
+ </div>
50
+ </template>
51
+
52
+ <script setup>
53
+ import { ref, computed, watch } from 'vue'
54
+ import { Dialog as TDialog, MessagePlugin, Icon as TIcon, Form as TForm } from 'tdesign-vue-next'
55
+ import dataService from '../../../apiService/simpleDataService'
56
+
57
+ const props = defineProps({
58
+ // 弹窗类型
59
+ dialogType: {
60
+ type: String,
61
+ default: 'normal', // 'normal', 'add', 'delete'
62
+ validator: (value) => ['normal', 'add', 'edit', 'delete'].includes(value)
63
+ },
64
+
65
+ // 删除确认消息
66
+ deleteConfirmMessage: {
67
+ type: String,
68
+ default: '确定要删除该数据吗?此操作不可逆,请谨慎操作。'
69
+ },
70
+
71
+ // 按钮基础属性
72
+ buttonText: {
73
+ type: String,
74
+ default: ''
75
+ },
76
+ // 按钮样式属性
77
+ buttonTheme: {
78
+ type: String,
79
+ default: ''
80
+ },
81
+ buttonVariant: {
82
+ type: String,
83
+ default: 'base'
84
+ },
85
+ buttonSize: {
86
+ type: String,
87
+ default: 'medium'
88
+ },
89
+ buttonBlock: {
90
+ type: Boolean,
91
+ default: false
92
+ },
93
+ buttonShape: {
94
+ type: String,
95
+ default: 'rectangle'
96
+ },
97
+ buttonDisabled: {
98
+ type: Boolean,
99
+ default: false
100
+ },
101
+ buttonLoading: {
102
+ type: Boolean,
103
+ default: false
104
+ },
105
+ buttonIcon: {
106
+ type: String,
107
+ default: ''
108
+ },
109
+
110
+ // 弹窗基础属性
111
+ title: {
112
+ type: String,
113
+ default: ''
114
+ },
115
+ visible: {
116
+ type: Boolean,
117
+ default: false
118
+ },
119
+ confirmText: {
120
+ type: String,
121
+ default: undefined
122
+ },
123
+ cancelText: {
124
+ type: String,
125
+ default: undefined
126
+ },
127
+
128
+ // 弹窗样式和行为属性
129
+ dialogWidth: {
130
+ type: [String, Number],
131
+ default: '500px'
132
+ },
133
+ dialogTop: {
134
+ type: [String, Number],
135
+ default: '15vh'
136
+ },
137
+ dialogAttach: {
138
+ type: [String, Function],
139
+ default: 'body'
140
+ },
141
+ dialogDestroyOnClose: {
142
+ type: Boolean,
143
+ default: false
144
+ },
145
+ dialogMode: {
146
+ type: String,
147
+ default: 'modal'
148
+ },
149
+ dialogPlacement: {
150
+ type: String,
151
+ default: 'top'
152
+ },
153
+ dialogShowOverlay: {
154
+ type: Boolean,
155
+ default: true
156
+ },
157
+ dialogCloseOnEscKeydown: {
158
+ type: Boolean,
159
+ default: true
160
+ },
161
+ dialogCloseOnOverlayClick: {
162
+ type: Boolean,
163
+ default: true
164
+ },
165
+ dialogShowFooter: {
166
+ type: Boolean,
167
+ default: true
168
+ },
169
+
170
+ // API配置
171
+ apiConfig: {
172
+ type: Object,
173
+ default: () => null
174
+ },
175
+
176
+ // 请求参数
177
+ params: {
178
+ type: Object,
179
+ default: () => null
180
+ },
181
+
182
+ // 表单数据
183
+ formData: {
184
+ type: Object,
185
+ default: () => null
186
+ },
187
+
188
+ // 表单验证规则
189
+ rules: {
190
+ type: Object,
191
+ default: () => null
192
+ },
193
+
194
+ // 是否在API调用成功后自动关闭弹窗
195
+ closeOnSuccess: {
196
+ type: Boolean,
197
+ default: true
198
+ },
199
+ // 是否显示API调用的结果消息
200
+ showResultMessage: {
201
+ type: Boolean,
202
+ default: true
203
+ },
204
+
205
+ // 表单组件属性
206
+ colon: {
207
+ type: Boolean,
208
+ default: false
209
+ },
210
+ disabled: {
211
+ type: Boolean,
212
+ default: false
213
+ },
214
+ labelAlign: {
215
+ type: String,
216
+ default: 'right'
217
+ },
218
+ labelWidth: {
219
+ type: [String, Number],
220
+ default: '100px'
221
+ },
222
+ layout: {
223
+ type: String,
224
+ default: 'vertical'
225
+ },
226
+ resetType: {
227
+ type: String,
228
+ default: 'empty'
229
+ },
230
+ resetOnSemiControlled: {
231
+ type: Boolean,
232
+ default: false
233
+ },
234
+ showErrorMessage: {
235
+ type: Boolean,
236
+ default: true
237
+ },
238
+ statusIcon: {
239
+ type: Boolean,
240
+ default: false
241
+ },
242
+ customStyle: {
243
+ type: Object,
244
+ default: () => ({})
245
+ },
246
+
247
+ // 详情API配置,用于编辑模式加载数据
248
+ detailApiConfig: {
249
+ type: Object,
250
+ default: () => null
251
+ },
252
+ })
253
+
254
+ const emit = defineEmits([
255
+ 'update:visible',
256
+ 'button-click',
257
+ 'dialog-close',
258
+ 'dialog-confirm',
259
+ 'dialog-cancel',
260
+ 'api-success',
261
+ 'api-error',
262
+ 'reset',
263
+ 'submit',
264
+ 'submit-error',
265
+ 'validate',
266
+ 'detail-loaded',
267
+ 'detail-error'
268
+ ])
269
+
270
+ const computedTitle = computed(() => {
271
+ switch (props.dialogType) {
272
+ case 'add': return '添加数据';
273
+ case 'delete': return '删除确认';
274
+ case 'edit': return '编辑数据';
275
+ default: return '标题';
276
+ }
277
+ })
278
+
279
+ // 初始化dialogVisible
280
+ const dialogVisible = ref(props.visible)
281
+ const apiLoading = ref(false)
282
+ const formRef = ref(null)
283
+ const currentId = ref(null)
284
+ const currentParams = ref({})
285
+ // 本地维护一份表单数据的副本
286
+ const localFormData = computed(() => {
287
+ return props.formData ? { ...props.formData } : {}
288
+ })
289
+
290
+ // 监听props的visible变化
291
+ watch(() => props.visible, (newVal) => {
292
+ dialogVisible.value = newVal
293
+ })
294
+
295
+ // 监听dialogVisible变化,同步更新modelValue
296
+ watch(dialogVisible, (newVal) => {
297
+ emit('update:visible', newVal)
298
+ })
299
+
300
+ // 弹窗关闭事件
301
+ const handleDialogClose = (e) => {
302
+ dialogVisible.value = false
303
+ emit('dialog-close', e)
304
+ }
305
+
306
+ // API调用方法
307
+ // 获取错误消息
308
+ const getErrorMessage = (error, dialogType) => {
309
+ const errorPrefix = dialogType === 'delete'
310
+ ? '删除失败'
311
+ : dialogType === 'add'
312
+ ? '添加失败'
313
+ : dialogType === 'edit'
314
+ ? '修改失败'
315
+ : '操作失败'
316
+
317
+ if (!error) return `${errorPrefix}: 未知错误`
318
+
319
+ // 处理不同类型的错误
320
+ if (error.response && error.response.data) {
321
+ // API返回的详细错误信息
322
+ const { message, msg, error: errMsg } = error.response.data
323
+ return `${errorPrefix}: ${message || msg || errMsg || error.message || '服务器返回错误'}`
324
+ } else if (error.message) {
325
+ // 标准错误对象
326
+ return `${errorPrefix}: ${error.message}`
327
+ } else if (typeof error === 'string') {
328
+ // 字符串错误
329
+ return `${errorPrefix}: ${error}`
330
+ } else {
331
+ // 未知错误
332
+ return `${errorPrefix}: 未知错误`
333
+ }
334
+ }
335
+
336
+ const callApi = async (config = props.apiConfig) => {
337
+ if (!config) return null
338
+
339
+ try {
340
+ apiLoading.value = true
341
+
342
+ // 准备请求参数
343
+ const fetchParams = { ...localFormData.value, ...props.formData }
344
+
345
+ // 如果有ID,添加到请求参数中
346
+ if (currentId.value) {
347
+ fetchParams.id = currentId.value
348
+ }
349
+
350
+ // 合并当前参数到请求参数
351
+ if (currentParams.value && Object.keys(currentParams.value).length > 0) {
352
+ Object.keys(currentParams.value).forEach(key => {
353
+ if (key !== 'formData') { // 避免重复添加表单数据
354
+ fetchParams[key] = currentParams.value[key]
355
+ }
356
+ })
357
+ }
358
+
359
+ // 调用dataService进行API请求,直接使用config
360
+ config.apiType = 'PROCESS'
361
+ const response = await dataService.fetch({ detailId: fetchParams.detailId || fetchParams.id, saveData: { ...fetchParams } }, config)
362
+
363
+ // 显示成功消息
364
+ if (props.showResultMessage) {
365
+ const successMessage = props.dialogType === 'delete'
366
+ ? '删除成功'
367
+ : props.dialogType === 'add'
368
+ ? '添加成功'
369
+ : props.dialogType === 'edit'
370
+ ? '修改成功'
371
+ : '操作成功'
372
+ MessagePlugin.success(successMessage)
373
+ }
374
+
375
+ // 触发成功事件
376
+ emit('api-success', response)
377
+
378
+ // 如果设置了成功后关闭,则关闭弹窗
379
+ if (props.closeOnSuccess) {
380
+ dialogVisible.value = false
381
+ }
382
+
383
+ return response
384
+ } catch (error) {
385
+ // 错误处理和错误消息展示
386
+ const errorMessage = getErrorMessage(error, props.dialogType)
387
+
388
+ // 显示错误消息
389
+ if (props.showResultMessage) {
390
+ MessagePlugin.error(errorMessage)
391
+ }
392
+
393
+ // 触发错误事件
394
+ emit('api-error', error)
395
+
396
+ throw error // 继续抛出错误以便上层捕获
397
+ } finally {
398
+ apiLoading.value = false
399
+ }
400
+ }
401
+
402
+ // 弹窗确认事件
403
+ const handleDialogConfirm = async (e) => {
404
+ emit('dialog-confirm', e)
405
+
406
+ // 对于非普通类型的弹窗,总是尝试调用API
407
+ if (props.dialogType !== 'normal') {
408
+ if (props.apiConfig) {
409
+
410
+ // 如果是表单类型(添加或编辑),先进行表单校验
411
+ if ((props.dialogType === 'add' || props.dialogType === 'edit') && formRef.value) {
412
+
413
+ try {
414
+ // 显示加载状态
415
+ apiLoading.value = true
416
+
417
+ // 使用表单的validate方法进行校验
418
+ const validateResult = await formRef.value.validate()
419
+
420
+ // 校验成功,执行提交操作
421
+ if (validateResult === true) {
422
+ // 直接调用callApi传入props.apiConfig
423
+ await callApi(props.apiConfig)
424
+ } else {
425
+ // 校验失败,显示第一个错误信息
426
+ const firstError = validateResult[Object.keys(validateResult)[0]]?.[0]?.message || '表单校验失败'
427
+ MessagePlugin.error(firstError)
428
+ emit('submit-error', { validateResult, firstError })
429
+ return // 阻止关闭弹窗
430
+ }
431
+ } catch (error) {
432
+ // 校验或API调用过程中的错误
433
+ MessagePlugin.error(`操作失败: ${error.message || '未知错误'}`)
434
+ emit('submit-error', { error })
435
+ return // 阻止关闭弹窗
436
+ } finally {
437
+ apiLoading.value = false
438
+ }
439
+ } else if (props.dialogType === 'delete') {
440
+ try {
441
+ // 显示加载状态
442
+ apiLoading.value = true
443
+
444
+ // 删除操作直接调用API
445
+ await callApi(props.apiConfig)
446
+ } catch (error) {
447
+ // API调用过程中的错误
448
+ MessagePlugin.error(`删除失败: ${error.message || '未知错误'}`)
449
+ emit('api-error', error)
450
+ return // 阻止关闭弹窗
451
+ } finally {
452
+ apiLoading.value = false
453
+ }
454
+ }
455
+ } else {
456
+ dialogVisible.value = false
457
+ }
458
+ } else {
459
+ // 普通弹窗的行为
460
+ if (props.apiConfig) {
461
+ try {
462
+ // 显示加载状态
463
+ apiLoading.value = true
464
+
465
+ // 直接调用API,不修改apiConfig
466
+ await callApi(props.apiConfig)
467
+ } catch (error) {
468
+ // API调用过程中的错误
469
+ MessagePlugin.error(`操作失败: ${error.message || '未知错误'}`)
470
+ emit('api-error', error)
471
+ return // 阻止关闭弹窗
472
+ } finally {
473
+ apiLoading.value = false
474
+ }
475
+ } else {
476
+ dialogVisible.value = false
477
+ }
478
+ }
479
+ }
480
+
481
+ // 弹窗取消事件
482
+ const handleDialogCancel = (e) => {
483
+ dialogVisible.value = false
484
+ emit('dialog-cancel', e)
485
+ }
486
+
487
+ // 表单重置事件
488
+ const handleReset = (e) => {
489
+ emit('reset', e)
490
+ }
491
+
492
+ // 表单提交事件
493
+ const handleSubmit = async ({ validateResult, firstError, e }) => {
494
+ if (validateResult === true) {
495
+ emit('submit', { e, formData: localFormData.value })
496
+ } else {
497
+ MessagePlugin.error(firstError)
498
+ emit('submit-error', { validateResult, firstError })
499
+ }
500
+ }
501
+
502
+ // 表单验证事件
503
+ const handleValidate = (params) => {
504
+ emit('validate', params)
505
+ }
506
+
507
+ // 加载详情数据
508
+ const loadDetailData = async (id) => {
509
+ if (!props.detailApiConfig) return null
510
+
511
+ try {
512
+ // 显示加载状态
513
+ apiLoading.value = true
514
+
515
+ // 准备请求参数
516
+ const fetchParams = { id }
517
+
518
+ // 合并当前参数到请求参数
519
+ if (currentParams.value && Object.keys(currentParams.value).length > 0) {
520
+ // 过滤掉id和formData,避免重复
521
+ const { id: _id, formData: _formData, ...otherParams } = currentParams.value
522
+ Object.keys(otherParams).forEach(key => {
523
+ fetchParams[key] = otherParams[key]
524
+ })
525
+ }
526
+
527
+ // 调用dataService进行API请求,直接使用detailApiConfig
528
+ const response = await dataService.fetch(fetchParams, props.detailApiConfig)
529
+
530
+ // 获取详情数据
531
+ const detailData = response.data || response
532
+
533
+ // 更新本地表单数据
534
+ if (detailData) {
535
+ // 清空现有数据
536
+ Object.keys(localFormData.value).forEach(key => {
537
+ delete localFormData.value[key]
538
+ })
539
+
540
+ // 写入新数据
541
+ Object.keys(detailData).forEach(key => {
542
+ localFormData.value[key] = detailData[key]
543
+ })
544
+ }
545
+
546
+ // 触发加载成功事件
547
+ emit('detail-loaded', detailData)
548
+ return detailData
549
+ } catch (error) {
550
+ // 显示错误消息
551
+ if (props.showResultMessage) {
552
+ MessagePlugin.error(`加载详情失败: ${error.message || '未知错误'}`)
553
+ }
554
+
555
+ // 触发错误事件
556
+ emit('detail-error', error)
557
+ return null
558
+ } finally {
559
+ apiLoading.value = false
560
+ }
561
+ }
562
+
563
+ // 打开弹窗并传递参数
564
+ const openDialog = (params = {}) => {
565
+ params = { ...params, ...props.params }
566
+ // 重置状态
567
+ if (props.dialogType === 'add') {
568
+ // 添加模式:清空表单数据
569
+ Object.keys(localFormData.value).forEach(key => {
570
+ delete localFormData.value[key]
571
+ })
572
+ }
573
+
574
+ // 处理传入的表单数据
575
+ if (params.formData && (props.dialogType === 'add' || props.dialogType === 'edit')) {
576
+ // 更新本地表单数据副本
577
+ Object.keys(params.formData).forEach(key => {
578
+ localFormData.value[key] = params.formData[key]
579
+ })
580
+ }
581
+
582
+ // 存储其他参数,如删除ID等
583
+ if (params.id) {
584
+ currentId.value = params.id
585
+
586
+ // 如果是编辑模式且有detailApiConfig,加载详情数据
587
+ if (props.dialogType === 'edit' && props.detailApiConfig) {
588
+ loadDetailData(params.id)
589
+ }
590
+ } else {
591
+ currentId.value = null
592
+ }
593
+
594
+ // 存储其他自定义参数
595
+ currentParams.value = params
596
+
597
+ // 打开弹窗
598
+ dialogVisible.value = true
599
+
600
+ return { success: true, message: '弹窗已打开' }
601
+ }
602
+
603
+ // 关闭弹窗
604
+ const closeDialog = () => {
605
+ dialogVisible.value = false
606
+ return { success: true, message: '弹窗已关闭' }
607
+ }
608
+
609
+ // 重置表单数据到初始状态
610
+ const resetFormData = () => {
611
+ if (formRef.value) {
612
+ formRef.value.reset()
613
+ emit('reset', { type: 'manual' })
614
+ }
615
+
616
+ return { success: true, message: '表单已重置' }
617
+ }
618
+
619
+ // 清空表单数据
620
+ const clearFormData = () => {
621
+ // 清空表单数据
622
+ Object.keys(localFormData.value).forEach(key => {
623
+ delete localFormData.value[key]
624
+ })
625
+
626
+ emit('reset', { type: 'clear' })
627
+ return { success: true, message: '表单数据已清空' }
628
+ }
629
+
630
+ // 设置表单数据
631
+ const setFormData = (data) => {
632
+ if (!data || typeof data !== 'object') {
633
+ return { success: false, message: '数据必须是一个对象' }
634
+ }
635
+
636
+ // 清空现有数据
637
+ Object.keys(localFormData.value).forEach(key => {
638
+ delete localFormData.value[key]
639
+ })
640
+
641
+ // 写入新数据
642
+ Object.keys(data).forEach(key => {
643
+ localFormData.value[key] = data[key]
644
+ })
645
+
646
+ return { success: true, message: '表单数据已设置' }
647
+ }
648
+
649
+ // 获取表单数据
650
+ const getFormData = () => {
651
+ return { ...localFormData.value }
652
+ }
653
+
654
+ // 获取表单的当前验证状态
655
+ const validateForm = async () => {
656
+ if (!formRef.value) {
657
+ return { success: false, message: '表单引用不存在' }
658
+ }
659
+
660
+ try {
661
+ const validateResult = await formRef.value.validate()
662
+
663
+ if (validateResult === true) {
664
+ return { success: true, message: '表单验证通过', data: getFormData() }
665
+ } else {
666
+ const firstError = validateResult[Object.keys(validateResult)[0]]?.[0]?.message || '表单校验失败'
667
+ return { success: false, message: firstError, errors: validateResult }
668
+ }
669
+ } catch (error) {
670
+ return { success: false, message: error.message || '表单验证过程中发生错误' }
671
+ }
672
+ }
673
+
674
+ // 暴露给父组件的方法
675
+ defineExpose({
676
+ openDialog,
677
+ closeDialog,
678
+ resetFormData,
679
+ clearFormData,
680
+ setFormData,
681
+ getFormData,
682
+ validateForm,
683
+ loadDetailData,
684
+ currentId,
685
+ currentParams,
686
+ formRef
687
+ })
688
+ </script>
689
+
690
+ <style scoped>
691
+ .ebiz-tdesign-button-dialog {
692
+ display: inline-block;
693
+ }
694
+
695
+ .dialog-header-delete {
696
+ color: var(--td-error-color, #e34d59);
697
+ }
698
+
699
+ .delete-confirm-content {
700
+ display: flex;
701
+ align-items: center;
702
+ padding: 16px;
703
+ }
704
+
705
+ .delete-icon {
706
+ font-size: 24px;
707
+ color: var(--td-error-color, #e34d59);
708
+ margin-right: 12px;
709
+ }
710
+
711
+ .delete-message {
712
+ margin: 0;
713
+ font-size: 14px;
714
+ line-height: 22px;
715
+ }
716
716
  </style>