index.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <template>
  2. <Dialog :flag="dialogVisible" msgTitle="列设置" width="1080px" @submitForm="submitForm" @resetForm="resetForm">
  3. <div class="columnSet">
  4. <el-checkbox v-for="(item,index) in tableHeaderList" :key="index" :label="item.columnName" v-model="item.needShow" :checked="item.needShow">
  5. {{item.columnLabel}}
  6. </el-checkbox>
  7. </div>
  8. </Dialog>
  9. </template>
  10. <script setup lang="ts">
  11. import Dialog from "@/components/dialog/index.vue";
  12. import { ref } from "vue";
  13. const props = defineProps({
  14. columnList:{
  15. type: Array,
  16. default: []
  17. },
  18. dialogVisible: {
  19. type: Boolean,
  20. required: true,
  21. },
  22. });
  23. const tableHeaderList = ref([])
  24. watchEffect(() => {
  25. tableHeaderList.value= JSON.parse(JSON.stringify(props.columnList))
  26. })
  27. const submitForm=()=>{
  28. emit('setColumn',tableHeaderList.value)
  29. }
  30. const resetForm=()=>{
  31. emit('closeDialog',false)
  32. }
  33. const emit = defineEmits(['setColumn','closeDialog'])
  34. </script>
  35. <style lang="scss" scoped>
  36. .columnSet {
  37. padding: 0 25px;
  38. box-sizing: border-box;
  39. .el-checkbox{
  40. width: calc(25% - 30px);
  41. margin-top: 20px ;
  42. }
  43. }
  44. </style>