1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
| import type { Recordable } from '@vben/types';
|
| import { h } from 'vue';
|
| import { IconifyIcon } from '@vben/icons';
| import { $te } from '@vben/locales';
| import { setupVbenVxeTable, useVbenVxeGrid } from '@vben/plugins/vxe-table';
| import { get, isFunction, isString } from '@vben/utils';
|
| import { objectOmit } from '@vueuse/core';
| import { Button, Image, Popconfirm, Switch, Tag } from 'ant-design-vue';
|
| import { $t } from '#/locales';
|
| import { useVbenForm } from './form';
|
| setupVbenVxeTable({
| configVxeTable: (vxeUI) => {
| vxeUI.setConfig({
| grid: {
| align: 'center',
| border: false,
| columnConfig: {
| resizable: true,
| },
|
| formConfig: {
| // 全局禁用vxe-table的表单配置,使用formOptions
| enabled: false,
| },
| minHeight: 180,
| proxyConfig: {
| autoLoad: true,
| response: {
| result: 'items',
| total: 'total',
| list: '',
| },
| showActiveMsg: true,
| showResponseMsg: false,
| },
| round: true,
| showOverflow: true,
| size: 'small',
| },
| });
|
| /**
| * 解决vxeTable在热更新时可能会出错的问题
| */
| vxeUI.renderer.forEach((_item, key) => {
| if (key.startsWith('Cell')) {
| vxeUI.renderer.delete(key);
| }
| });
|
| // 表格配置项可以用 cellRender: { name: 'CellImage' },
| vxeUI.renderer.add('CellImage', {
| renderTableDefault(_renderOpts, params) {
| const { column, row } = params;
| return h(Image, { src: row[column.field] });
| },
| });
|
| // 表格配置项可以用 cellRender: { name: 'CellLink' },
| vxeUI.renderer.add('CellLink', {
| renderTableDefault(renderOpts) {
| const { props } = renderOpts;
| return h(
| Button,
| { size: 'small', type: 'link' },
| { default: () => props?.text },
| );
| },
| });
|
| // 单元格渲染: Tag
| vxeUI.renderer.add('CellTag', {
| renderTableDefault({ options, props }, { column, row }) {
| const value = get(row, column.field);
| const tagOptions = options ?? [
| { color: 'success', label: $t('common.enabled'), value: 1 },
| { color: 'error', label: $t('common.disabled'), value: 0 },
| ];
| const tagItem = tagOptions.find((item) => item.value === value);
| return h(
| Tag,
| {
| ...props,
| ...objectOmit(tagItem ?? {}, ['label']),
| },
| { default: () => tagItem?.label ?? value },
| );
| },
| });
|
| vxeUI.renderer.add('CellSwitch', {
| renderTableDefault({ attrs, props }, { column, row }) {
| const loadingKey = `__loading_${column.field}`;
| const finallyProps = {
| checkedChildren: $t('common.enabled'),
| checkedValue: 1,
| unCheckedChildren: $t('common.disabled'),
| unCheckedValue: 0,
| ...props,
| checked: row[column.field],
| loading: row[loadingKey] ?? false,
| 'onUpdate:checked': onChange,
| };
| async function onChange(newVal: any) {
| row[loadingKey] = true;
| try {
| const result = await attrs?.beforeChange?.(newVal, row);
| if (result !== false) {
| row[column.field] = newVal;
| }
| } finally {
| row[loadingKey] = false;
| }
| }
| return h(Switch, finallyProps);
| },
| });
|
| /**
| * 注册表格的操作按钮渲染器
| */
| vxeUI.renderer.add('CellOperation', {
| renderTableDefault({ attrs, options, props }, { column, row }) {
| const defaultProps = { size: 'small', type: 'link', ...props };
| let align = 'end';
| switch (column.align) {
| case 'center': {
| align = 'center';
| break;
| }
| case 'left': {
| align = 'start';
| break;
| }
| default: {
| align = 'end';
| break;
| }
| }
| const presets: Recordable<Recordable<any>> = {
| delete: {
| danger: true,
| text: $t('common.delete'),
| },
| edit: {
| text: $t('common.edit'),
| },
| };
| const operations: Array<Recordable<any>> = (
| options || ['edit', 'delete']
| )
| .map((opt) => {
| if (isString(opt)) {
| return presets[opt]
| ? { code: opt, ...presets[opt], ...defaultProps }
| : {
| code: opt,
| text: $te(`common.${opt}`) ? $t(`common.${opt}`) : opt,
| ...defaultProps,
| };
| } else {
| return { ...defaultProps, ...presets[opt.code], ...opt };
| }
| })
| .map((opt) => {
| const optBtn: Recordable<any> = {};
| Object.keys(opt).forEach((key) => {
| optBtn[key] = isFunction(opt[key]) ? opt[key](row) : opt[key];
| });
| return optBtn;
| })
| .filter((opt) => opt.show !== false);
|
| function renderBtn(opt: Recordable<any>, listen = true) {
| return h(
| Button,
| {
| ...props,
| ...opt,
| icon: undefined,
| onClick: listen
| ? () =>
| attrs?.onClick?.({
| code: opt.code,
| row,
| })
| : undefined,
| },
| {
| default: () => {
| const content = [];
| if (opt.icon) {
| content.push(
| h(IconifyIcon, { class: 'size-5', icon: opt.icon }),
| );
| }
| content.push(opt.text);
| return content;
| },
| },
| );
| }
|
| function renderConfirm(opt: Recordable<any>) {
| return h(
| Popconfirm,
| {
| getPopupContainer(el) {
| return el.closest('tbody') || document.body;
| },
| placement: 'topLeft',
| title: $t('ui.actionTitle.delete', [attrs?.nameTitle || '']),
| ...props,
| ...opt,
| icon: undefined,
| onConfirm: () => {
| attrs?.onClick?.({
| code: opt.code,
| row,
| });
| },
| },
| {
| default: () => renderBtn({ ...opt }, false),
| description: () =>
| h(
| 'div',
| { class: 'truncate' },
| $t('ui.actionMessage.deleteConfirm', [
| row[attrs?.nameField || 'name'],
| ]),
| ),
| },
| );
| }
|
| const btns = operations.map((opt) =>
| opt.code === 'delete' ? renderConfirm(opt) : renderBtn(opt),
| );
| return h(
| 'div',
| {
| class: 'flex table-operations',
| style: { justifyContent: align },
| },
| btns,
| );
| },
| });
|
| // 这里可以自行扩展 vxe-table 的全局配置,比如自定义格式化
| // vxeUI.formats.add
| },
| useVbenForm,
| });
|
| export { useVbenVxeGrid };
| export type OnActionClickParams<T = Recordable<any>> = {
| code: string;
| row: T;
| };
| export type OnActionClickFn<T = Recordable<any>> = (
| params: OnActionClickParams<T>,
| ) => void;
| export type * from '@vben/plugins/vxe-table';
|
|