CusPopover.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <template>
  2. <el-popover
  3. placement="top-start"
  4. trigger="hover"
  5. :content="value"
  6. popper-class="cus-popover"
  7. >
  8. <template #reference>
  9. <slot/>
  10. </template>
  11. </el-popover>
  12. </template>
  13. <script lang="ts">
  14. import {
  15. defineComponent,
  16. computed,
  17. onMounted,
  18. ref,
  19. reactive,
  20. watch,
  21. getCurrentInstance,
  22. nextTick,
  23. ComponentInternalInstance, toRefs
  24. } from 'vue'
  25. import {useStore} from 'vuex'
  26. import {useRouter} from 'vue-router'
  27. export default defineComponent({
  28. name: 'CusPopover',
  29. props: {
  30. value: {
  31. required: true
  32. },
  33. },
  34. setup(props, { emit }) {
  35. const store = useStore();
  36. const router = useRouter();
  37. const that = (getCurrentInstance() as ComponentInternalInstance).appContext.config.globalProperties
  38. },
  39. })
  40. </script>
  41. <style scoped lang="scss">
  42. .cus-table-main {
  43. width: 100%;
  44. height: 100%;
  45. $cus-page-height: 50px;
  46. :deep(.cus-table) {
  47. width: 100%;
  48. //height: calc(100% - #{$cus-page-height} - 20px);
  49. .el-checkbox__inner {
  50. width: 24px;
  51. height: 24px;
  52. &:after {
  53. width: 6px;
  54. height: 14px;
  55. left: 8px;
  56. }
  57. }
  58. .el-table__header-wrapper, .el-table__fixed-right, .el-table__fixed {
  59. .cell {
  60. font-weight: 700;
  61. font-size: 16px;
  62. color: #333333;
  63. height: 26px;
  64. }
  65. th {
  66. background-color: #fafafa;
  67. }
  68. }
  69. .el-table__body-wrapper, .el-table__fixed-body-wrapper {
  70. .cell {
  71. height: 26px;
  72. font-size: 16px;
  73. font-family: 微软雅黑;
  74. font-weight: 400;
  75. color: #797979;
  76. }
  77. }
  78. }
  79. .cus-table-page {
  80. display: flex;
  81. justify-content: flex-end;
  82. align-items: flex-end;
  83. height: $cus-page-height;
  84. margin: 0;
  85. padding: 0;
  86. }
  87. }
  88. </style>