MedicalReport.vue 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <template>
  2. <CommonPanel title="病例网报" class="people-cd" :img-url="CarImage">
  3. <el-scrollbar class="scroll-box">
  4. <div class="case-item">
  5. <div class="time-box">2024-10-01 12:12</div>
  6. <div class="name-box">张三</div>
  7. <div class="result-box">疑似病例</div>
  8. </div>
  9. <div class="case-item">
  10. <div class="time-box">2024-10-01 12:12</div>
  11. <div class="name-box">张三</div>
  12. <div class="result-box">疑似病例</div>
  13. </div>
  14. </el-scrollbar>
  15. </CommonPanel>
  16. </template>
  17. <script setup>
  18. import CommonPanel from "../../common/CommonPanel.vue";
  19. import CarImage from "../../../../../assets/img/bingli-icon.png";
  20. </script>
  21. <style lang="scss" scoped>
  22. .people-cd {
  23. position: fixed;
  24. top: 160px;
  25. right: 860px;
  26. .scroll-box {
  27. width: 100%;
  28. height: 100%;
  29. padding: 10px;
  30. .case-item {
  31. display: flex;
  32. padding: 0 5px;
  33. padding-right: 20px;
  34. justify-content: space-between;
  35. align-items: center;
  36. height: 56px;
  37. margin-bottom: 10px;
  38. background: linear-gradient(
  39. 90deg,
  40. rgba(16, 87, 138, 0.2) 0%,
  41. #10578a 52%,
  42. rgba(16, 87, 138, 0.2) 100%
  43. );
  44. border-radius: 0px 0px 0px 0px;
  45. .time-box {
  46. width: 145px;
  47. height: 24px;
  48. font-family: Alibaba PuHuiTi 3, Alibaba PuHuiTi 30;
  49. font-weight: normal;
  50. font-size: 16px;
  51. color: #6fe6ff;
  52. white-space: nowrap;
  53. text-align: left;
  54. font-style: normal;
  55. text-transform: none;
  56. }
  57. .name-box {
  58. width: 101px;
  59. height: 24px;
  60. font-family: Alibaba PuHuiTi;
  61. font-weight: normal;
  62. font-size: 16px;
  63. color: #ffffff;
  64. white-space: nowrap;
  65. text-align: center;
  66. font-style: normal;
  67. text-transform: none;
  68. }
  69. .result-box {
  70. width: 101px;
  71. height: 24px;
  72. font-family: Alibaba PuHuiTi;
  73. font-weight: normal;
  74. font-size: 16px;
  75. color: #ffffff;
  76. white-space: nowrap;
  77. text-align: center;
  78. font-style: normal;
  79. text-transform: none;
  80. }
  81. }
  82. }
  83. }
  84. </style>