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
| <template>
| <el-table
| v-loading="loading"
| :data="tableData"
| style="width: 100%"
| :border="border"
| :show-selection="showSelection"
| :max-height="maxHeight"
| @selection-change="handleSelectionChange"
| @row-click="handleRowClick"
| @row-dblclick="handleRowDblClick"
| @cell-click="handleCellClick"
| :max-width="maxWidth"
| @export="handleExport"
| >
| <el-table-column v-if="showSelection" type="selection" width="55" align="center" />
| <el-table-column v-if="showIndex" label="序号" type="index" width="60" align="center" />
| <template v-for="col in columns" :key="col.prop">
| <el-table-column
| v-bind="col"
| :show-overflow-tooltip="shouldShowTooltip(col, tableData)"
| :formatter="(row, column, cellValue) => cellValue == null || cellValue === '' ? '--' : cellValue"
| align="center"
| >
| <template v-if="col.slot" #default>
| <slot></slot>
| </template>
| </el-table-column>
| </template>
| <!-- 操作列 -->
| <el-table-column v-if="showOperations" :label="operationsLabel" :width="operationsWidth" fixed="right" align="center">
| <template #default="scope">
| <slot name="operations" :row="scope.row">
| <el-button
| v-if="operations.includes('edit')"
| link
| type="primary"
| size="small"
| @click="handleEdit(scope.row)"
| >编辑</el-button>
| <el-button
| v-if="operations.includes('delete')"
| link
| type="danger"
| size="small"
| @click="handleDelete(scope.row)"
| >删除</el-button>
| </slot>
| </template>
| </el-table-column>
| </el-table>
| </template>
|
| <script setup>
| import { defineEmits } from 'vue'
| import { ElMessage, ElMessageBox } from 'element-plus'
| const props = defineProps({
| // 最大宽度
| maxWidth: {
| type: [String, Number],
| default: 'auto'
| },
| handleCellClick: {
| type: Function,
| default: () => {}
| },
| handleRowClick: {
| type: Function,
| default: () => {}
| },
| handleExport: {
| type: Function,
| default: () => {}
| },
| handleRowDblClick: {
| type: Function,
| default: () => {}
| },
| // 高度
| maxHeight: {
| type: [String, Number],
| default: 'auto'
| },
| // 加载状态
| loading: {
| type: Boolean,
| default: false
| },
| // border
| border: {
| type: Boolean,
| default: false
| },
| // 表格数据
| tableData: {
| type: Array,
| default: () => []
| },
| // 是否显示选择列
| showSelection: {
| type: Boolean,
| default: true
| },
| // 是否显示序号列
| showIndex: {
| type: Boolean,
| default: true
| },
| // 列配置
| columns: {
| type: Array,
| default: () => []
| },
| // 是否显示操作列
| showOperations: {
| type: Boolean,
| default: true
| },
| // 操作列标签
| operationsLabel: {
| type: String,
| default: '操作'
| },
| // 操作列宽度
| operationsWidth: {
| type: [String, Number],
| default: 160
| },
| // 显示哪些操作按钮
| operations: {
| type: Array,
| default: () => ['edit', 'delete', 'export']
| },
| // 删除确认信息
| deleteConfirmText: {
| type: String,
| default: '确认删除该记录?'
| }
| })
| // 检查列是否需要显示tooltip
| const shouldShowTooltip = (col, data) => {
| // 如果没有prop,直接返回false
| if (!col.prop) return false;
| // 检查该列在所有数据中是否有非空值
| return data.some(row => row[col.prop] != null && row[col.prop] !== '');
| };
| // 处理选择变化、编辑、删除和导出操作
| const emit = defineEmits(['selection-change', 'edit', 'delete', 'export'])
| const handleSelectionChange = (selection) => {
| emit('selection-change', selection)
| }
| const handleEdit = (row) => {
| emit('edit', row)
| }
| const handleDelete = (row) => {
| ElMessageBox.confirm(
| props.deleteConfirmText,
| '警告',
| {
| confirmButtonText: '确定',
| cancelButtonText: '取消',
| type: 'warning'
| }
| ).then(() => {
| emit('delete', row)
| }).catch(() => {})
| }
|
| const handleExport = (row) => {
| emit('export', row)
| }
| </script>
|
| <style scoped>
| :deep(.el-table) {
| margin-bottom: 20px;
| overflow-x: auto;
| }
|
| :deep(.el-table th) {
| background-color: #f5f7fa;
| }
|
| /* 响应式样式 */
| @media screen and (max-width: 768px) {
| :deep(.el-table) {
| width: 100%;
| overflow-x: auto;
| }
| }
| </style>
|
|