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

pressuresore.vue 9.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. <!--压疮风险评估 -->
  2. <template>
  3. <div class="patient-container">
  4. <patient-sidebar :id="patientID" defaultActive="5-3"></patient-sidebar>
  5. <div>
  6. <div class="patient-app-container advice-container app-container">
  7. <div class='content_top' style="">
  8. <div style="font-size: 20px;">患者压疮危险因素评估记录(Braden)表</div>
  9. <div>
  10. <el-button>历史评分</el-button>
  11. </div>
  12. </div>
  13. <div style="margin: 20px 0px;">
  14. <table class="table" border style="width: 100%;">
  15. <thead>
  16. <tr>
  17. <th class="bg_color" rowspan="2" style="width: 9%">项目/编码</th>
  18. <th class="bg_color" colspan="4" style="width: 68%;">分值</th>
  19. <th class="bg_color" rowspan="2" style="width: 9%">说明</th>
  20. <th class="bg_color" rowspan="2" style="width: 14%">护理措施</th>
  21. </tr>
  22. <tr>
  23. <th class="bg_color">1分</th>
  24. <th class="bg_color">2分</th>
  25. <th class="bg_color">3分</th>
  26. <th class="bg_color">4分</th>
  27. </tr>
  28. </thead>
  29. <tbody>
  30. <tr>
  31. <td></td>
  32. <td></td>
  33. <td></td>
  34. <td></td>
  35. <td></td>
  36. <td rowspan="6"></td>
  37. <td rowspan="6"></td>
  38. </tr>
  39. <tr class="bg_color">
  40. <td></td>
  41. <td></td>
  42. <td></td>
  43. <td></td>
  44. <td></td>
  45. </tr>
  46. </tbody>
  47. </table>
  48. <table class="table" border style="width: 100%;">
  49. <thead>
  50. <tr>
  51. <th rowspan="2" style="width: 9%">评估日期</th>
  52. <th colspan="6" style="width: 68%;">评估项目/编码(表格内填写分数)</th>
  53. <th rowspan="2" style="width: 9%">评分</th>
  54. <th rowspan="2" style="width: 14%">责任护士签名</th>
  55. </tr>
  56. <tr>
  57. <th>A</th>
  58. <th>B</th>
  59. <th>C</th>
  60. <th>D</th>
  61. <th>E</th>
  62. <th>F</th>
  63. </tr>
  64. </thead>
  65. <tbody>
  66. <tr>
  67. <td>
  68. <el-date-picker
  69. v-model="value1"
  70. type="date"
  71. placeholder="选择日期"
  72. :clearable="false"
  73. style="width: 150px;">
  74. </el-date-picker>
  75. </td>
  76. <td class="start">
  77. <el-input v-model="input" style="width:100px;"></el-input>
  78. </td>
  79. <td class="start">
  80. <el-input v-model="input" style="width:100px"></el-input>
  81. </td>
  82. <td class="start">
  83. <el-input v-model="input" style="width:100px"></el-input>
  84. </td>
  85. <td class="start">
  86. <el-input v-model="input" style="width:100px"></el-input>
  87. </td>
  88. <td class="start">
  89. <el-input v-model="input" style="width:100px"></el-input>
  90. </td>
  91. <td class="start">
  92. <el-input v-model="input" style="width:100px"></el-input>
  93. </td>
  94. <td class="start">
  95. <el-input v-model="input" style="width:100px"></el-input>
  96. </td>
  97. <td class="start">
  98. <el-select v-model="value" placeholder="请选择" >
  99. <el-option
  100. v-for="item in options"
  101. :key="item.value"
  102. :label="item.label"
  103. :value="item.value"
  104. style="width:150px;">
  105. </el-option>
  106. </el-select>
  107. </td>
  108. </tr>
  109. </tbody>
  110. </table>
  111. </div>
  112. <div style="margin-bottom: 20px;">
  113. <p>患者知情同意书:我对住院期间发生导管脱落的风险及预防措施已知晓,并给予配合。</p>
  114. <div class="zhuangui">
  115. <p style="display: inline-block; margin-right: 70px;">
  116. 患者/家属签字: <el-input v-model="input" style="width:120px;"></el-input>
  117. </p>
  118. <p style="display: inline-block;">
  119. 日期:
  120. <el-date-picker
  121. v-model="value1"
  122. type="date"
  123. placeholder="选择日期"
  124. style="width: 150px;">
  125. </el-date-picker>
  126. </p>
  127. </div>
  128. <div class="zhuangui">
  129. <span>转归:</span>
  130. <div style="display: inline-block;position: relative;top: 0px;">
  131. <el-checkbox-group v-model="checkList">
  132. <el-checkbox v-for="item in zhuangui" :label="item" :key="item"></el-checkbox>
  133. </el-checkbox-group>
  134. </div>
  135. </div>
  136. <div class="zhuangui">
  137. <p style="display: inline-block; margin-right: 30px;">
  138. 评估人签字:
  139. <el-input v-model="input" style="width:120px;"></el-input>
  140. </p>
  141. <p style="display: inline-block;">
  142. 日期:
  143. <el-date-picker
  144. v-model="value1"
  145. type="date"
  146. placeholder="选择日期"
  147. style="width: 150px;">
  148. </el-date-picker>
  149. </p>
  150. </div>
  151. <div class="content_top">
  152. <div class="zhuangui">
  153. <p style="display: inline-block; margin-right: 30px;">
  154. 护士长签字:
  155. <el-select v-model="value" placeholder="请选择" style="width: 120px;">
  156. <el-option
  157. v-for="item in options"
  158. :key="item.value"
  159. :label="item.label"
  160. :value="item.value">
  161. </el-option>
  162. </el-select>
  163. </p>
  164. <p style="display: inline-block;">
  165. 日期:
  166. <el-date-picker
  167. v-model="value1"
  168. type="date"
  169. placeholder="选择日期"
  170. style="width: 150px;">
  171. </el-date-picker>
  172. </p>
  173. </div>
  174. <div>
  175. <el-button type="primary">确定</el-button>
  176. </div>
  177. </div>
  178. </div>
  179. <hr style="background-color:#DCDFE6; height: 1px;border: none;"/>
  180. <div class="shuoming">
  181. <p>说明:</p>
  182. <p>1. 患者入院首次动态评估,压疮危险因素评分≤18分,填写该表。</p>
  183. <p>2. 压疮危险因素:</p>
  184. <p>&nbsp;&nbsp;&nbsp;&nbsp;评分15~18分(低危),有责任组长负责质量监控并每周评估一次;</p>
  185. <p>&nbsp;&nbsp;&nbsp;&nbsp;评分13~14分(中危),有护士长/院伤口小组成员负责质量监控并每周评估2次;</p>
  186. <p>&nbsp;&nbsp;&nbsp;&nbsp;评分≤12分(高危),由大科护士长负责质量监管,隔日评估1次。</p>
  187. <p>3. 评分符合难免压疮申报条件(≤12分),填写难免压疮申报表。</p>
  188. </div>
  189. </div>
  190. </div>
  191. </div>
  192. </template>
  193. <script>
  194. import PatientSidebar from '../components/PatientSidebar'
  195. export default {
  196. components:{
  197. PatientSidebar
  198. },
  199. data(){
  200. return{
  201. patientID:0,
  202. value1:'',
  203. checkList:[],
  204. input:'',
  205. options:[],
  206. value:'',
  207. zhuangui:['出院','死亡','其他']
  208. }
  209. }
  210. }
  211. </script>
  212. <style lang="scss" scoped>
  213. .content_top{
  214. display: flex;
  215. justify-content: space-between;
  216. }
  217. .table{
  218. border: 1px solid #DCDFE6;
  219. border-collapse:collapse;
  220. border-spacing: 0;
  221. thead th{
  222. background: #0077ff9f;
  223. color: rgb(5, 5, 5);
  224. text-align: center;
  225. height: 40px;
  226. }
  227. tbody td{
  228. height: 40px;
  229. padding: 5px;
  230. }
  231. .start{
  232. text-align: center;
  233. }
  234. .bing{
  235. width: 150px;
  236. text-align: center;
  237. }
  238. .bg_color{
  239. background: rgb(243, 240, 240);
  240. }
  241. .jiange{
  242. margin-left: 20px;
  243. color: black;
  244. }
  245. input{
  246. -webkit-appearance: checkbox;
  247. }
  248. }
  249. .shuoming p{
  250. margin-top: 5px;
  251. color: rgb(167, 165, 165);
  252. }
  253. .zhuangui{
  254. margin-top: 10px;
  255. }
  256. </style>