管道式消毒机
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

83 lines
1.9 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. <template>
  2. <div class="audit_container">
  3. <div class="header_wrap">
  4. <p>操作人</p>
  5. <p>操作内容</p>
  6. <p>操作时间</p>
  7. </div>
  8. <div class="content_wrap">
  9. <div class="line">
  10. <div class="username">Admin</div>
  11. <div class="oper">修改注射泵速率</div>
  12. <div class="time">2023-06-29 13:59</div>
  13. </div>
  14. </div>
  15. </div>
  16. </template>
  17. <script setup></script>
  18. <style lang="scss" scoped>
  19. .audit_container {
  20. margin-bottom: 19px;
  21. height: 580px;
  22. box-sizing: border-box;
  23. background: #ffffff;
  24. border-radius: 16px;
  25. .header_wrap {
  26. display: flex;
  27. align-items: center;
  28. justify-content: space-between;
  29. height: 80.29px;
  30. background: #f6f6f6;
  31. border-radius: 16px 16px 0px 0px;
  32. padding: 0 89.43px;
  33. box-sizing: border-box;
  34. font-family: Source Han Sans CN;
  35. font-size: 18px;
  36. font-weight: normal;
  37. line-height: normal;
  38. letter-spacing: 0.07em;
  39. color: #999999;
  40. }
  41. .content_wrap {
  42. height: 499.71px;
  43. overflow: scroll;
  44. .line {
  45. padding: 23px;
  46. padding-left: 40px;
  47. font-family: Source Han Sans CN;
  48. font-size: 18px;
  49. font-weight: normal;
  50. line-height: normal;
  51. letter-spacing: 0.07em;
  52. color: #191919;
  53. display: flex;
  54. align-items: center;
  55. justify-content: space-between;
  56. border-bottom: 1px solid #f6f6f6;
  57. .username {
  58. width: 160px;
  59. overflow: hidden;
  60. white-space: nowrap;
  61. text-overflow: ellipsis;
  62. text-align: center;
  63. }
  64. .oper {
  65. width: 550px;
  66. overflow: hidden;
  67. white-space: nowrap;
  68. text-overflow: ellipsis;
  69. text-align: center;
  70. }
  71. .time {
  72. width: 200px;
  73. overflow: hidden;
  74. text-align: center;
  75. white-space: nowrap;
  76. text-overflow: ellipsis;
  77. }
  78. }
  79. }
  80. }
  81. </style>