column-helper.ts 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. import { h } from "vue";
  2. import { ElTag, ElImage } from "element-plus";
  3. export function renderCategory(prop = "can") {
  4. return {
  5. cellRenderer({ row }) {
  6. return row[prop].map(({ name }) => name).join("/");
  7. }
  8. };
  9. }
  10. export function renderStatus(options: any[], prop = "status") {
  11. return {
  12. cellRenderer({ row }) {
  13. const item = options.find(s => s.id === String(row[prop]));
  14. return h(
  15. ElTag,
  16. {
  17. type: item && item.type ? item.type : ""
  18. },
  19. {
  20. default: () => item?.label || "--"
  21. }
  22. );
  23. }
  24. };
  25. }
  26. export function renderImage(prop = "image") {
  27. return {
  28. cellRenderer({ row }) {
  29. return h(
  30. ElImage,
  31. {
  32. src: row[prop],
  33. fit: "cover",
  34. lazy: true,
  35. "preview-src-list": row[prop] !== "" ? [row[prop]] : [],
  36. "z-index": 99999,
  37. "preview-teleported": true
  38. },
  39. {
  40. default: () => "--"
  41. }
  42. );
  43. }
  44. };
  45. }
  46. // <el-image
  47. // style="width: 100px; height: 100px"
  48. // :src="url"
  49. // :preview-src-list="src"
  50. // :initial-index="4"
  51. // fit="cover"
  52. // />
  53. export function convertOptions(source: any[], prop = "id") {
  54. return source.map(item => ({ value: item[prop], label: item.label }));
  55. }
  56. export function renderHtml(prop = "content") {
  57. return {
  58. cellRenderer({ row }) {
  59. const arr = row[prop].split("<br/>");
  60. const arr2 = [];
  61. for (let i = 0; i < arr.length; i++) {
  62. arr2.push(
  63. h(
  64. "li",
  65. {
  66. style: {
  67. lineHeight: "30px"
  68. }
  69. },
  70. arr[i]
  71. )
  72. );
  73. }
  74. return h(
  75. "ul",
  76. {
  77. style: {
  78. padding: "5px 0 5px 55px"
  79. }
  80. },
  81. {
  82. default: () => arr2
  83. }
  84. );
  85. }
  86. };
  87. }
  88. export function timeInterval(props: string[], tem: string) {
  89. return {
  90. cellRenderer({ row }) {
  91. let str = "";
  92. props.forEach((s, index) => {
  93. str += index === 0 ? `${row[s]}` : ` ${tem}${row[s]}`;
  94. });
  95. return str;
  96. }
  97. };
  98. }