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

Pressure_history.vue 34KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867
  1. <!-- 压疮风险 -->
  2. <template>
  3. <div class="patient-container">
  4. <div class="patient-app-containers advice-container app-container">
  5. <div style="display: flex;margin-bottom: 20px;">
  6. <div style="width: 50%;">
  7. <el-button type="text" icon="el-icon-arrow-left" style="font-size: 18px;" @click="fanhui">返回</el-button>
  8. <div class="history">历史评分</div>
  9. </div>
  10. <div style="margin-left: 30%;">
  11. <el-button type="primary" @click="open_pingfen">打印评分</el-button>
  12. <el-button type="primary" @click="open_mingxi">打印明细</el-button>
  13. </div>
  14. </div>
  15. <div>
  16. <el-table
  17. ref="multipleTable"
  18. :data="tableData"
  19. border
  20. tooltip-effect="dark"
  21. :header-cell-style="{
  22. background:'#4579c5',
  23. color:'#fff'
  24. }"
  25. style="width: 100%"
  26. @selection-change="handleSelectionChange">
  27. <el-table-column
  28. type="selection"
  29. width="55"
  30. align="center">
  31. </el-table-column>
  32. <el-table-column
  33. prop="time"
  34. label="评估日期"
  35. width=""
  36. align="center">
  37. </el-table-column>
  38. <el-table-column
  39. prop="ganzhi"
  40. label="感知"
  41. width=""
  42. align="center">
  43. </el-table-column>
  44. <el-table-column
  45. prop="shidu"
  46. label="潮湿"
  47. width=""
  48. align="center">
  49. </el-table-column>
  50. <el-table-column
  51. prop="huodong"
  52. label="活动能力"
  53. width=""
  54. align="center">
  55. </el-table-column>
  56. <el-table-column
  57. prop="yidong"
  58. label="移动能力"
  59. width=""
  60. align="center">
  61. </el-table-column>
  62. <el-table-column
  63. prop="yingyang"
  64. label="营养"
  65. width=""
  66. align="center">
  67. </el-table-column>
  68. <el-table-column
  69. prop="mocha"
  70. label="摩擦力与剪切力"
  71. width=""
  72. align="center">
  73. </el-table-column>
  74. <el-table-column
  75. prop="mark"
  76. label="总分"
  77. width=""
  78. align="center">
  79. </el-table-column>
  80. <el-table-column
  81. prop="evaluate"
  82. label="评分护士"
  83. width=""
  84. align="center">
  85. </el-table-column>
  86. <el-table-column
  87. prop="address"
  88. label="操作"
  89. width="180"
  90. align="center"
  91. show-overflow-tooltip>
  92. <template slot-scope="scope">
  93. <el-button type="primary" icon="el-icon-edit-outline" @click="open_editor(scope.row)"></el-button>
  94. <el-button type="primary" icon="el-icon-delete" @click="open_delete(scope.row)"></el-button>
  95. </template>
  96. </el-table-column>
  97. </el-table>
  98. </div>
  99. </div>
  100. <!-- 打印评分 -->
  101. <el-dialog
  102. title="提示"
  103. :visible.sync="dialogVisible"
  104. width="67%"
  105. >
  106. <div>
  107. <div style="overflow: hidden;">
  108. <el-button type="primary" @click="print_pingfen(1)" style="float:right">打印</el-button>
  109. </div>
  110. <div id="pingfeng" >
  111. <div class="diedao_content" style="">
  112. <div style="width:100%;margin-top: 20px;">
  113. <div style="text-align: center;"><h1>血液透析中心跌倒评估记录</h1></div>
  114. <div style="margin-top: 20px;font-size: 16px;">
  115. <span>患者姓名:</span>
  116. <span>透析号:</span>
  117. <span>打印时间:</span>
  118. </div>
  119. <table class="tables" border="1" style="border-collapse:collapse;text-align:center;width:100%;font-size:16px">
  120. <tr>
  121. <td style="width:150px">评估日期</td>
  122. <td style="width:100px">感知</td>
  123. <td style="width:100px">潮湿</td>
  124. <td style="width:100px">活动能力</td>
  125. <td style="width:100px">移动能力</td>
  126. <td style="width:100px">营养</td>
  127. <td style="width:100px">摩擦力与剪切力</td>
  128. <td style="width:100px">总分</td>
  129. <td style="width:100px">评估护士</td>
  130. </tr>
  131. <tr v-for="item in multipleSelection" >
  132. <td>{{item.time}}</td>
  133. <td>{{item.ganzhi}}</td>
  134. <td>{{item.shidu}}</td>
  135. <td>{{item.huodong}}</td>
  136. <td>{{item.yidong}}</td>
  137. <td>{{item.yingyang}}</td>
  138. <td>{{item.mocha}}</td>
  139. <td>{{item.mark}}</td>
  140. <td>{{item.evaluate}}</td>
  141. </tr>
  142. </table>
  143. </div>
  144. </div>
  145. </div>
  146. </div>
  147. <span slot="footer" class="dialog-footer">
  148. <el-button @click="dialogVisible = false">取 消</el-button>
  149. <el-button type="primary" @click="dialogVisible = false">确 定</el-button>
  150. </span>
  151. </el-dialog>
  152. <!-- 打印明细 -->
  153. <el-dialog
  154. title="提示"
  155. :visible.sync="mingxi_dialogVisible"
  156. width="67%"
  157. >
  158. <div>
  159. <div style="overflow: hidden;">
  160. <el-button type="primary" @click="print_pingfen(2)" style="float:right">打印</el-button>
  161. </div>
  162. <div id="mingxi" >
  163. <div class="diedao_content" style="">
  164. <div style="width:100%;margin-top: 20px;">
  165. <div style="text-align: center;"><h1>血液透析中心跌倒评估记录</h1></div>
  166. <div style="margin-top: 20px;font-size: 16px;">
  167. <span>患者姓名:</span>
  168. <span>透析号:</span>
  169. <span>评估日期:</span>
  170. <span>责任护士:</span>
  171. <span>评分:</span>
  172. </div>
  173. <table class="tables" id="table" border="1" style="width: 100%;border-collapse: collapse;">
  174. <thead>
  175. <tr>
  176. <th rowspan="2" style="width: 9%">项目/编码</th>
  177. <th colspan="4" style="width: 68%;">分值</th>
  178. <th rowspan="2" style="width: 9%">得分</th>
  179. </tr>
  180. <tr>
  181. <th >1分</th>
  182. <th >2分</th>
  183. <th >3分</th>
  184. <th >4分</th>
  185. </tr>
  186. </thead>
  187. <tbody>
  188. <tr class="start">
  189. <td >
  190. <span class="bing">A.感知</span><br/>
  191. 机体对压力所引起不适感的反应能力
  192. </td>
  193. <td >
  194. 完全受限 <br>对疼痛刺激没有反应(没有呻吟,退缩或紧握)或者绝大部分机体对疼痛的感觉受限
  195. </td>
  196. <td >
  197. 中度受限<br>只对疼痛刺激有反应,能通过呻吟、烦躁的方式表达机体不适。或者机体一半以上的部位对疼痛或不适感觉障碍
  198. </td>
  199. <td>
  200. 轻微受限<br>对其讲话有反应,但不是所有时间都能用语言表达不适感。或者机体机体的一到两个肢体对疼痛或不适感感觉障碍
  201. </td>
  202. <td>
  203. 没有改变<br>对其讲话有反应,机体没有对疼痛或不适的感觉确失
  204. </td>
  205. <td></td>
  206. </tr>
  207. <tr class="bg_color start">
  208. <td class="start">
  209. <span class="bing">B.湿度</span><br/>
  210. 皮肤处于潮湿状态的程度
  211. </td>
  212. <td>
  213. 持久潮湿<br>由于出汗、小便等原因皮肤一直处于潮湿状态,每当移动患者或者给患者翻身时就可以发现患者皮肤是湿的
  214. </td>
  215. <td>
  216. 非常潮湿<br>皮肤经常但不总是处于潮湿状态,床单每天至少换一次
  217. </td>
  218. <td>
  219. 偶尔潮湿<br>每天大概需要额外换一次床单
  220. </td>
  221. <td>
  222. 很少潮湿<br>皮肤通常是干的,只是按照常规换床单即可
  223. </td>
  224. <td></td>
  225. </tr>
  226. <tr class="start">
  227. <td>
  228. <span class="bing">C.活动能力</span><br>
  229. 躯体活动的能力
  230. </td>
  231. <td>
  232. 卧床不起<br>限制在床上
  233. </td>
  234. <td>
  235. 局限于轮椅活动<br>行动能力严重受限或者没有行走能力
  236. </td>
  237. <td>
  238. 可偶尔步行<br>白天在帮助或者无需帮助的情况下偶尔可以走一段路。每天大部分时间在床上或者椅子上度过
  239. </td>
  240. <td>
  241. 经常步行<br>每天至少2次室外行走,白天醒着的时候至少每2h行走一次
  242. </td>
  243. <td></td>
  244. </tr>
  245. <tr class="bg_color start">
  246. <td>
  247. <span class="bing">D.移动能力</span><br>
  248. 改变/控制躯体位置的能力
  249. </td>
  250. <td>
  251. 完全受限<br>没有帮助的情况下不能完成轻微的躯体 或者四肢的位置变动
  252. </td>
  253. <td>
  254. 严重受限<br>偶尔能轻微地移动躯体或者四肢,但不能独立完成经常的或显著的躯体位置变动
  255. </td>
  256. <td>
  257. 轻度受限<br>能经常独立地改变躯体或四肢的位置,但变动幅度不大
  258. </td>
  259. <td>
  260. 不受限<br>能经常独立地改变躯体或四肢的位置,但变动幅度不大
  261. </td>
  262. <td></td>
  263. </tr>
  264. <tr class="start">
  265. <td>
  266. <span class="bing">E.营养</span><br>
  267. 平常的食物摄入模式
  268. </td>
  269. <td>
  270. 重度营养摄入不足<br>
  271. 从来不能吃完一餐饭,很少能摄入所给实物量的1/3。每天能摄入2份或以下的蛋白量(肉或者乳制品)很少摄入液体,没有摄入流质饮食。或者禁食和/或清流摄入或静脉输入大于5d
  272. </td>
  273. <td>
  274. 营养摄入不足<br>
  275. 很少能吃完一餐饭,通常只能摄入所给食物的1/2。每天蛋白摄入量是3份肉或者乳制品。偶尔能摄入规定实物量。或者可摄入略低于理想量的流质或者管饲
  276. </td>
  277. <td>
  278. 营养摄入适当<br>
  279. 可摄入提供量的一半以上。每天4份蛋白量(肉或乳制品),偶尔拒绝肉类,如果提供给食物通常会吃掉。或者管饲或TNP能达到绝大部分的营养所需
  280. </td>
  281. <td>
  282. 营养摄入良好<br>每餐能摄入绝大部分食物从来不拒绝食物,通常吃4份或更多的肉和乳制品,两餐间偶尔进食。不需要其他补充食物
  283. </td>
  284. <td></td>
  285. </tr>
  286. <tr class="bg_color start">
  287. <td>
  288. <span class="bing">F.摩擦力和剪切力</span><br>
  289. </td>
  290. <td>
  291. 有此问题<br>
  292. 移动时需要得到大量的帮助,不可能做到完全抬空而不碰到床单,在床上或椅子上时经常滑落。需要大力帮助下重摆体位。痉挛、挛缩或躁动不安通常导致摩擦
  293. </td>
  294. <td>
  295. 有潜在问题<br>
  296. 躯体移动乏力,或者需要一些帮助,在移动过程中,皮肤在一定程度上会碰到床单、椅子、约束带或者其他设施。在床上或椅子上可保持相对好的位置,偶尔会滑落下来
  297. </td>
  298. <td>
  299. 无明显问题<br>
  300. 能独立在床上或椅子上移动,并且有足够的肌肉力量在移动时完全抬空躯体。在床上和椅子上总是保持良好的位置
  301. </td>
  302. <td></td>
  303. </tr>
  304. </tbody>
  305. </table>
  306. </div>
  307. <div style="font-size: 16px;">护理措施:</div>
  308. <p style="margin: 10px 0;">说明:总分23分,15~18分为低危;13~14分为中危;10~12分为高危;≤9分为极高危</p>
  309. <div style="margin-bottom: 20px;">
  310. <p>患者知情同意书:我对住院期间发生导管脱落的风险及预防措施已知晓,并给予配合。</p>
  311. <div class="zhuangui">
  312. <p style="display: inline-block; margin-right: 70px;">
  313. 患者/家属签字:
  314. <span style="display: inline-block; border-bottom: 1px solid black;width: 50px;"></span>
  315. </p>
  316. <p style="display: inline-block;">
  317. 日期:
  318. <span style="display: inline-block; border-bottom: 1px solid black;width: 50px;"></span>
  319. </p>
  320. </div>
  321. <div class="zhuangui">
  322. <span>转归:</span>
  323. <div style="display: inline-block;position: relative;top: 0px;">
  324. <div class="jiange" v-for="item in zhuangui" style="display: inline-block;margin-right: 10px;">
  325. <label><input name="ball" type="checkbox" :value="item" />&nbsp;{{item}}</label>
  326. </div>
  327. </div>
  328. </div>
  329. <div class="zhuangui">
  330. <p style="display: inline-block; margin-right: 30px;">
  331. 评估人签字:
  332. <span style="display: inline-block; border-bottom: 1px solid black;width: 50px;"></span>
  333. </p>
  334. <p style="display: inline-block;">
  335. 日期:
  336. <span style="display: inline-block; border-bottom: 1px solid black;width: 50px;"></span>
  337. </p>
  338. </div>
  339. <div class="content_top">
  340. <div class="zhuangui">
  341. <p style="display: inline-block; margin-right: 30px;">
  342. 护士长签字:
  343. <span style="display: inline-block; border-bottom: 1px solid black;width: 50px;"></span>
  344. </p>
  345. <p style="display: inline-block;">
  346. 日期:
  347. <span style="display: inline-block; border-bottom: 1px solid black;width: 50px;"></span>
  348. </p>
  349. </div>
  350. </div>
  351. <div>
  352. 打印时间:
  353. </div>
  354. </div>
  355. </div>
  356. </div>
  357. </div>
  358. </el-dialog>
  359. <!-- 编辑 -->
  360. <el-dialog
  361. title="提示"
  362. :visible.sync="editor_dialogVisible"
  363. width="67%"
  364. >
  365. <div>
  366. <div style="margin: 20px 0px;width: 100%;">
  367. <table class="table" border style="width: 100%;">
  368. <thead>
  369. <tr>
  370. <th rowspan="2" style="width: 9%">项目/编码</th>
  371. <th colspan="4" style="width: 68%;">分值</th>
  372. <th rowspan="2" style="width: 9%">说明</th>
  373. <th rowspan="2" style="width: 14%">护理措施</th>
  374. </tr>
  375. <tr>
  376. <th >1分</th>
  377. <th >2分</th>
  378. <th >3分</th>
  379. <th >4分</th>
  380. </tr>
  381. </thead>
  382. <tbody>
  383. <tr class="start">
  384. <td >
  385. <span class="bing">A.感知</span><br/>
  386. 机体对压力所引起不适感的反应能力
  387. </td>
  388. <td >
  389. 完全受限 <br>对疼痛刺激没有反应(没有呻吟,退缩或紧握)或者绝大部分机体对疼痛的感觉受限
  390. </td>
  391. <td >
  392. 中度受限<br>只对疼痛刺激有反应,能通过呻吟、烦躁的方式表达机体不适。或者机体一半以上的部位对疼痛或不适感觉障碍
  393. </td>
  394. <td>
  395. 轻微受限<br>对其讲话有反应,但不是所有时间都能用语言表达不适感。或者机体机体的一到两个肢体对疼痛或不适感感觉障碍
  396. </td>
  397. <td>
  398. 没有改变<br>对其讲话有反应,机体没有对疼痛或不适的感觉确失
  399. </td>
  400. <td rowspan="6" style="vertical-align: middle;">
  401. <div style="text-align: center;">
  402. 总分23分,<br>
  403. 15~18分为低危;<br>
  404. 13~14分为中危;<br>
  405. 10~12分为高危;<br>
  406. ≤9分为极高危
  407. </div>
  408. </td>
  409. <td rowspan="6" style="position: relative;vertical-align: top;">
  410. <div class="jiange">
  411. <label><input name="ball" type="checkbox" value="football" />&nbsp;挂床头警示标识</label>
  412. </div>
  413. <div class="jiange">
  414. <label><input name="ball" type="checkbox" value="football" />&nbsp;保护受压皮肤,使用减压用具(气垫床/压疮床)</label>
  415. </div>
  416. <div class="jiange">
  417. <label><input name="ball" type="checkbox" value="football" />&nbsp;定时翻身,移动避免拖拉</label>
  418. </div>
  419. <div class="jiange">
  420. <label><input name="ball" type="checkbox" value="football" />&nbsp;加强营养</label>
  421. </div>
  422. <div class="jiange">
  423. <label><input name="ball" type="checkbox" value="football" />&nbsp;保持被衣物清洁舒适</label>
  424. </div>
  425. <div class="jiange">
  426. <label><input name="ball" type="checkbox" value="football" />&nbsp;其他</label>
  427. </div>
  428. <div class="tianjia" @click="add_press=true">
  429. <!-- style="position: absolute;bottom: 0px;font-size: 17px;color:#4579C5;line-height: 40px;" -->
  430. +添加
  431. </div>
  432. </td>
  433. </tr>
  434. <tr class="bg_color start">
  435. <td class="start">
  436. <span class="bing">B.湿度</span><br/>
  437. 皮肤处于潮湿状态的程度
  438. </td>
  439. <td>
  440. 持久潮湿<br>由于出汗、小便等原因皮肤一直处于潮湿状态,每当移动患者或者给患者翻身时就可以发现患者皮肤是湿的
  441. </td>
  442. <td>
  443. 非常潮湿<br>皮肤经常但不总是处于潮湿状态,床单每天至少换一次
  444. </td>
  445. <td>
  446. 偶尔潮湿<br>每天大概需要额外换一次床单
  447. </td>
  448. <td>
  449. 很少潮湿<br>皮肤通常是干的,只是按照常规换床单即可
  450. </td>
  451. </tr>
  452. <tr class="start">
  453. <td>
  454. <span class="bing">C.活动能力</span><br>
  455. 躯体活动的能力
  456. </td>
  457. <td>
  458. 卧床不起<br>限制在床上
  459. </td>
  460. <td>
  461. 局限于轮椅活动<br>行动能力严重受限或者没有行走能力
  462. </td>
  463. <td>
  464. 可偶尔步行<br>白天在帮助或者无需帮助的情况下偶尔可以走一段路。每天大部分时间在床上或者椅子上度过
  465. </td>
  466. <td>
  467. 经常步行<br>每天至少2次室外行走,白天醒着的时候至少每2h行走一次
  468. </td>
  469. </tr>
  470. <tr class="bg_color start">
  471. <td>
  472. <span class="bing">D.移动能力</span><br>
  473. 改变/控制躯体位置的能力
  474. </td>
  475. <td>
  476. 完全受限<br>没有帮助的情况下不能完成轻微的躯体 或者四肢的位置变动
  477. </td>
  478. <td>
  479. 严重受限<br>偶尔能轻微地移动躯体或者四肢,但不能独立完成经常的或显著的躯体位置变动
  480. </td>
  481. <td>
  482. 轻度受限<br>能经常独立地改变躯体或四肢的位置,但变动幅度不大
  483. </td>
  484. <td>
  485. 不受限<br>能经常独立地改变躯体或四肢的位置,但变动幅度不大
  486. </td>
  487. </tr>
  488. <tr class="start">
  489. <td>
  490. <span class="bing">E.营养</span><br>
  491. 平常的食物摄入模式
  492. </td>
  493. <td>
  494. 重度营养摄入不足<br>
  495. 从来不能吃完一餐饭,很少能摄入所给实物量的1/3。每天能摄入2份或以下的蛋白量(肉或者乳制品)很少摄入液体,没有摄入流质饮食。或者禁食和/或清流摄入或静脉输入大于5d
  496. </td>
  497. <td>
  498. 营养摄入不足<br>
  499. 很少能吃完一餐饭,通常只能摄入所给食物的1/2。每天蛋白摄入量是3份肉或者乳制品。偶尔能摄入规定实物量。或者可摄入略低于理想量的流质或者管饲
  500. </td>
  501. <td>
  502. 营养摄入适当<br>
  503. 可摄入提供量的一半以上。每天4份蛋白量(肉或乳制品),偶尔拒绝肉类,如果提供给食物通常会吃掉。或者管饲或TNP能达到绝大部分的营养所需
  504. </td>
  505. <td>
  506. 营养摄入良好<br>每餐能摄入绝大部分食物从来不拒绝食物,通常吃4份或更多的肉和乳制品,两餐间偶尔进食。不需要其他补充食物
  507. </td>
  508. </tr>
  509. <tr class="bg_color start">
  510. <td>
  511. <span class="bing">F.摩擦力和剪切力</span><br>
  512. </td>
  513. <td>
  514. 有此问题<br>
  515. 移动时需要得到大量的帮助,不可能做到完全抬空而不碰到床单,在床上或椅子上时经常滑落。需要大力帮助下重摆体位。痉挛、挛缩或躁动不安通常导致摩擦
  516. </td>
  517. <td>
  518. 有潜在问题<br>
  519. 躯体移动乏力,或者需要一些帮助,在移动过程中,皮肤在一定程度上会碰到床单、椅子、约束带或者其他设施。在床上或椅子上可保持相对好的位置,偶尔会滑落下来
  520. </td>
  521. <td>
  522. 无明显问题<br>
  523. 能独立在床上或椅子上移动,并且有足够的肌肉力量在移动时完全抬空躯体。在床上和椅子上总是保持良好的位置
  524. </td>
  525. <td></td>
  526. </tr>
  527. </tbody>
  528. </table>
  529. <table class="table" border style="width: 100%;">
  530. <thead>
  531. <tr>
  532. <th rowspan="2" style="width: 9%">评估日期</th>
  533. <th colspan="6" style="width: 68%;">评估项目/编码(表格内填写分数)</th>
  534. <th rowspan="2" style="width: 9%">评分</th>
  535. <th rowspan="2" style="width: 14%">责任护士签名</th>
  536. </tr>
  537. <tr>
  538. <th>A</th>
  539. <th>B</th>
  540. <th>C</th>
  541. <th>D</th>
  542. <th>E</th>
  543. <th>F</th>
  544. </tr>
  545. </thead>
  546. <tbody>
  547. <tr>
  548. <td>
  549. <el-date-picker
  550. v-model="value1"
  551. type="date"
  552. placeholder="选择日期"
  553. :clearable="false"
  554. style="width: 140px;">
  555. </el-date-picker>
  556. </td>
  557. <td class="start">
  558. <el-input v-model="ganzhi" style="width:80px;"></el-input>
  559. </td>
  560. <td class="start">
  561. <el-input v-model="shidu" style="width:80px"></el-input>
  562. </td>
  563. <td class="start">
  564. <el-input v-model="huodong" style="width:80px"></el-input>
  565. </td>
  566. <td class="start">
  567. <el-input v-model="yidong" style="width:80px"></el-input>
  568. </td>
  569. <td class="start">
  570. <el-input v-model="yingyang" style="width:80px"></el-input>
  571. </td>
  572. <td class="start">
  573. <el-input v-model="mocha" style="width:80px"></el-input>
  574. </td>
  575. <td class="start">
  576. <el-input v-model="mark" style="width:70px"></el-input>
  577. </td>
  578. <td class="start">
  579. <el-select v-model="value" placeholder="请选择" style="width:120px;">
  580. <el-option
  581. v-for="item in options"
  582. :key="item.value"
  583. :label="item.label"
  584. :value="item.value"
  585. >
  586. </el-option>
  587. </el-select>
  588. </td>
  589. </tr>
  590. </tbody>
  591. </table>
  592. </div>
  593. <div style="margin-bottom: 20px;">
  594. <p>患者知情同意书:我对住院期间发生导管脱落的风险及预防措施已知晓,并给予配合。</p>
  595. <div class="zhuangui">
  596. <p style="display: inline-block; margin-right: 70px;">
  597. 患者/家属签字: <el-input v-model="input" style="width:120px;"></el-input>
  598. </p>
  599. <p style="display: inline-block;">
  600. 日期:
  601. <el-date-picker
  602. v-model="value1"
  603. type="date"
  604. placeholder="选择日期"
  605. style="width: 150px;">
  606. </el-date-picker>
  607. </p>
  608. </div>
  609. <div class="zhuangui">
  610. <span>转归:</span>
  611. <div style="display: inline-block;position: relative;top: 0px;">
  612. <el-checkbox-group v-model="checkList">
  613. <el-checkbox v-for="item in zhuangui" :label="item" :key="item"></el-checkbox>
  614. </el-checkbox-group>
  615. </div>
  616. </div>
  617. <div class="zhuangui">
  618. <p style="display: inline-block; margin-right: 30px;">
  619. 评估人签字:
  620. <el-input v-model="input" style="width:120px;"></el-input>
  621. </p>
  622. <p style="display: inline-block;">
  623. 日期:
  624. <el-date-picker
  625. v-model="value1"
  626. type="date"
  627. placeholder="选择日期"
  628. style="width: 150px;">
  629. </el-date-picker>
  630. </p>
  631. </div>
  632. <div class="content_top">
  633. <div class="zhuangui" style="flex:1">
  634. <p style="display: inline-block; margin-right: 30px;">
  635. 护士长签字:
  636. <el-select v-model="value" placeholder="请选择" style="width: 120px;">
  637. <el-option
  638. v-for="item in options"
  639. :key="item.value"
  640. :label="item.label"
  641. :value="item.value">
  642. </el-option>
  643. </el-select>
  644. </p>
  645. <p style="display: inline-block;">
  646. 日期:
  647. <el-date-picker
  648. v-model="value1"
  649. type="date"
  650. placeholder="选择日期"
  651. style="width: 150px;">
  652. </el-date-picker>
  653. </p>
  654. </div>
  655. <div style="flex:1;margin-top: 10px;">
  656. <el-button type="primary">确定</el-button>
  657. </div>
  658. </div>
  659. </div>
  660. </div>
  661. </el-dialog>
  662. <!-- 编辑添加弹窗页面 -->
  663. <el-dialog
  664. title="增加护理措施"
  665. :visible.sync="add_press"
  666. width="30%"
  667. >
  668. <span>
  669. 护理措施:
  670. <input type="text" style="width: 290px;height: 36px;border: 1px solid #d7d7d7;">
  671. </span>
  672. <span slot="footer" class="dialog-footer">
  673. <el-button @click="add_press = false">取 消</el-button>
  674. <el-button type="primary" @click="add_press = false">确 定</el-button>
  675. </span>
  676. </el-dialog>
  677. <!--删除 -->
  678. <el-dialog
  679. title="提示"
  680. :visible.sync="delete_centerDialogVisible"
  681. width="20%"
  682. center>
  683. <span>是否删除该记录</span>
  684. <span slot="footer" class="dialog-footer">
  685. <el-button @click="delete_centerDialogVisible = false">取 消</el-button>
  686. <el-button type="primary" @click="delete_press">确 定</el-button>
  687. </span>
  688. </el-dialog>
  689. </div>
  690. </template>
  691. <script>
  692. import print from 'print-js'
  693. export default{
  694. data(){
  695. return{
  696. tableData:[{id:1,time:'2023-9-27',ganzhi:'2',shidu:'2',huodong:'3',yidong:'4',yingyang:'1',mocha:'3',mark:'15',evaluate:'千亦雪'}],
  697. multipleSelection:[],
  698. dialogVisible:false,
  699. mingxi_dialogVisible:false,
  700. editor_dialogVisible:false,
  701. delete_centerDialogVisible:false,
  702. ganzhi:null,
  703. shidu:null,
  704. huodong:null,
  705. yidong:null,
  706. yingyang:null,
  707. mocha:null,
  708. add_press:false,
  709. zhuangui:['出院','死亡','其他'],
  710. value1:'',
  711. checkList:[],
  712. input:'',
  713. options:[],
  714. value:'',
  715. row:''
  716. }
  717. },
  718. methods:{
  719. fanhui(){
  720. window.history.go(-1);
  721. },
  722. handleSelectionChange(val) {
  723. this.multipleSelection = val;
  724. },
  725. open_pingfen(){
  726. if(this.multipleSelection.length==0){
  727. this.$message('至少选择一条数据')
  728. }else{
  729. this.dialogVisible=true
  730. }
  731. },
  732. open_mingxi(){
  733. if(this.multipleSelection.length==0){
  734. this.$message('至少选择一条数据')
  735. }else{
  736. this.mingxi_dialogVisible=true
  737. }
  738. },
  739. open_editor(row){
  740. this.editor_dialogVisible =true
  741. },
  742. open_delete(row){
  743. this.row=row.id
  744. this.delete_centerDialogVisible=true
  745. },
  746. delete_press(){
  747. for(let i=0;i<this.tableData.length;i++){
  748. if(this.row==this.tableData[i].id){
  749. this.tableData.splice(i,1)
  750. }
  751. }
  752. this.delete_centerDialogVisible=false
  753. },
  754. print_pingfen(id){
  755. const style= '@media print {.diedao_content{background-color: white; width:960px; margin:0 auto; padding: 0 0 20px 0;} .table tr td{padding:5px}}'
  756. if(id==1){
  757. printJS({
  758. printable: 'pingfeng',
  759. type: 'html',
  760. style: style,
  761. scanStyles: false
  762. })
  763. this.dialogVisible=false
  764. }else if(id==2){
  765. printJS({
  766. printable: 'mingxi',
  767. type: 'html',
  768. style: style,
  769. scanStyles: false
  770. })
  771. this.mingxi_dialogVisible=false
  772. }
  773. },
  774. },
  775. computed:{
  776. mark(){
  777. return this.ganzhi*1 + this.shidu*1 + this.huodong*1 + this.yidong*1 + this.mocha*1 + this.yingyang*1
  778. }
  779. }
  780. }
  781. </script>
  782. <style lang="scss" scoped>
  783. .patient-app-containers {
  784. margin-left: 10px;
  785. margin-right: 10px;
  786. background: #fff;
  787. }
  788. .history{
  789. display: inline-block;
  790. border-left:2px solid gray ;
  791. padding: 0 10px;
  792. margin-left:10px;
  793. color: gray;
  794. font-size: 18px;
  795. }
  796. .tables tr td{
  797. padding:5px;
  798. font-size:16px;
  799. thead tr th{
  800. padding: 5px;
  801. }
  802. }
  803. .zhuangui{
  804. margin-top: 10px;
  805. }
  806. input{
  807. -webkit-appearance: checkbox;
  808. }
  809. .content_top{
  810. display: flex;
  811. justify-content: space-between;
  812. }
  813. .table{
  814. border: 1px solid #DCDFE6;
  815. border-collapse:collapse;
  816. border-spacing: 0;
  817. display: table;
  818. thead th{
  819. background: #0077ff9f;
  820. color: rgb(250, 248, 248);
  821. text-align: center;
  822. height: 40px;
  823. }
  824. tbody td{
  825. height: 40px;
  826. padding: 5px;
  827. }
  828. .start{
  829. vertical-align: top;
  830. }
  831. .bing{
  832. color: #4579C5;
  833. }
  834. .bg_color{
  835. background: rgb(243, 240, 240);
  836. }
  837. .jiange{
  838. line-height: 40px;
  839. padding-left: 5px;
  840. }
  841. .tianjia{
  842. position: absolute;
  843. bottom: 0px;
  844. font-size: 17px;
  845. color:#4579C5;
  846. line-height: 40px;
  847. border-top: 1px solid #DCDFE6;
  848. box-sizing: border-box;
  849. width: 100%;
  850. padding: 5px;
  851. }
  852. input{
  853. -webkit-appearance: checkbox;
  854. }
  855. }
  856. </style>