|
|
@ -1,4 +1,5 @@ |
|
|
|
<template> |
|
|
|
<div ref="buttonRefs"> |
|
|
|
<div v-for="(item, index) in Butttondata" :key="index" class="btn-div"> |
|
|
|
<el-button |
|
|
|
v-show="!item.hide" |
|
|
@ -28,6 +29,7 @@ |
|
|
|
:detailAllSchemas="detailAllSchemas" |
|
|
|
@closeRowDrop="closeRowDrop" |
|
|
|
@updataTableColumns="updataTableColumns" |
|
|
|
:rowDropHeight="rowDropHeight" |
|
|
|
/> |
|
|
|
<template #reference> |
|
|
|
<el-button |
|
|
@ -45,6 +47,7 @@ |
|
|
|
</template> |
|
|
|
</el-popover> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<slot></slot> |
|
|
|
</template> |
|
|
|
<script setup> |
|
|
@ -106,6 +109,14 @@ defineExpose({ |
|
|
|
const updataTableColumns = (val) => { |
|
|
|
emit('updataTableColumns', val) |
|
|
|
} |
|
|
|
const buttonRefs = ref() |
|
|
|
const rowDropHeight = ref('') |
|
|
|
onMounted(() => { |
|
|
|
const client = buttonRefs.value.getBoundingClientRect() |
|
|
|
console.log(999, client.top) |
|
|
|
rowDropHeight.value = client.top + 'px' |
|
|
|
// console.log(100,height22) |
|
|
|
}) |
|
|
|
</script> |
|
|
|
<style scoped lang="scss"> |
|
|
|
.btn-div{ |
|
|
|