Browse Source

YT-2006号口生产申请和号口生产任务,点击设置字段排序不好使

intex_zhaoxuebing^2
张立 5 days ago
parent
commit
aa9d6b53e9
  1. 11
      src/components/XButton/src/ButtonBase.vue
  2. 8
      src/components/rowDrop/index.vue

11
src/components/XButton/src/ButtonBase.vue

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

8
src/components/rowDrop/index.vue

@ -1,6 +1,6 @@
<template> <template>
<!-- <Dialog title="字段设置" width="270" v-model="popoverVisible" :scroll="true" :maxHeight="500"> --> <!-- <Dialog title="字段设置" width="270" v-model="popoverVisible" :scroll="true" :maxHeight="500"> -->
<div class="test_wrapper" @dragover="dragover($event)"> <div class="test_wrapper" @dragover="dragover($event)" :style="{maxHeight:`calc(100vh - ${rowDropHeight} - 100px)`}">
<el-checkbox :indeterminate="isIndeterminate" v-model="checkAll" @change="handlecheckallchange">{{ t('ts.全部') }}</el-checkbox> <el-checkbox :indeterminate="isIndeterminate" v-model="checkAll" @change="handlecheckallchange">{{ t('ts.全部') }}</el-checkbox>
<el-checkbox-group v-model="checkedDataList" @change="handlecheckedchange"> <el-checkbox-group v-model="checkedDataList" @change="handlecheckedchange">
<draggable :list="allData" :force-fallback="true" chosen-class="chosen" animation="300" @end="dragend" @update="dragenter" > <draggable :list="allData" :force-fallback="true" chosen-class="chosen" animation="300" @end="dragend" @update="dragenter" >
@ -36,6 +36,10 @@ const props = defineProps({
type: Object, type: Object,
default: null default: null
}, },
rowDropHeight: {
type: String,
default: ''
},
}) })
const popoverVisible = ref(false) const popoverVisible = ref(false)
const route = useRoute() // const route = useRoute() //
@ -257,7 +261,7 @@ defineExpose({
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.test_wrapper{ .test_wrapper{
max-height: calc(100vh - 350px); // max-height: calc(100vh - 350px);
overflow-y: auto; overflow-y: auto;
} }
.footer{ .footer{

Loading…
Cancel
Save