interviewSchedule.vue 992 B

1234567891011121314151617181920212223242526272829303132
  1. <!-- 面试日程 -->
  2. <template>
  3. <div style="height: 100%; overflow: hidden;">
  4. <div class="white-bgc pa-3 pt-5 mb-3" style="font-size: 16px; display: flex; justify-content: space-between;">
  5. <div>面试日程</div>
  6. <div class="defaultLink" @click="null">查看全部</div>
  7. </div>
  8. <!-- 滚动区域 -->
  9. <div class="mr-1" style="height: calc(100% - 100px); background-color: var(--default-bgc); overflow-y: auto;">
  10. </div>
  11. </div>
  12. </template>
  13. <script setup>
  14. defineOptions({name: 'PersonalCenter-interviewSchedule'})
  15. </script>
  16. <style lang="scss" scoped>
  17. ::-webkit-scrollbar {
  18. width: 4px;
  19. height: 10px;
  20. display: none;
  21. }
  22. ::-webkit-scrollbar-thumb, .temporaryAdd ::-webkit-scrollbar-thumb, .details_edit ::-webkit-scrollbar-thumb {
  23. // 滚动条-颜色
  24. background: #c3c3c379;
  25. }
  26. ::-webkit-scrollbar-track, .temporaryAdd ::-webkit-scrollbar-track, .details_edit ::-webkit-scrollbar-track {
  27. // 滚动条-底色
  28. background: #e5e5e58f;
  29. }
  30. </style>