vxe-table.ts 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. import { h } from 'vue';
  2. import { setupVbenVxeTable, useVbenVxeGrid } from '@vben/plugins/vxe-table';
  3. import { Button, Image } from 'ant-design-vue';
  4. import { useVbenForm } from './form';
  5. setupVbenVxeTable({
  6. configVxeTable: (vxeUI) => {
  7. vxeUI.setConfig({
  8. grid: {
  9. align: 'center',
  10. border: false,
  11. columnConfig: {
  12. resizable: true,
  13. },
  14. minHeight: 180,
  15. proxyConfig: {
  16. autoLoad: true,
  17. response: {
  18. result: 'items',
  19. total: 'total',
  20. list: 'items',
  21. },
  22. showActiveMsg: true,
  23. showResponseMsg: false,
  24. },
  25. round: true,
  26. showOverflow: true,
  27. size: 'small',
  28. },
  29. });
  30. // 表格配置项可以用 cellRender: { name: 'CellImage' },
  31. vxeUI.renderer.add('CellImage', {
  32. renderDefault(_renderOpts, params) {
  33. const { column, row } = params;
  34. return h(Image, { src: row[column.field] });
  35. },
  36. });
  37. // 表格配置项可以用 cellRender: { name: 'CellLink' },
  38. vxeUI.renderer.add('CellLink', {
  39. renderDefault(renderOpts) {
  40. const { props } = renderOpts;
  41. return h(
  42. Button,
  43. { size: 'small', type: 'link' },
  44. { default: () => props?.text },
  45. );
  46. },
  47. });
  48. // 这里可以自行扩展 vxe-table 的全局配置,比如自定义格式化
  49. // vxeUI.formats.add
  50. },
  51. useVbenForm,
  52. });
  53. export { useVbenVxeGrid };
  54. export type * from '@vben/plugins/vxe-table';