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

Glasgow.vue 10KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. <template>
  2. <div class="patient-container">
  3. <patient-sidebar :id="patientID" defaultActive="5-13"></patient-sidebar>
  4. <div>
  5. <div class="patient-app-container advice-container app-container">
  6. <div class="content_top">
  7. <!-- 左 -->
  8. <div style="width: 58%;">
  9. <div style="margin-bottom: 20px;"><el-button type="primary">新增</el-button></div>
  10. <div style="font-size: 20px;margin-bottom: 20px;">Glasgow昏迷评分量表</div>
  11. <div style="width: 100%;">
  12. <table class="table" border="1" style="width: 100%;">
  13. <thead>
  14. <tr>
  15. <th style="width: 150px;">项目</th>
  16. <th>分值</th>
  17. </tr>
  18. </thead>
  19. <tbody>
  20. <tr class="bg_color">
  21. <td class="start">睁眼反应(E)</td>
  22. <td>
  23. <div style="display: flex;flex-wrap: wrap;padding:4px 0 4px 8px;">
  24. <span v-for="item in zhengyan" class="ttbwzz-type-a" @change="handleCheckedCitiesChange">
  25. <label><input type="checkbox" name="ball" :value="item" />&nbsp;{{ item }}</label>
  26. </span>
  27. </div>
  28. </td>
  29. </tr>
  30. <tr>
  31. <td class="start">言语反映 (V)</td>
  32. <td>
  33. <div style="display: flex;flex-wrap: wrap;padding:4px 0 4px 8px;">
  34. <span v-for="item in yanyu" class="ttbwzz-type-a" @change="handleCheckedCitiesChange">
  35. <label><input type="checkbox" name="ball" :value="item" />&nbsp;{{ item }}</label>
  36. </span>
  37. </div>
  38. </td>
  39. </tr>
  40. <tr class="bg_color">
  41. <td class="start">运动反应(M)</td>
  42. <td>
  43. <div style="display: flex;flex-wrap: wrap;padding:4px 0 4px 8px;">
  44. <span v-for="item in yundong" class="ttbwzz-type-a" @change="handleCheckedCitiesChange">
  45. <label><input type="checkbox" name="ball" :value="item" />&nbsp;{{ item }}</label>
  46. </span>
  47. </div>
  48. </td>
  49. </tr>
  50. </tbody>
  51. </table>
  52. </div>
  53. <div style="vertical-align: top; margin: 10px 0px; position: relative;">
  54. <span style="position: relative; top: -55px;">护理措施:</span>
  55. <div style="margin-top: 20px;display: inline-block; width: 90%;">
  56. <el-input maxlength="200" type = "textarea" :rows="3" v-model="input" placeholder="输入护理措施,200字以内" ></el-input>
  57. </div>
  58. </div>
  59. <div>
  60. <div class="bottoms">
  61. <span>总分:</span>
  62. <el-input v-model="Glasgow_Totalpoints" placeholder="请输入内容" style="width: 100px;"></el-input>分
  63. </div>
  64. <div class="bottoms">
  65. <span>评估日期:</span>
  66. <el-date-picker
  67. v-model="value1"
  68. type="date"
  69. placeholder="选择日期"
  70. :clearable="false"
  71. style="width: 150px;">
  72. </el-date-picker>
  73. </div>
  74. <div class="bottoms">
  75. <span>评估人:</span>
  76. <el-select v-model="value" placeholder="请选择" >
  77. <el-option
  78. v-for="item in options"
  79. :key="item.value"
  80. :label="item.label"
  81. :value="item.value"
  82. style="width:150px;">
  83. </el-option>
  84. </el-select>
  85. </div>
  86. </div>
  87. <hr style=" background-color: #DCDFE6;margin-top: 20px; height: 1px;border: none;"/>
  88. <div class="shuoming">
  89. <p>说明:</p>
  90. <p>总分15分,其中 14-15分为正常,8-13分为中度意识障碍,≦7分为浅昏迷 ,3分为深昏迷 。</p>
  91. </div>
  92. </div>
  93. <!-- 虚线 -->
  94. <div style="height: 100vh; width: 1px; border-left:1px dashed #DCDFE6 ;"></div>
  95. <!-- 右 -->
  96. <div style="width: 38%;">
  97. <div style="font-size: 20px; margin-bottom: 20px;">评估历史记录</div>
  98. <div style="width: 100%;">
  99. <el-table
  100. :data="tableData"
  101. stripe
  102. border
  103. :header-cell-style="{
  104. background: '#0077ff9f',color:'white'}"
  105. style="width: 100%">
  106. <el-table-column
  107. prop="date"
  108. label="评估日期"
  109. width="180">
  110. </el-table-column>
  111. <el-table-column
  112. prop="name"
  113. label="总分"
  114. >
  115. </el-table-column>
  116. <el-table-column
  117. prop="name"
  118. label="评估人"
  119. >
  120. </el-table-column>
  121. </el-table>
  122. </div>
  123. </div>
  124. </div>
  125. </div>
  126. </div>
  127. </div>
  128. </template>
  129. <script>
  130. import PatientSidebar from '../components/PatientSidebar.vue'
  131. export default {
  132. components:{
  133. PatientSidebar
  134. },
  135. data(){
  136. return{
  137. patientID:0,
  138. checkList:'',
  139. checkList1:'',
  140. checkList2:'',
  141. value1:'',
  142. value:'',
  143. input:'',
  144. Glasgow_Totalpoints:0,
  145. options:[],
  146. tableData:[],
  147. zhengyan:['自动睁眼(4分)','互换睁眼(3分)','刺激睁眼(2分)','无反应(1分)'],
  148. yanyu:['正常(5分)','不准确回答问题(4分)','不恰当词句(3分)','不能理解的言语(2分)','无言语反映(1分)'],
  149. yundong:['能按指令运动肢体(6分)','对刺痛能定位(5分)','对刺痛能躲避(4分)','刺痛肢体屈曲(3分)','刺痛肢体过伸(2分)','无反应(1分)'],
  150. }
  151. },
  152. methods:{
  153. handleCheckedCitiesChange(e){
  154. var ball = e.target.value
  155. var jiequ =(ball.split('(')[1].split('分')[0]) * 1
  156. if(e.target.checked==true){
  157. this.tumble_Totalpoints=this.tumble_Totalpoints + jiequ
  158. // console.log('22222 .slice(1)',ball);
  159. // console.log('3333333333',this.tumble_Totalpoints);
  160. return this.tumble_Totalpoints
  161. }else{
  162. this.tumble_Totalpoints=this.tumble_Totalpoints-jiequ
  163. return this.tumble_Totalpoints
  164. }
  165. }
  166. }
  167. }
  168. </script>
  169. <style lang="scss" scoped>
  170. .content_top{
  171. display: flex;
  172. justify-content: space-between;
  173. }
  174. .bottoms{
  175. display: inline-block;
  176. margin-left: 10px;
  177. margin-top: 5px;
  178. }
  179. .shuoming p{
  180. margin-top: 5px;
  181. color: rgb(167, 165, 165);
  182. }
  183. .table{
  184. border: 1px solid #DCDFE6;
  185. border-collapse:collapse;
  186. border-spacing: 0;
  187. thead th{
  188. background: #0077ff9f;
  189. color: white;
  190. text-align: center;
  191. height: 40px;
  192. }
  193. tbody td{
  194. height: 40px;
  195. }
  196. .start{
  197. text-align: center;
  198. }
  199. .bing{
  200. width: 150px;
  201. text-align: center;
  202. }
  203. .bg_color{
  204. background: rgb(243, 240, 240);
  205. }
  206. .jiange{
  207. margin: 5px 0px 5px 20px;
  208. color: black;
  209. }
  210. .rightjiange{
  211. margin-right: 40px;
  212. font-size: 15px;
  213. }
  214. .ttbwzz-type-a {
  215. min-width: 80px;
  216. margin-right: 30px;
  217. padding: 5px 0px;
  218. font-size: 15px;
  219. }
  220. input{
  221. -webkit-appearance: checkbox;
  222. }
  223. }
  224. </style>