table.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <script setup name="table">
  2. import {outExportExcel} from '@/utils/exportExcel.js'
  3. import {ref, computed} from 'vue'
  4. const props = defineProps({
  5. height: {
  6. type: String,
  7. default: '800px'
  8. },
  9. data: {
  10. type: Array,
  11. default: () => ([]),
  12. },
  13. column: {
  14. type: Array,
  15. default: () => ([]),
  16. },
  17. tableName: {
  18. type: String,
  19. default: '',
  20. },
  21. tableId: {
  22. type: String,
  23. default: '',
  24. },
  25. loading: {
  26. type: Boolean,
  27. default: false,
  28. },
  29. showSummary:{
  30. type: Boolean,
  31. default: false,
  32. },
  33. summaryMethod: {
  34. type: Function,
  35. default: () => () => {}
  36. }
  37. })
  38. const emits = defineEmits(['export'])
  39. const funExport = () => {
  40. const columns = props.column.map(o => {
  41. return {
  42. ...o,
  43. property: o.prop
  44. }
  45. })
  46. let summary = []
  47. const summaryObj = {}
  48. const tHeader = []
  49. const tHeaderKeys = []
  50. const tableData = []
  51. if(props.showSummary && props.summaryMethod){
  52. summary = props.summaryMethod({columns,data: props.data})
  53. }
  54. for(const key in props.column){
  55. tHeader.push(props.column[key].label)
  56. tHeaderKeys.push(props.column[key].prop)
  57. if(props.showSummary && props.summaryMethod){
  58. summaryObj[props.column[key].prop] = summary[key]
  59. }
  60. }
  61. const exportName = props.tableName
  62. tableData.push(...props.data)
  63. if(props.showSummary && props.summaryMethod){
  64. tableData.push(summaryObj)
  65. }
  66. outExportExcel(tHeader,tHeaderKeys,tableData,exportName)
  67. }
  68. const tableRef = ref('')
  69. const tableHeight = computed(() => {
  70. return tableRef.value.offsetHeight? tableRef.value.offsetHeight - 46 : 739
  71. })
  72. </script>
  73. <template>
  74. <div ref="tableRef" class="p-[10px] shadow rounded-[6px] shadow-blue-500"
  75. :style="{ height: typeof props.height === 'string' ? props.height : props.height + 'px' }">
  76. <div class="flex justify-between items-center pb-[10px]">
  77. <h3>{{props.tableName}}</h3>
  78. <el-button size="small" type="primary" @click="funExport" :disabled="!props.tableId">数据导出</el-button>
  79. </div>
  80. <el-table :data="props.data"
  81. stripe
  82. :show-summary="showSummary"
  83. :summary-method="summaryMethod"
  84. size="small" v-loading="props.loading"
  85. :max-height="tableHeight"
  86. :style="{ width: '100%'}">
  87. <el-table-column align="center" show-overflow-tooltip v-for="item in props.column" :prop="item.prop" :label="item.label" sortable resizable :min-width="item.width? item.width : 80" />
  88. </el-table>
  89. </div>
  90. </template>