Elizabeth's proactive approach involves introducing urinal toilet attachment , an ingenious concept that optimizes space and functionality.

index.vue 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <div class="app-container" id="fullscreen-board-box" >
  3. <el-row>
  4. <el-popover
  5. placement="right"
  6. title="帮助"
  7. width="500"
  8. trigger="hover"
  9. content="按F11(笔记本可能是Fn+F11)可以进入/退出全屏">
  10. <i class="el-icon-question" slot="reference"></i>
  11. </el-popover>
  12. </el-row>
  13. <bulletinboard></bulletinboard>
  14. </div>
  15. </template>
  16. <script>
  17. import { getBoards } from "@/api/board";
  18. import bulletinboard from "@/xt_pages/dialysis/components/bulletinboard";
  19. import { parseTime } from "@/utils";
  20. export default {
  21. components: { bulletinboard },
  22. name: 'fullscreenboaard',
  23. }
  24. </script>
  25. <style >
  26. #fullscreen-board-box .el-menu-item{
  27. font-size: 30px !important;
  28. }
  29. #fullscreen-board-box .board-right-menu-item{
  30. font-size: 20px !important;
  31. }
  32. #fullscreen-board-box .el-table th>.cell {
  33. font-size: 20px !important;
  34. }
  35. #fullscreen-board-box .el-table .cell{
  36. font-size: 20px !important;
  37. }
  38. </style>