pageListModal.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <script setup lang="ts">
  2. import { computed, ref } from "vue";
  3. import { PageContent } from "/@/components/PageContent";
  4. import { PageSearch, usePageSearch } from "/@/components/PageSearch";
  5. import { modalProps } from "./types";
  6. // import type { PageContentInstance } from "/@/components/PageContent";
  7. const { handleResetClick, handleSearchClick } = usePageSearch();
  8. const props = defineProps(modalProps);
  9. const { modalConfig } = props;
  10. const { title, searchConfig, contentConfig } = modalConfig;
  11. const pageContentRef = ref<InstanceType<typeof PageContent>>(null);
  12. // const emit = defineEmits(["confirmBtnClick"]);
  13. const dialogVisible = ref(false);
  14. async function show(_group_id) {
  15. dialogVisible.value = true;
  16. console.log(pageContentRef);
  17. pageContentRef.value.getPageData({ id: _group_id });
  18. }
  19. defineExpose({
  20. show
  21. });
  22. </script>
  23. <template>
  24. <el-dialog
  25. :title="title"
  26. v-model="dialogVisible"
  27. center
  28. top="8vh"
  29. destroy-on-close
  30. width="1040px"
  31. >
  32. <PageSearch
  33. :form-config="searchConfig"
  34. @search-btn-click="handleSearchClick"
  35. @reset-btn-click="handleResetClick"
  36. />
  37. <PageContent ref="pageContentRef" :content-config="contentConfig" />
  38. </el-dialog>
  39. </template>
  40. <style lang="scss" scoped>
  41. :deep(.el-pagination) {
  42. justify-content: flex-start !important;
  43. }
  44. .search {
  45. padding: 0px !important;
  46. }
  47. </style>