血透系统PC前端

dialysisMonitoring.vue 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <template>
  2. <div class="plate-box" >
  3. <h2 class="DetailsTit"><span>{{ title }}</span></h2>
  4. <div style="width:100%;overflow:hildden;overflow-x:auto;">
  5. <table class="table" style="">
  6. <tr>
  7. <th width="124px">时间</th>
  8. <th width="72px">血压(mmhg)</th>
  9. <th width="80px">心率(次/分)</th>
  10. <th width="110px">呼吸(次/分)</th>
  11. <th width="92px">血流量(ml/min)</th>
  12. <th width="76px">静脉压(mmhg)</th>
  13. <th width="76px">跨膜压(mmhg)</th>
  14. <th width="76px">超滤量(L)</th>
  15. <th width="92px">钠浓度(mmol/L)</th>
  16. <th width="92px">透析液温度(℃)</th>
  17. <th width="92px">置换率(L/h)</th>
  18. <th width="92px">置换量(L)</th>
  19. <th width="92px">病情变化</th>
  20. <th width="92px">处理</th>
  21. <th width="92px">结果</th>
  22. </tr>
  23. <tr v-for="(monitor, index) in monitores" :key="index">
  24. <td>{{ parseTime(monitor.operate_time, "{y}-{m}-{d} {h}:{i}") }}</td>
  25. <td>{{ monitor.systolic_blood_pressure?monitor.systolic_blood_pressure:'' }}/{{ monitor.diastolic_blood_pressure?monitor.diastolic_blood_pressure:'' }}</td>
  26. <td>{{ monitor.pulse_frequency?monitor.pulse_frequency:'' }}</td>
  27. <td>{{ monitor.breathing_rate?monitor.breathing_rate:'' }}</td>
  28. <td>{{ monitor.blood_flow_volume?monitor.blood_flow_volume:'' }}</td>
  29. <td>{{ monitor.venous_pressure?monitor.venous_pressure:'' }}</td>
  30. <td>{{ monitor.transmembrane_pressure?monitor.transmembrane_pressure:'' }}</td>
  31. <td>{{ monitor.ultrafiltration_volume?monitor.ultrafiltration_volume:'' }}</td>
  32. <td>{{ monitor.sodium_concentration?monitor.sodium_concentration:'' }}</td>
  33. <td>{{ monitor.dialysate_temperature?monitor.dialysate_temperature:'' }}</td>
  34. <td>{{ monitor.replacement_rate?monitor.replacement_rate:'' }}</td>
  35. <td>{{ monitor.displacement_quantity?monitor.displacement_quantity:'' }}</td>
  36. <td>{{ monitor.symptom }}</td>
  37. <td>{{ monitor.dispose }}</td>
  38. <td>{{ monitor.result }}</td>
  39. </tr>
  40. </table>
  41. </div>
  42. <div class="middleLine"></div>
  43. </div>
  44. </template>
  45. <script>
  46. import {parseTime} from "@/utils"
  47. export default {
  48. name: "statOrder",
  49. data() {
  50. return {
  51. title: "透析监测 ",
  52. };
  53. },
  54. props: {
  55. monitores: {
  56. type: Array,
  57. }
  58. },
  59. methods: {
  60. parseTime(time, layout) {
  61. return parseTime(time, layout)
  62. },
  63. }
  64. };
  65. </script>
  66. <style rel="stylesheet/scss" lang="scss" scoped>
  67. .table {
  68. width: 1500px;
  69. overflow: auto;
  70. font-size: 14px;
  71. text-align: center;
  72. border: $border-color;
  73. padding-bottom: 2px;
  74. tr {
  75. padding: 0;
  76. margin: 0;
  77. padding: 10px 0;
  78. th {
  79. background: $main-color;
  80. border: none;
  81. color: #fff;
  82. padding: 0;
  83. margin: 0;
  84. height: 44px;
  85. font-weight: normal;
  86. padding: 18px 0;
  87. }
  88. td {
  89. background: #f0f5fa;
  90. border: none;
  91. padding: 18px 0;
  92. }
  93. }
  94. }
  95. </style>