CusTableColumn.vue 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <template>
  2. <template v-if="item?.show">
  3. <slot :name="`${item?.value}-column`" :column="item">
  4. <el-table-column
  5. :show-overflow-tooltip="!item?.popover"
  6. :label="item?.label"
  7. :prop="item?.value"
  8. :column-key="item?.value"
  9. :sortable="item?.sort ? 'custom' : false"
  10. :width="item?.width ? item?.width : 'auto'"
  11. :align="item?.align ? item?.align : 'center'"
  12. :header-align="item?.headerAlign ? item?.headerAlign : 'center'"
  13. :fixed="item?.fixed ? item?.fixed : false"
  14. :filters="item?.filters ? item?.filters : null"
  15. :filter-multiple="!!item?.filterMultiple"
  16. >
  17. <template #default="scope">
  18. <template v-if="item.html">
  19. <div v-html="scope?.row[item?.value]"></div>
  20. </template>
  21. <template v-else>
  22. <slot :name="`${item?.value}-column-value`" :scope="scope">
  23. <CusPopover v-if="item?.popover" :value="scope?.row[item?.value]">
  24. <div class="__text-ellipsis">{{ scope?.row[item?.value] }}</div>
  25. </CusPopover>
  26. <template v-else>
  27. {{ scope?.row[item?.value] }}
  28. </template>
  29. </slot>
  30. </template>
  31. </template>
  32. </el-table-column>
  33. </slot>
  34. </template>
  35. </template>
  36. <script lang="ts">
  37. import {
  38. defineComponent,
  39. computed,
  40. onMounted,
  41. ref,
  42. reactive,
  43. watch,
  44. getCurrentInstance,
  45. ComponentInternalInstance,
  46. } from "vue";
  47. import { useStore } from "vuex";
  48. import { useRouter } from "vue-router";
  49. export default defineComponent({
  50. name: "CusTableColumn",
  51. props: {
  52. item: {
  53. required: true
  54. },
  55. },
  56. setup() {
  57. const store = useStore();
  58. const router = useRouter();
  59. const that = (getCurrentInstance() as ComponentInternalInstance)?.appContext
  60. ?.config?.globalProperties;
  61. return {};
  62. },
  63. });
  64. </script>
  65. <style scoped lang="scss">
  66. .cus-table-column-popover {
  67. }
  68. </style>