@ebiz/designer-components 0.0.18-beta.4 → 0.0.18-beta.40

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.
@@ -0,0 +1,466 @@
1
+ <template>
2
+ <div>
3
+ <t-table :data="data" :columns="mergedColumns" :row-key="rowKey" :vertical-align="verticalAlign"
4
+ :horizontal-align="horizontalAlign" :size="size" :bordered="bordered" :stripe="stripe" :hover="hover"
5
+ :height="height" :max-height="maxHeight" :loading="loading" :loading-props="loadingProps" :load-more="loadMore"
6
+ :empty="empty" :table-layout="tableLayout" :cell-empty-content="cellEmptyContent" :pagination="pagination"
7
+ :show-header="showHeader" :header-affixed-top="headerAffixedTop" :footer-affixed-bottom="footerAffixedBottom"
8
+ :top-content="topContent" :bottom-content="bottomContent" :sort="sort" :filter-value="filterValue"
9
+ :filter-icon="filterIcon" :tree="tree" :resizable="resizable" :column-controller="columnController"
10
+ :column-controller-visible="columnControllerVisible" :expandable="expandable" :disabled-sort="disabledSort"
11
+ :virtual-scroll="virtualScroll" :indent="indent" :row-attributes="rowAttributes" :scroll="scroll"
12
+ :show-sort-column-bg="showSortColumnBg" :allow-sort-by-click-header="allowSortByClickHeader" :dragSort="dragSort"
13
+ :select-on-row-click="selectOnRowClick" :merge-cells="mergeCells" :value="value" :row-className="rowClassName"
14
+ :fixed-rows="fixedRows" :highlight-current-row="highlightCurrentRow" :ellipsis-title="ellipsisTitle"
15
+ @page-change="handlePageChange" @sort-change="handleSortChange" @filter-change="handleFilterChange"
16
+ @select-change="handleSelectChange" @expanded-change="handleExpandedChange" @cell-click="handleCellClick"
17
+ @row-click="handleRowClick" @row-hover="handleRowHover" @row-dblclick="handleRowDblclick" @scroll="handleScroll"
18
+ @column-change="handleColumnChange" @expand-all="handleExpandAll" @tree-expand-change="handleTreeExpandChange"
19
+ @display-columns-change="handleDisplayColumnsChange"
20
+ @column-controller-visible-change="handleColumnControllerVisibleChange" @drag-sort="handleDragSort"
21
+ @validate="handleValidate">
22
+
23
+
24
+
25
+ <!-- 顶部内容插槽 -->
26
+ <template v-if="$slots.topContent" #topContent>
27
+ <slot name="topContent"></slot>
28
+ </template>
29
+
30
+ <!-- 底部内容插槽 -->
31
+ <template v-if="$slots.bottomContent" #bottomContent>
32
+ <slot name="bottomContent"></slot>
33
+ </template>
34
+
35
+ <!-- 空状态插槽 -->
36
+ <template v-if="$slots.empty" #empty>
37
+ <slot name="empty"></slot>
38
+ </template>
39
+
40
+ <!-- 加载更多插槽 -->
41
+ <template v-if="$slots.loadMore" #loadMore>
42
+ <slot name="loadMore"></slot>
43
+ </template>
44
+
45
+ <!-- 表头插槽 -->
46
+ <template v-if="$slots.header" #header>
47
+ <slot name="header"></slot>
48
+ </template>
49
+
50
+ <!-- 表尾插槽 -->
51
+ <template v-if="$slots.footer" #footer>
52
+ <slot name="footer"></slot>
53
+ </template>
54
+
55
+ <!-- 自定义单元格插槽 -->
56
+ <template v-for="column in dynamicColumns" :key="column.colKey" v-if="column.cell" #[column.cell]="cellProps">
57
+ <slot :name="`cell-${column.colKey}`" v-bind="cellProps"></slot>
58
+ </template>
59
+ <template v-for="column in dynamicColumns" :key="column.colKey" v-if="column.title" #[column.title]="titleProps">
60
+ <slot :name="`title-${column.colKey}`" v-bind="titleProps"></slot>
61
+ </template>
62
+
63
+ <!-- 展开行插槽 -->
64
+ <template v-if="$slots.expandedRow" #expandedRow="slotProps">
65
+ <slot name="expandedRow" v-bind="slotProps"></slot>
66
+ </template>
67
+
68
+ <!-- 过滤图标插槽 -->
69
+ <template v-if="$slots.filterIcon" #filterIcon="slotProps">
70
+ <slot name="filterIcon" v-bind="slotProps"></slot>
71
+ </template>
72
+
73
+ <!-- 自定义列配置按钮插槽 -->
74
+ <template v-if="$slots.columnController" #columnController="slotProps">
75
+ <slot name="columnController" v-bind="slotProps"></slot>
76
+ </template>
77
+
78
+ <!-- 自定义分页器插槽 -->
79
+ <template v-if="$slots.pagination" #pagination="slotProps">
80
+ <slot name="pagination" v-bind="slotProps"></slot>
81
+ </template>
82
+
83
+ <!-- 默认插槽 -->
84
+ <slot></slot>
85
+ </t-table>
86
+ </div>
87
+
88
+ </template>
89
+
90
+ <script>
91
+ export default {
92
+ name: "EbizTable"
93
+ }
94
+ </script>
95
+
96
+ <script setup>
97
+ import { ref, computed, onMounted, watch, provide } from 'vue';
98
+ import { Table } from 'tdesign-vue-next';
99
+
100
+ const props = defineProps({
101
+ // 表格数据
102
+ data: {
103
+ type: Array,
104
+ default: () => []
105
+ },
106
+ // 表格列配置
107
+ columns: {
108
+ type: Array,
109
+ default: () => []
110
+ },
111
+ // 唯一标识字段
112
+ rowKey: {
113
+ type: String,
114
+ default: 'id'
115
+ },
116
+ // 垂直对齐方式
117
+ verticalAlign: {
118
+ type: String,
119
+ default: 'middle',
120
+ validator: (val) => ['top', 'middle', 'bottom'].includes(val)
121
+ },
122
+ // 水平对齐方式
123
+ horizontalAlign: {
124
+ type: String,
125
+ default: 'left',
126
+ validator: (val) => ['left', 'center', 'right'].includes(val)
127
+ },
128
+ // 表格尺寸
129
+ size: {
130
+ type: String,
131
+ default: 'medium',
132
+ validator: (val) => ['small', 'medium', 'large'].includes(val)
133
+ },
134
+ // 是否显示表格边框
135
+ bordered: {
136
+ type: Boolean,
137
+ default: false
138
+ },
139
+ // 是否显示斑马纹
140
+ stripe: {
141
+ type: Boolean,
142
+ default: false
143
+ },
144
+ // 是否开启悬停效果
145
+ hover: {
146
+ type: Boolean,
147
+ default: true
148
+ },
149
+ // 表格高度
150
+ height: {
151
+ type: [String, Number],
152
+ default: undefined
153
+ },
154
+ // 表格最大高度
155
+ maxHeight: {
156
+ type: [String, Number],
157
+ default: undefined
158
+ },
159
+ // 是否处于加载状态
160
+ loading: {
161
+ type: Boolean,
162
+ default: false
163
+ },
164
+ // 加载状态配置
165
+ loadingProps: {
166
+ type: Object,
167
+ default: () => ({})
168
+ },
169
+ // 加载更多配置
170
+ loadMore: {
171
+ type: [String, Function],
172
+ default: undefined
173
+ },
174
+ // 空数据呈现配置
175
+ empty: {
176
+ type: [String, Function],
177
+ default: undefined
178
+ },
179
+ // 表格布局方式
180
+ tableLayout: {
181
+ type: String,
182
+ default: 'fixed',
183
+ validator: (val) => ['auto', 'fixed'].includes(val)
184
+ },
185
+ // 单元格空内容处理
186
+ cellEmptyContent: {
187
+ type: [String, Function],
188
+ default: undefined
189
+ },
190
+ // 分页配置
191
+ pagination: {
192
+ type: Object,
193
+ default: undefined
194
+ },
195
+ // 是否显示表头
196
+ showHeader: {
197
+ type: Boolean,
198
+ default: true
199
+ },
200
+ // 表头吸顶设置
201
+ headerAffixedTop: {
202
+ type: [Boolean, Object],
203
+ default: false
204
+ },
205
+ // 表尾吸底设置
206
+ footerAffixedBottom: {
207
+ type: [Boolean, Object],
208
+ default: false
209
+ },
210
+ // 表格顶部内容
211
+ topContent: {
212
+ type: [String, Function],
213
+ default: undefined
214
+ },
215
+ // 表格底部内容
216
+ bottomContent: {
217
+ type: [String, Function],
218
+ default: undefined
219
+ },
220
+ // 排序配置
221
+ sort: {
222
+ type: [Object, Array],
223
+ default: undefined
224
+ },
225
+ // 过滤值
226
+ filterValue: {
227
+ type: Object,
228
+ default: undefined
229
+ },
230
+ // 过滤图标
231
+ filterIcon: {
232
+ type: Function,
233
+ default: undefined
234
+ },
235
+ // 树形结构配置
236
+ tree: {
237
+ type: Object,
238
+ default: undefined
239
+ },
240
+ // 是否允许调整列宽
241
+ resizable: {
242
+ type: Boolean,
243
+ default: false
244
+ },
245
+ // 列配置器
246
+ columnController: {
247
+ type: Boolean,
248
+ default: false
249
+ },
250
+ // 列配置器是否显示
251
+ columnControllerVisible: {
252
+ type: Boolean,
253
+ default: undefined
254
+ },
255
+ // 展开行配置
256
+ expandable: {
257
+ type: Object,
258
+ default: undefined
259
+ },
260
+ // 禁用排序
261
+ disabledSort: {
262
+ type: Boolean,
263
+ default: false
264
+ },
265
+ // 虚拟滚动配置
266
+ virtualScroll: {
267
+ type: [Boolean, Object],
268
+ default: false
269
+ },
270
+ // 树形结构缩进
271
+ indent: {
272
+ type: Number,
273
+ default: 24
274
+ },
275
+ // 行属性配置
276
+ rowAttributes: {
277
+ type: [Object, Function],
278
+ default: undefined
279
+ },
280
+ // 滚动配置
281
+ scroll: {
282
+ type: Object,
283
+ default: undefined
284
+ },
285
+ // 是否显示排序列背景色
286
+ showSortColumnBg: {
287
+ type: Boolean,
288
+ default: false
289
+ },
290
+ // 是否允许点击表头排序
291
+ allowSortByClickHeader: {
292
+ type: Boolean,
293
+ default: true
294
+ },
295
+ // 拖拽排序配置
296
+ dragSort: {
297
+ type: String,
298
+ default: '',
299
+ validator: (val) => ['', 'row', 'col', 'row-handler', 'row-handler-col'].includes(val)
300
+ },
301
+ // 点击行是否选中
302
+ selectOnRowClick: {
303
+ type: Boolean,
304
+ default: false
305
+ },
306
+ // 合并单元格配置
307
+ mergeCells: {
308
+ type: Array,
309
+ default: undefined
310
+ },
311
+ // 选中值(多选表格)
312
+ value: {
313
+ type: Array,
314
+ default: undefined
315
+ },
316
+ // 行类名配置
317
+ rowClassName: {
318
+ type: [String, Function],
319
+ default: undefined
320
+ },
321
+ // 固定行配置
322
+ fixedRows: {
323
+ type: Array,
324
+ default: undefined
325
+ },
326
+ // 是否高亮当前行
327
+ highlightCurrentRow: {
328
+ type: Boolean,
329
+ default: false
330
+ },
331
+ // 表头文字超出是否显示省略号
332
+ ellipsisTitle: {
333
+ type: Boolean,
334
+ default: false
335
+ }
336
+ });
337
+
338
+ const emit = defineEmits([
339
+ 'page-change',
340
+ 'sort-change',
341
+ 'filter-change',
342
+ 'select-change',
343
+ 'expanded-change',
344
+ 'cell-click',
345
+ 'row-click',
346
+ 'row-hover',
347
+ 'row-dblclick',
348
+ 'scroll',
349
+ 'column-change',
350
+ 'expand-all',
351
+ 'tree-expand-change',
352
+ 'display-columns-change',
353
+ 'column-controller-visible-change',
354
+ 'drag-sort',
355
+ 'validate'
356
+ ]);
357
+
358
+ // 动态列配置(由EbizTableColumn子组件注册)
359
+ const dynamicColumns = ref([]);
360
+
361
+ // 合并props中的columns和动态注册的columns
362
+ const mergedColumns = computed(() => {
363
+ return [...props.columns, ...dynamicColumns.value];
364
+ });
365
+
366
+ // 提供注册列的方法给子组件
367
+ const registerColumn = (column) => {
368
+ if (!dynamicColumns.value.some(item => item.colKey === column.colKey)) {
369
+ dynamicColumns.value.push(column);
370
+ }
371
+ };
372
+
373
+ // 提供表格上下文给子组件
374
+ provide('tableCtx', {
375
+ registerColumn
376
+ });
377
+
378
+ // 分页变化
379
+ const handlePageChange = (pageInfo) => {
380
+ emit('page-change', pageInfo);
381
+ };
382
+
383
+ // 排序变化
384
+ const handleSortChange = (sort, options) => {
385
+ emit('sort-change', sort, options);
386
+ };
387
+
388
+ // 过滤变化
389
+ const handleFilterChange = (filterValue, col) => {
390
+ emit('filter-change', filterValue, col);
391
+ };
392
+
393
+ // 选择变化
394
+ const handleSelectChange = (selectedRowData, options) => {
395
+ emit('select-change', selectedRowData, options);
396
+ };
397
+
398
+ // 展开行变化
399
+ const handleExpandedChange = (expandedRowData, options) => {
400
+ emit('expanded-change', expandedRowData, options);
401
+ };
402
+
403
+ // 单元格点击
404
+ const handleCellClick = (context) => {
405
+ emit('cell-click', context);
406
+ };
407
+
408
+ // 行点击
409
+ const handleRowClick = (rowData, rowIndex, row) => {
410
+ emit('row-click', rowData, rowIndex, row);
411
+ };
412
+
413
+ // 行悬停
414
+ const handleRowHover = (rowData, rowIndex, row) => {
415
+ emit('row-hover', rowData, rowIndex, row);
416
+ };
417
+
418
+ // 行双击
419
+ const handleRowDblclick = (rowData, rowIndex, row) => {
420
+ emit('row-dblclick', rowData, rowIndex, row);
421
+ };
422
+
423
+ // 表格滚动
424
+ const handleScroll = (params) => {
425
+ emit('scroll', params);
426
+ };
427
+
428
+ // 列变化
429
+ const handleColumnChange = (params) => {
430
+ emit('column-change', params);
431
+ };
432
+
433
+ // 全部展开变化
434
+ const handleExpandAll = (expandAll, options) => {
435
+ emit('expand-all', expandAll, options);
436
+ };
437
+
438
+ // 树形展开变化
439
+ const handleTreeExpandChange = (rowData, options) => {
440
+ emit('tree-expand-change', rowData, options);
441
+ };
442
+
443
+ // 显示列变化
444
+ const handleDisplayColumnsChange = (columns) => {
445
+ emit('display-columns-change', columns);
446
+ };
447
+
448
+ // 列控制器显示状态变化
449
+ const handleColumnControllerVisibleChange = (visible) => {
450
+ emit('column-controller-visible-change', visible);
451
+ };
452
+
453
+ // 拖拽排序变化
454
+ const handleDragSort = (params) => {
455
+ emit('drag-sort', params);
456
+ };
457
+
458
+ // 校验
459
+ const handleValidate = (context) => {
460
+ emit('validate', context);
461
+ };
462
+ </script>
463
+
464
+ <style lang="less" scoped>
465
+ /* 自定义样式 */
466
+ </style>
@@ -0,0 +1,117 @@
1
+ <script setup>
2
+ import { computed, inject, onMounted, getCurrentInstance } from 'vue';
3
+
4
+ const props = defineProps({
5
+ // 列唯一标识
6
+ colKey: {
7
+ type: String,
8
+ required: true
9
+ },
10
+ // 列标题
11
+ title: {
12
+ type: String,
13
+ default: ''
14
+ },
15
+ // 列宽度
16
+ width: {
17
+ type: [String, Number],
18
+ default: ''
19
+ },
20
+ // 最小列宽
21
+ minWidth: {
22
+ type: [String, Number],
23
+ default: ''
24
+ },
25
+ // 水平对齐方式
26
+ align: {
27
+ type: String,
28
+ default: 'left',
29
+ validator: (val) => ['left', 'center', 'right'].includes(val)
30
+ },
31
+ // 固定列位置
32
+ fixed: {
33
+ type: String,
34
+ default: '',
35
+ validator: (val) => ['', 'left', 'right'].includes(val)
36
+ },
37
+ // 列类型
38
+ type: {
39
+ type: String,
40
+ default: '',
41
+ validator: (val) => ['', 'multiple', 'single', 'index', 'expand'].includes(val)
42
+ },
43
+ // 超出省略
44
+ ellipsis: {
45
+ type: Boolean,
46
+ default: false
47
+ },
48
+ // 标题超出省略
49
+ ellipsisTitle: {
50
+ type: Boolean,
51
+ default: false
52
+ },
53
+ // 是否支持排序
54
+ sorter: {
55
+ type: Boolean,
56
+ default: false
57
+ },
58
+ // 过滤配置
59
+ filter: {
60
+ type: Object,
61
+ default: null
62
+ },
63
+ // 自定义类名
64
+ className: {
65
+ type: String,
66
+ default: ''
67
+ },
68
+ // 是否禁用
69
+ disabled: {
70
+ type: Boolean,
71
+ default: false
72
+ }
73
+ });
74
+
75
+ // 获取父级表格组件实例
76
+ const tableCtx = inject('tableCtx', null);
77
+ const instance = getCurrentInstance();
78
+
79
+ // 格式化列配置对象
80
+ const columnConfig = computed(() => {
81
+ return {
82
+ colKey: props.colKey,
83
+ title: props.title,
84
+ width: props.width,
85
+ minWidth: props.minWidth,
86
+ align: props.align,
87
+ fixed: props.fixed || '',
88
+ type: props.type || '',
89
+ ellipsis: props.ellipsis,
90
+ ellipsisTitle: props.ellipsisTitle,
91
+ sorter: props.sorter,
92
+ filter: props.filter,
93
+ className: props.className,
94
+ disabled: props.disabled,
95
+ cell: instance.slots.default ? props.colKey : undefined,
96
+ title: instance.slots.title ? `title-${props.colKey}` : undefined
97
+ };
98
+ });
99
+
100
+ // 在组件挂载时将列配置注册到表格组件
101
+ onMounted(() => {
102
+ if (tableCtx && typeof tableCtx.registerColumn === 'function') {
103
+ tableCtx.registerColumn(columnConfig.value);
104
+ } else {
105
+ console.warn('EbizTableColumn必须在EbizTable内部使用');
106
+ }
107
+ });
108
+ </script>
109
+
110
+ <template>
111
+ <template v-if="$slots.default">
112
+ <slot></slot>
113
+ </template>
114
+ <template v-if="$slots.title">
115
+ <slot name="title"></slot>
116
+ </template>
117
+ </template>