血透系统pad前端

acceptsAssessment.vue 6.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. <template>
  2. <div class="plate-box">
  3. <h2 class="title"><span class="line"></span><p>{{title}}</p><span class="line"></span> </h2>
  4. <div class="plate " >
  5. <ul>
  6. <li style="height: 0.6rem;">
  7. <label>入室方式 : </label>
  8. <span class="content">{{way}}</span>
  9. </li>
  10. <li style="height: 0.6rem;">
  11. <label>病人情况 : </label>
  12. <span class="content">{{condition}}</span>
  13. </li>
  14. <li style="height: 0.6rem;">
  15. <label>病人意识 : </label>
  16. <span class="content">{{consciousness}}</span>
  17. </li>
  18. <li style="height: 0.6rem;">
  19. <label>体位 : </label>
  20. <span class="content">{{posture}}</span>
  21. </li>
  22. </ul>
  23. <ul>
  24. <li style="height: 0.6rem;">
  25. <label>病人食欲 : </label>
  26. <span class="content">{{appetite}}</span>
  27. </li>
  28. <li style="height: 0.6rem;" v-if="this.$store.getters.user.template_info.template_id == 2">
  29. <label>病情 </label>
  30. <span class="content">{{sickCondition}} </span>
  31. </li>
  32. <li style="height: 0.6rem;" v-if="this.$store.getters.user.template_info.template_id == 2">
  33. <label>风险程度:</label>
  34. <span class="content">{{dangerLevel}}</span>
  35. </li>
  36. <li style="height: 0.6rem;" v-if="this.$store.getters.user.template_info.template_id == 2">
  37. <label>摄入量:</label>
  38. <span class="content">{{intakes}}</span>
  39. </li>
  40. </ul>
  41. <ul v-if="this.$store.getters.user.template_info.template_id == 2">
  42. <li style="height: 0.6rem;">
  43. <label>营养状况:</label>
  44. <span class="content">{{nutritions}}</span>
  45. </li>
  46. <li style="height: 0.6rem;">
  47. <label> 心理评估</label>
  48. <span class="content">{{psychologicalAssessment}}</span>
  49. </li>
  50. <li style="height: 0.6rem;" v-if="this.$store.getters.user.template_info.template_id == 2 &&this.record.psychological_assessment == 2 ">
  51. <label>心理评估异常原因:</label>
  52. <span class="content">{{this.record.psychological_assessment_other}}</span>
  53. </li>
  54. </ul>
  55. </div>
  56. </div>
  57. </template>
  58. <script>
  59. export default {
  60. name: "AcceptsAssessment",
  61. data() {
  62. return {
  63. title: "接诊评估 ",
  64. ways: {
  65. "1": "步行",
  66. "2": "扶行",
  67. "3": "轮椅",
  68. "4": "平车",
  69. },
  70. conditions: {
  71. "1": "住院",
  72. "2": "门诊",
  73. "3": "手术期",
  74. },
  75. consciousnesses: {
  76. "1": "清醒",
  77. "2": "嗜睡",
  78. "3": "昏迷",
  79. },
  80. appetites: {
  81. "1": "正常",
  82. "2": "减退",
  83. "3": "恶心",
  84. "4": "呕吐",
  85. "5": "腹泻",
  86. },
  87. postures: {
  88. "1": "自动体位",
  89. "2": "平卧位",
  90. "3": "半卧位",
  91. "4": "端坐位",
  92. "5": "躁动不安",
  93. }, sick_condition: {
  94. "1": "一般",
  95. "2": "重",
  96. "3": "危",
  97. }, danger_level: {
  98. "1": "无",
  99. "2": "低风险",
  100. "3": "中度风险",
  101. "4": "高风险",
  102. }, intake: {
  103. "1": "正常",
  104. "2": "减少",
  105. },nutrition: {
  106. "1": "正常",
  107. "2": "营养不良",
  108. },psychological_assessment: {
  109. "1": "正常",
  110. "2": "异常",
  111. }
  112. };
  113. },
  114. props: {
  115. record: {
  116. type: Object
  117. }
  118. },
  119. computed: {
  120. way: function() {
  121. if (this.record == null || this.record.id == "") {
  122. return ""
  123. } else {
  124. return this.ways[this.record.way] == undefined ? "" : (this.ways[this.record.way] + "")
  125. }
  126. },
  127. condition: function() {
  128. if (this.record == null || this.record.id == "") {
  129. return ""
  130. } else {
  131. return this.conditions[this.record.condition] == undefined ? "" : this.conditions[this.record.condition] + ""
  132. }
  133. },
  134. consciousness: function() {
  135. if (this.record == null || this.record.id == "") {
  136. return ""
  137. } else {
  138. return this.consciousnesses[this.record.consciousness] == undefined ? "" : this.consciousnesses[this.record.consciousness] + ""
  139. }
  140. },
  141. appetite: function() {
  142. if (this.record == null || this.record.id == "") {
  143. return ""
  144. } else {
  145. return this.appetites[this.record.appetite] == undefined ? "" : this.appetites[this.record.appetite] + ""
  146. }
  147. },
  148. posture: function() {
  149. if (this.record == null || this.record.id == "") {
  150. return ""
  151. } else {
  152. return this.postures[this.record.posture] == undefined ? "" : this.postures[this.record.posture] + ""
  153. }
  154. },sickCondition: function() {
  155. if (this.record == null || this.record.id == "") {
  156. return ""
  157. } else {
  158. return this.sick_condition[this.record.sick_condition] == undefined ? "" : this.sick_condition[this.record.sick_condition] + ""
  159. }
  160. },dangerLevel: function() {
  161. if (this.record == null || this.record.id == "") {
  162. return ""
  163. } else {
  164. return this.danger_level[this.record.danger_level] == undefined ? "" : this.danger_level[this.record.danger_level] + ""
  165. }
  166. },intakes: function() {
  167. if (this.record == null || this.record.id == "") {
  168. return ""
  169. } else {
  170. return this.intake[this.record.intake] == undefined ? "" : this.intake[this.record.intake] + ""
  171. }
  172. },nutritions: function() {
  173. if (this.record == null || this.record.id == "") {
  174. return ""
  175. } else {
  176. return this.nutrition[this.record.nutrition] == undefined ? "" : this.nutrition[this.record.nutrition] + ""
  177. }
  178. },psychologicalAssessment: function() {
  179. if (this.record == null || this.record.id == "") {
  180. return ""
  181. } else {
  182. return this.psychological_assessment[this.record.psychological_assessment] == undefined ? "" : this.psychological_assessment[this.record.psychological_assessment] + ""
  183. }
  184. }
  185. },
  186. methods: {
  187. }
  188. };
  189. </script>
  190. <style rel="stylesheet/scss" lang="scss" scoped>
  191. </style>