Constraintnotification.vue 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. <template>
  2. <div class="patient-container">
  3. <patient-sidebar :id="patientID" defaultActive="5-9"></patient-sidebar>
  4. <div>
  5. <div class="patient-app-container advice-container app-container">
  6. <div class="content_top" style="background: rgb(243, 240, 240);border: 1px solid #DCDFE6;padding: 10px;">
  7. <p style="font-size: 18px;">约束告知单</p>
  8. <div>
  9. <el-button type="primary">确定</el-button>
  10. </div>
  11. </div>
  12. <div style="background: rgb(243, 240, 240);padding: 5px;border: 1px solid #DCDFE6;">
  13. <span>
  14. 尊敬的患者、家属及患者的法定监护人、授权委托人:
  15. 患者目前诊断:<el-input v-model="input" style="width:200px"></el-input>
  16. </span>
  17. </div>
  18. <table class="table" border="1" style="width: 100%; padding: 5px;">
  19. <tr>
  20. <td style="width: 150px; height: 40px; ">存在以下潜在风险:</td>
  21. <td>
  22. <div class="jiange">
  23. <el-checkbox-group v-model="checkList">
  24. <el-checkbox v-for="item in qianzai" :label="item" :key="item"></el-checkbox>
  25. </el-checkbox-group>
  26. </div>
  27. </td>
  28. </tr>
  29. </table>
  30. <table class="table" border="1" style="width: 100%;">
  31. <thead>
  32. <tr>
  33. <th style="width:150px">项目</th>
  34. <th>患者评估</th>
  35. </tr>
  36. </thead>
  37. <tbody>
  38. <tr>
  39. <td class="start">意识及情绪:</td>
  40. <td>
  41. <div class="jiange">
  42. <el-checkbox-group v-model="checkList">
  43. <el-checkbox v-for="item in yisqingxu" :label="item" :key="item"></el-checkbox>
  44. </el-checkbox-group>
  45. </div>
  46. </td>
  47. </tr>
  48. <tr class="bg_color">
  49. <td class="start">手术麻醉:</td>
  50. <td>
  51. <div class="jiange">
  52. <el-checkbox-group v-model="checkList">
  53. <el-checkbox v-for="item in mazui" :label="item" :key="item"></el-checkbox>
  54. </el-checkbox-group>
  55. </div>
  56. </td>
  57. </tr>
  58. <tr class="">
  59. <td class="start"></td>
  60. <td>
  61. <div class="jiange">
  62. <el-checkbox-group v-model="checkList">
  63. <el-checkbox label="醉酒躁动"></el-checkbox>
  64. </el-checkbox-group>
  65. </div>
  66. </td>
  67. </tr>
  68. <tr class="bg_color">
  69. <td class="start">管道:</td>
  70. <td>
  71. <div class="jiange">
  72. <el-checkbox-group v-model="checkList">
  73. <el-checkbox v-for="item in guandao" :label="item" :key="item"></el-checkbox>
  74. </el-checkbox-group>
  75. </div>
  76. </td>
  77. </tr>
  78. <tr>
  79. <td class="start">上肢情况:</td>
  80. <td>
  81. <div class="jiange">
  82. <el-checkbox-group v-model="checkList">
  83. <el-checkbox v-for="item in shangzhi" :label="item" :key="item"></el-checkbox>
  84. </el-checkbox-group>
  85. </div>
  86. </td>
  87. </tr>
  88. <tr class="bg_color">
  89. <td class="start">下肢情况:</td>
  90. <td>
  91. <div class="jiange">
  92. <el-checkbox-group v-model="checkList">
  93. <el-checkbox v-for="item in xiazhi" :label="item" :key="item"></el-checkbox>
  94. </el-checkbox-group>
  95. </div>
  96. </td>
  97. </tr>
  98. <tr class="">
  99. <td class="start">皮肤状况:</td>
  100. <td>
  101. <div class="jiange">
  102. <el-checkbox-group v-model="checkList">
  103. <el-checkbox v-for="item in pifu" :label="item" :key="item"></el-checkbox>
  104. </el-checkbox-group>
  105. </div>
  106. </td>
  107. </tr>
  108. <tr class="bg_color">
  109. <td colspan="2">
  110. <div style="width: 60%; margin-bottom: 15px;">
  111. <div style="height: 40px; line-height: 40px;border:1px solid #DCDFE6; "><ul>
  112. <li style="list-style: disc;margin-left: 20px;">为防止无法预计的意外,需要实施保护性约束</li>
  113. </ul></div>
  114. <table class="table" border="1" style="width: 100%;">
  115. <thead>
  116. <tr>
  117. <th>约束方式</th>
  118. <th>约束并发症</th>
  119. </tr>
  120. </thead>
  121. <tbody>
  122. <tr class="bg_color">
  123. <td></td>
  124. <td></td>
  125. </tr>
  126. <tr class="">
  127. <td></td>
  128. <td></td>
  129. </tr>
  130. <tr class="bg_color">
  131. <td></td>
  132. <td></td>
  133. </tr>
  134. <tr class="">
  135. <td></td>
  136. <td></td>
  137. </tr>
  138. <tr class="bg_color">
  139. <td></td>
  140. <td></td>
  141. </tr>
  142. <tr class="">
  143. <td></td>
  144. <td></td>
  145. </tr>
  146. </tbody>
  147. </table>
  148. </div>
  149. </td>
  150. </tr>
  151. <tr >
  152. <td colspan="2">
  153. <span>
  154. 根据患者的病情记医嘱,需要实施保护性约束,预防意外的发生,由于受个体差异的影响,约束过程存在不可预见的危险情况;
  155. 在约束过程中医护人员会定时观察约束部位的血液循环情况,在患者符合解除约束指征的情况下给予解除约束。
  156. </span>
  157. </td>
  158. </tr>
  159. <tr class="bg_color">
  160. <td colspan="2">
  161. <span>
  162. 患者或家属意见:<el-input v-model="input" style="width:200px"></el-input>
  163. </span>
  164. </td>
  165. </tr>
  166. <tr class="">
  167. <td colspan="2">
  168. <span class="bottoms">
  169. 患者或家属签名:<el-input v-model="input" style="width:200px"></el-input>
  170. </span>
  171. <span class="bottoms">
  172. 与患者关系:<el-input v-model="input" style="width:200px"></el-input>
  173. </span>
  174. <span class="bottoms">
  175. 日期:
  176. <el-date-picker
  177. v-model="value1"
  178. type="date"
  179. placeholder="选择日期"
  180. style="width:150px">
  181. </el-date-picker>
  182. </span>
  183. </td>
  184. </tr>
  185. <tr class="bg_color">
  186. <td colspan="2">
  187. <span class="bottoms">
  188. 告知者签名:<el-input v-model="input" style="width:200px"></el-input>
  189. </span>
  190. <span class="bottoms" style="margin-left: 385px;">
  191. 日期:
  192. <el-date-picker
  193. v-model="value1"
  194. type="date"
  195. placeholder="选择日期"
  196. style="width:150px">
  197. </el-date-picker>
  198. </span>
  199. </td>
  200. </tr>
  201. </tbody>
  202. </table>
  203. </div>
  204. </div>
  205. </div>
  206. </template>
  207. <script>
  208. import PatientSidebar from '../components/PatientSidebar.vue'
  209. export default {
  210. components:{
  211. PatientSidebar
  212. },
  213. data(){
  214. return{
  215. patientID:0,
  216. value1:'',
  217. input:'',
  218. checkList:[],
  219. qianzai:['坠床','自伤','非计划拔管','伤人','其他'],
  220. yisqingxu:['烦躁不安','狂躁','自杀','自伤','伤人'],
  221. mazui:['全麻术后未清醒','躁动不配合','术后瞻妄综合症'],
  222. guandao:['尿管','胃管','腹腔引流管','胸腔闭室引流管','脑室引流管','造痿管','气管插管','气管切开','深静脉置管','其他'],
  223. shangzhi:['正常','骨折','皮肤损伤','其他'],
  224. xiazhi:['正常','骨折','皮肤损伤','其他'],
  225. pifu:['完整水肿','破损','黄疸','紫绀','压疮','皮疹','潮红','部位']
  226. }
  227. }
  228. }
  229. </script>
  230. <style lang="scss" scoped>
  231. .content_top{
  232. display: flex;
  233. justify-content: space-between;
  234. }
  235. .table{
  236. border: 1px solid #DCDFE6;
  237. border-collapse:collapse;
  238. border-spacing: 0;
  239. thead th{
  240. background: #0077ff9f;
  241. color: white;
  242. text-align: center;
  243. height: 40px;
  244. // padding: 5px;
  245. }
  246. tbody td{
  247. height: 40px;
  248. padding: 5px;
  249. }
  250. .start{
  251. text-align: center;
  252. }
  253. .bing{
  254. width: 150px;
  255. text-align: center;
  256. }
  257. .bg_color{
  258. background: rgb(243, 240, 240);
  259. }
  260. .jiange{
  261. margin-left: 20px;
  262. color: black;
  263. }
  264. input{
  265. -webkit-appearance: checkbox;
  266. }
  267. .bottoms{
  268. display: inline-block;
  269. margin: 5px 50px 5px 5px;
  270. }
  271. }
  272. </style>