index.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <!--
  2. * @Author: Gui
  3. * @Date: 2023-03-01 19:20:44
  4. * @LastEditors: guicheng 1625811865@qq.com
  5. * @LastEditTime: 2025-03-24 17:43:19
  6. * @Description: kxs files
  7. * @filePath:
  8. -->
  9. <script setup lang="ts">
  10. import { ref, useRenderIcon, Close } from "@/utils/importUsed";
  11. const props = defineProps<{
  12. formData: {
  13. type: Object;
  14. default: () => {};
  15. };
  16. visible: false;
  17. closeFn: any;
  18. formsubmit: any;
  19. }>();
  20. // 弹窗是否全屏
  21. const isFullscreen = ref(false);
  22. </script>
  23. <template>
  24. <div>
  25. <el-dialog
  26. v-model="props.visible"
  27. width="50%"
  28. :fullscreen="isFullscreen"
  29. title="新增"
  30. draggable
  31. @close="closeFn"
  32. >
  33. <omega-form
  34. ref="formRef"
  35. :formData="formData"
  36. labelPosition="left"
  37. labelWidth="100px"
  38. size="default"
  39. @search="formsubmit"
  40. formWidth="!w-[230px]"
  41. :searchAll="false"
  42. searchText="确认提交"
  43. />
  44. <div class="flex justify-end">
  45. <el-button :icon="useRenderIcon(Close)" @click="closeFn">
  46. 关闭
  47. </el-button>
  48. </div>
  49. </el-dialog>
  50. </div>
  51. </template>
  52. <style scoped>
  53. :deep(.el-dropdown-menu__item i) {
  54. margin: 0;
  55. }
  56. :deep(.el-form-item__label) {
  57. font-weight: 700;
  58. }
  59. :deep(.el-pagination) {
  60. flex-flow: wrap;
  61. }
  62. :deep(.is-draggable) {
  63. max-height: 80vh;
  64. overflow: auto;
  65. }
  66. :deep(.el-dialog__header) {
  67. position: sticky;
  68. top: 0;
  69. z-index: 2;
  70. background: #fff;
  71. }
  72. .collapsedom {
  73. padding: 0 20px;
  74. background-color: #fff;
  75. }
  76. .ovh-x {
  77. height: 40vh;
  78. overflow-y: auto;
  79. }
  80. :deep(.el-descriptions__header) {
  81. margin: 16px 0 !important;
  82. }
  83. .el-select {
  84. width: 100%;
  85. }
  86. </style>