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

treatmentOf.vue 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <template>
  2. <div class="plate-box">
  3. <h2 class="DetailsTit">
  4. <span>{{ title }}</span>
  5. </h2>
  6. <div class="plate ">
  7. <ul>
  8. <li>
  9. <label>透后宣教 : </label>
  10. <span class="content">{{ mission }}</span>
  11. </li>
  12. </ul>
  13. <ul>
  14. <li>
  15. <label>透析小结 : </label>
  16. <span class="content">{{ dialysis_summary }}</span>
  17. </li>
  18. </ul>
  19. </div>
  20. <div class="plate ">
  21. <ul>
  22. <li>
  23. <label>透析护理记录 : </label>
  24. <span class="content">{{ nursing_record }}</span>
  25. </li>
  26. </ul>
  27. <ul>
  28. <li>
  29. <label>特殊记录 : </label>
  30. <span class="content">{{ special_record }}</span>
  31. </li>
  32. </ul>
  33. </div>
  34. <div class="middleLine"></div>
  35. </div>
  36. </template>
  37. <script>
  38. export default {
  39. name: "DialysisPrescription",
  40. data() {
  41. return {
  42. title: "治疗小结"
  43. };
  44. },
  45. props: {
  46. record: {
  47. type: Object
  48. }
  49. },
  50. computed: {
  51. mission: function() {
  52. if (this.record.id == 0) {
  53. return "";
  54. }
  55. return this.record.mission;
  56. },
  57. dialysis_summary: function() {
  58. if (this.record.id == 0) {
  59. return "";
  60. }
  61. return this.record.dialysis_summary;
  62. },
  63. nursing_record: function() {
  64. if (this.record.id == 0) {
  65. return "";
  66. }
  67. return this.record.nursing_record;
  68. },
  69. special_record: function() {
  70. if (this.record.id == 0) {
  71. return "";
  72. }
  73. return this.record.special_record;
  74. }
  75. },
  76. methods: {}
  77. };
  78. </script>
  79. <style rel="stylesheet/scss" lang="scss" scoped></style>