|
@@ -17,7 +17,13 @@
|
|
|
:cell-class-name="cellClassName"
|
|
|
@row-click="rowClickHandler"
|
|
|
@cell-click="cellClickHandler"
|
|
|
+ @select="selectHandler"
|
|
|
>
|
|
|
+ <el-table-column
|
|
|
+ v-if="selectionEnable"
|
|
|
+ type="selection"
|
|
|
+ width="35"
|
|
|
+ />
|
|
|
<el-table-column v-if="isStatus" width="55">
|
|
|
<template #default="scope">
|
|
|
<div class="tableStatus">
|
|
@@ -151,6 +157,10 @@ const props = defineProps({
|
|
|
type: Boolean,
|
|
|
default: false,
|
|
|
},
|
|
|
+ selectionEnable: {
|
|
|
+ type: Boolean,
|
|
|
+ default: false,
|
|
|
+ }
|
|
|
})
|
|
|
|
|
|
//表格参数
|
|
@@ -192,6 +202,7 @@ const emit = defineEmits([
|
|
|
'cellClass',
|
|
|
'rowClick',
|
|
|
'cellClick',
|
|
|
+ 'select'
|
|
|
])
|
|
|
|
|
|
//按钮点击index为当前行序号 row 为当前行 param按钮类型判断参数由父组件传过来
|
|
@@ -242,6 +253,10 @@ const cellClickHandler = (row, column, cell, event) => {
|
|
|
emit('cellClick', row, column, cell, event)
|
|
|
}
|
|
|
|
|
|
+const selectHandler = (selection, row) => {
|
|
|
+ emit('select', selection, row)
|
|
|
+}
|
|
|
+
|
|
|
const table = ref<InstanceType<typeof ElTable> | null>(null)
|
|
|
|
|
|
defineExpose({
|