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

dialysisRecord.vue 29KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867
  1. <template>
  2. <div class="patient-container">
  3. <patient-sidebar
  4. :id="patientID"
  5. defaultActive="2-2"
  6. v-on:tran-patient="onTranPatient"
  7. ></patient-sidebar>
  8. <div class="patient-app-container app-container">
  9. <div style="clearfix">
  10. <el-button
  11. style="float:right;"
  12. size="small"
  13. @click="printThisInfo()"
  14. type="primary"
  15. icon="el-icon-printer"
  16. >打印</el-button
  17. >
  18. <span>&nbsp;&nbsp;&nbsp;&nbsp;</span>
  19. <el-button
  20. style="float:right;margin-right:20px"
  21. size="small"
  22. @click="exportList"
  23. type="primary"
  24. >导出</el-button
  25. >
  26. <el-form ref="form" :model="queryParams" label-width="80px">
  27. <!-- <el-form-item label="患者时间 : " >
  28. <el-select v-model="form.date" >
  29. <el-option v-for="item in dateOptions " :label="item.label" :value="item.value" :key="item.value" ></el-option>
  30. </el-select>
  31. </el-form-item> -->
  32. <el-col :span="20">
  33. <el-form-item label="患者时间 :">
  34. <!-- <el-col :span="11"> -->
  35. <el-date-picker
  36. size="small"
  37. type="date"
  38. format="yyyy-MM-dd"
  39. value-format="yyyy-MM-dd"
  40. placeholder="选择开始时间"
  41. style="width:150px"
  42. v-model="queryParams.start_time"
  43. @change="changeSearch"
  44. ></el-date-picker>
  45. <!-- </el-col> -->
  46. <span class="cellLine">-</span>
  47. <!-- <el-col :span="11"> -->
  48. <el-date-picker
  49. size="small"
  50. type="date"
  51. format="yyyy-MM-dd"
  52. value-format="yyyy-MM-dd"
  53. placeholder="选择结束时间"
  54. style="width:150px"
  55. v-model="queryParams.end_time"
  56. @change="changeSearch"
  57. ></el-date-picker>
  58. <!-- </el-col> -->
  59. </el-form-item>
  60. </el-col>
  61. <el-col :span="20">
  62. <el-form-item label="透析模式 : ">
  63. <el-select
  64. v-model="queryParams.mode_id"
  65. @change="changeSearch"
  66. clearable
  67. style="width:314px"
  68. size="small"
  69. >
  70. <el-option
  71. v-for="item in modeOptions"
  72. :label="item.name"
  73. :value="item.id"
  74. :key="item.id"
  75. ></el-option>
  76. </el-select>
  77. </el-form-item>
  78. </el-col>
  79. </el-form>
  80. </div>
  81. <div>
  82. <el-table
  83. id="oictable"
  84. :header-cell-style="{
  85. backgroundColor: 'rgb(245, 247, 250)',
  86. color: '#606266'
  87. }"
  88. :row-style="{ color: '#303133' }"
  89. :data="recordData"
  90. border
  91. style="width: 100%"
  92. @row-click="rowclick"
  93. @current-change="clickCurrent"
  94. >
  95. <el-table-column
  96. prop="dialysis_date"
  97. label="透析日期"
  98. align="center"
  99. width="110"
  100. fixed
  101. >
  102. <template slot-scope="scope"
  103. ><span style="color: #579ef8">{{
  104. scope.row.dialysis_date | parseTime("{y}-{m}-{d}")
  105. }}</span></template
  106. >
  107. </el-table-column>
  108. <el-table-column
  109. prop="schedule_type"
  110. label="班次"
  111. align="center"
  112. width="80"
  113. >
  114. <template slot-scope="scope"
  115. ><span>{{
  116. scheduleType(scope.row.schedule_type)
  117. }}</span></template
  118. >
  119. </el-table-column>
  120. <el-table-column
  121. prop="partition"
  122. width="100"
  123. align="center"
  124. label="分区 - 机号"
  125. >
  126. <template slot-scope="scope"
  127. ><span
  128. >{{ scope.row.partition_name }}-{{
  129. scope.row.device.number
  130. }}</span
  131. ></template
  132. >
  133. </el-table-column>
  134. <el-table-column
  135. prop="mode"
  136. width="90"
  137. align="center"
  138. label="透析模式"
  139. >
  140. <template slot-scope="scope">{{
  141. modeName(scope.row.prescription.mode_id)
  142. }}</template>
  143. </el-table-column>
  144. <el-table-column
  145. prop="prescription.dialysis_duration"
  146. width="100"
  147. align="center"
  148. label="透析时长(h)"
  149. >
  150. <template slot-scope="scope">
  151. <span>{{getTime(scope.row.assessment_after_dislysis)}}</span>
  152. </template>
  153. </el-table-column>
  154. <el-table-column width="96" align="center" label="透析器/灌流器">
  155. <template slot-scope="scope">
  156. {{ scope.row.prescription.dialyzer_perfusion_apparatus }}
  157. {{ scope.row.prescription.dialysis_dialyszers }}
  158. <span v-if="scope.row.prescription.dialysis_irrigation!=''">/{{ scope.row.prescription.dialysis_irrigation }}</span>
  159. </template>
  160. </el-table-column>
  161. <el-table-column
  162. prop="predialysis_evaluation.dry_weight"
  163. width="96"
  164. align="center"
  165. label="干体重(kg)"
  166. >
  167. </el-table-column>
  168. <el-table-column
  169. prop="predialysis_evaluation.weight_before"
  170. width="110"
  171. align="center"
  172. label="透前称重(kg)"
  173. >
  174. </el-table-column>
  175. <el-table-column
  176. prop="assessment_after_dislysis.weight_after"
  177. width="110"
  178. align="center"
  179. label="透后称重(kg)"
  180. >
  181. </el-table-column>
  182. <el-table-column
  183. prop="predialysis_evaluation"
  184. width="140"
  185. align="center"
  186. label="透前血压(mmHg)"
  187. >
  188. <template slot-scope="scope"
  189. ><span
  190. >{{
  191. scope.row.predialysis_evaluation.systolic_blood_pressure
  192. }}/{{
  193. scope.row.predialysis_evaluation.diastolic_blood_pressure
  194. }}</span
  195. ></template
  196. >
  197. </el-table-column>
  198. <el-table-column
  199. prop="assessment_after_dislysis"
  200. width="140"
  201. align="center"
  202. label="透后血压(mmHg)"
  203. >
  204. <template slot-scope="scope"
  205. ><span
  206. >{{
  207. scope.row.assessment_after_dislysis.systolic_blood_pressure
  208. }}/{{
  209. scope.row.assessment_after_dislysis.diastolic_blood_pressure
  210. }}</span
  211. ></template
  212. >
  213. </el-table-column>
  214. <el-table-column
  215. prop="assessment_after_dislysis"
  216. width="140"
  217. align="center"
  218. label="目标超滤量"
  219. >
  220. <template slot-scope="scope"
  221. ><span
  222. >{{
  223. scope.row.prescription.target_ultrafiltration
  224. }}</span
  225. ></template
  226. >
  227. </el-table-column>
  228. <el-table-column
  229. prop="assessment_after_dislysis"
  230. width="140"
  231. align="center"
  232. label="实际超滤量"
  233. >
  234. <template slot-scope="scope"
  235. ><span
  236. >{{
  237. scope.row.assessment_after_dislysis.actual_ultrafiltration
  238. }}</span
  239. ></template
  240. >
  241. </el-table-column>
  242. <!--<el-table-column-->
  243. <!--prop="access"-->
  244. <!--width="100"-->
  245. <!--align="center"-->
  246. <!--label="血管通路"-->
  247. <!--&gt;-->
  248. <!--<template slot-scope="scope"-->
  249. <!--&gt;<span>{{-->
  250. <!--setVascularAccess(scope.row.prescription)-->
  251. <!--}}</span></template-->
  252. <!--&gt;-->
  253. <!--</el-table-column>-->
  254. <el-table-column
  255. prop="type"
  256. width="200"
  257. align="center"
  258. label="抗凝剂种类 首剂/维持/总量"
  259. >
  260. <template slot-scope="scope">
  261. <span>{{ setAnticoagulantsConfit(scope.row.prescription) }}</span>
  262. </template>
  263. </el-table-column>
  264. <!--<el-table-column-->
  265. <!--prop="model"-->
  266. <!--width="100"-->
  267. <!--align="center"-->
  268. <!--label="透析器型号"-->
  269. <!--&gt;-->
  270. <!--<template slot-scope="scope"-->
  271. <!--&gt;<span>{{-->
  272. <!--setDialyzerModel(scope.row.prescription)-->
  273. <!--}}</span></template-->
  274. <!--&gt;-->
  275. <!--</el-table-column>-->
  276. <el-table-column
  277. prop="nurse"
  278. width="90"
  279. align="center"
  280. label="治疗护士"
  281. >
  282. <template slot-scope="scope"
  283. ><span>{{
  284. scope.row.role.user_name
  285. }}</span></template
  286. >
  287. </el-table-column>
  288. <el-table-column
  289. prop="doctor"
  290. width="90"
  291. align="center"
  292. label="治疗医生"
  293. >
  294. <template slot-scope="scope"
  295. ><span>{{
  296. scope.row.prescription.role.user_name
  297. }}</span></template
  298. >
  299. </el-table-column>
  300. </el-table>
  301. <el-pagination
  302. align="right"
  303. @size-change="handleSizeChange"
  304. @current-change="handleCurrentChange"
  305. :current-page="queryParams.page"
  306. :page-sizes="[10, 20, 50, 100]"
  307. :page-size="10"
  308. background
  309. style="margin-top:20px;"
  310. layout="total, sizes, prev, pager, next, jumper"
  311. :total="total"
  312. >
  313. </el-pagination>
  314. </div>
  315. <div style="display:none;">
  316. <div id="printRecord" class="record-order">
  317. <div class="rd-title">{{ orgname }}</div>
  318. <div class="rd-name">
  319. <span
  320. >姓名:<span class="item-value">{{
  321. currentPatient.name
  322. }}</span></span
  323. >
  324. <span style="margin-left:10px;"
  325. >透析号:<span class="item-value">{{
  326. currentPatient.dialysis_no
  327. }}</span></span
  328. >
  329. </div>
  330. <table
  331. cellspacing="0"
  332. cellpadding="0"
  333. border="1"
  334. class="el-table__body"
  335. style="width: 100%;"
  336. >
  337. <thead>
  338. <th>透析日期</th>
  339. <th>班次</th>
  340. <th>分区机号</th>
  341. <th>透析模式</th>
  342. <th>透析时长(h)</th>
  343. <th>透析器/灌流器</th>
  344. <th>干体重(kg)</th>
  345. <th>透前称重(kg)</th>
  346. <th>透后称重(kg)</th>
  347. <th>透前血压(mmhg)</th>
  348. <th>透后血压(mmhg)</th>
  349. <th>目标超滤量(L)</th>
  350. <!-- <th>血管通路</th> -->
  351. <th>抗凝剂种类 首剂/维持/总量</th>
  352. <th>透析器型号</th>
  353. <th>治疗护士</th>
  354. <th>治疗医生</th>
  355. </thead>
  356. <tbody>
  357. <tr v-for="item in recordData" :key="item.id">
  358. <td>{{ item.dialysis_date | parseTime("{y}-{m}-{d}") }}</td>
  359. <td>{{ scheduleType(item.schedule_type) }}</td>
  360. <td>{{ item.partition_name }}-{{ item.device.number }}</td>
  361. <td>{{ modeName(item.prescription.mode_id) }}</td>
  362. <td>{{getTime(item.assessment_after_dislysis)}}</td>
  363. <td>
  364. <span v-if="item.prescription.dialyzer_perfusion_apparatus"></span>
  365. <span v-if="item.prescription.dialysis_dialyszers!=''">{{ item.prescription.dialysis_dialyszers }} </span>
  366. <span v-if="item.prescription.dialysis_irrigation!=''">/{{ item.prescription.dialysis_irrigation }} </span>
  367. </td>
  368. <td>{{ item.predialysis_evaluation.dry_weight }}</td>
  369. <td>{{ item.predialysis_evaluation.weight_before }}</td>
  370. <td>{{ item.assessment_after_dislysis.weight_after }}</td>
  371. <td>
  372. {{ item.predialysis_evaluation.systolic_blood_pressure }}/{{
  373. item.predialysis_evaluation.diastolic_blood_pressure
  374. }}
  375. </td>
  376. <td>
  377. {{
  378. item.assessment_after_dislysis.systolic_blood_pressure
  379. }}/{{
  380. item.assessment_after_dislysis.diastolic_blood_pressure
  381. }}
  382. </td>
  383. <td>
  384. {{ item.prescription.target_ultrafiltration }}
  385. </td>
  386. <!-- <td>{{ setVascularAccess(item.prescription) }}</td> -->
  387. <td>{{ setAnticoagulantsConfit(item.prescription) }}</td>
  388. <td>{{ item.prescription.dialyzer_perfusion_apparatus }}</td>
  389. <td>{{ getNurseName(item.start_nurse) }}</td>
  390. <td>{{ getDoctorName(item.prescription.creater) }}</td>
  391. </tr>
  392. </tbody>
  393. </table>
  394. </div>
  395. </div>
  396. </div>
  397. <!-- 透析记录弹窗 -->
  398. <div>
  399. <el-drawer
  400. title="我是标题"
  401. :visible.sync="drawer"
  402. :with-header="false"
  403. :modal-append-to-body="false"
  404. size="70%"
  405. >
  406. <div>
  407. <!-- <div style="margin-left:60px;color:#34495e">
  408. <span>{{ patient.name }}({{ patient.dialysis_no }})</span>
  409. <span v-if="newTime != ''">&nbsp;&nbsp;|&nbsp;&nbsp;</span>
  410. <span v-if="newTime != ''">签到时间:{{ newTime }}</span>
  411. </div> -->
  412. <dialysisIndextwo :record_date="dialysis_date" :patientid='patient_id' :dialysisShow="dialysisShow" :dialysis_date="dialysis_date"></dialysisIndextwo>
  413. </div>
  414. </el-drawer>
  415. </div>
  416. </div>
  417. </template>
  418. <script>
  419. import PatientSidebar from "./components/PatientSidebar";
  420. import { getPatientDialysisRecords } from "@/api/patient";
  421. import {getDialysisScheduleDetail,getLongAdviceTwo} from '@/api/dialysis_record'
  422. import { uParseTime } from "@/utils/tools";
  423. import { parseTime } from '@/utils'
  424. import { fetchAllDoctorAndNurse } from "@/api/doctor";
  425. import dialysisIndextwo from '../outpatientDoctorStation/components/dialysisIndextwo'
  426. import print from "print-js";
  427. export default {
  428. name: "dialysisRecord",
  429. data() {
  430. return {
  431. orgname: "",
  432. currentPatient: {},
  433. patientID: 0,
  434. total: 0,
  435. queryParams: {
  436. // date: "",
  437. mode_id: "",
  438. start_time: "",
  439. end_time: "",
  440. page: 1,
  441. patient_id: 0,
  442. limit: 10
  443. },
  444. recordData: [],
  445. dateOptions: [
  446. { value: "0", label: "本月" },
  447. { value: "1", label: "本年" }
  448. ],
  449. modeOptions: [],
  450. anticoagulantsConfit: [],
  451. blood_filters: [],
  452. perfusion_apparatus: [],
  453. hemodialysis_machines: [],
  454. doctorOptions: [],
  455. nurseOptions: [],
  456. vascularAccess: [],
  457. vascularAccessDesc: [],
  458. drawer:false,
  459. patient_id:'',
  460. dialysis_date:0,
  461. dialysisShow:false,
  462. newTime:'',
  463. };
  464. },
  465. components: {
  466. PatientSidebar,
  467. dialysisIndextwo
  468. },
  469. methods: {
  470. getTime(record){
  471. if(record != null&&record.id > 0) {
  472. let actual_treatment_hour = 0
  473. let actual_treatment_minute = 0
  474. actual_treatment_hour = parseFloat(record.actual_treatment_hour)
  475. actual_treatment_minute = parseFloat(record.actual_treatment_minute) / 60
  476. return (actual_treatment_hour + actual_treatment_minute).toFixed(2)
  477. }
  478. },
  479. getTimeOne(val){
  480. if(val < 0){
  481. return ""
  482. }
  483. if(val == ""){
  484. return ""
  485. }else {
  486. return uParseTime(val, '{y}-{m}-{d}')
  487. }
  488. },
  489. changeSearch() {
  490. this.getPatientDialysisRecords();
  491. },
  492. handleSizeChange(val) {
  493. this.queryParams.limit = val;
  494. this.getPatientDialysisRecords();
  495. },
  496. handleCurrentChange(val) {
  497. this.queryParams.page = val;
  498. this.getPatientDialysisRecords();
  499. },
  500. getPatientDialysisRecords() {
  501. console.log("prams",this.queryParams)
  502. getPatientDialysisRecords(this.queryParams).then(response => {
  503. if (response.data.state == 1) {
  504. this.total = response.data.data.total;
  505. this.recordData = response.data.data.records;
  506. console.log("郭23232323232232323",this.recordData)
  507. }
  508. });
  509. },
  510. fetchAllDoctorAndNurse() {
  511. fetchAllDoctorAndNurse().then(response => {
  512. if (response.data.state == 1) {
  513. this.doctorOptions =
  514. response.data.data.doctors == null
  515. ? []
  516. : response.data.data.doctors;
  517. this.nurseOptions =
  518. response.data.data.nursers == null
  519. ? []
  520. : response.data.data.nursers;
  521. }
  522. });
  523. },
  524. scheduleType(schedule_type) {
  525. var typeName = "未知";
  526. switch (schedule_type) {
  527. case 1:
  528. typeName = "上午";
  529. break;
  530. case 2:
  531. typeName = "下午";
  532. break;
  533. case 3:
  534. typeName = "晚上";
  535. break;
  536. default:
  537. break;
  538. }
  539. return typeName;
  540. },
  541. modeName(mode_id) {
  542. return typeof this.modeOptions[mode_id] !== "undefined" &&
  543. typeof this.modeOptions[mode_id].name !== "undefined"
  544. ? this.modeOptions[mode_id].name
  545. : "";
  546. },
  547. setAnticoagulantsConfit(prescription) {
  548. if (
  549. typeof this.anticoagulantsConfit[prescription.anticoagulant] ===
  550. "undefined"
  551. ) {
  552. return "";
  553. } else {
  554. if (this.anticoagulantsConfit[prescription.anticoagulant].shouji != 1) {
  555. return this.anticoagulantsConfit[prescription.anticoagulant].name;
  556. } else {
  557. return (
  558. this.anticoagulantsConfit[prescription.anticoagulant].name +
  559. "/" +
  560. prescription.anticoagulant_shouji +
  561. "/" +
  562. prescription.anticoagulant_weichi +
  563. "/" +
  564. prescription.anticoagulant_zongliang
  565. );
  566. }
  567. }
  568. },
  569. setVascularAccess(prescription) {
  570. if (
  571. typeof this.vascularAccess[prescription.vascular_access_mode] ===
  572. "undefined"
  573. ) {
  574. return "";
  575. } else {
  576. if (
  577. typeof this.vascularAccessDesc[prescription.vascular_access] ===
  578. "undefined"
  579. ) {
  580. return this.vascularAccess[prescription.vascular_access_mode].name;
  581. } else {
  582. return (
  583. this.vascularAccess[prescription.vascular_access_mode].name +
  584. "-" +
  585. this.vascularAccessDesc[prescription.vascular_access].name
  586. );
  587. }
  588. }
  589. },
  590. setDialyzerModel(prescription) {
  591. var models = [];
  592. if (prescription.hemodialysis_machine > 0) {
  593. var ml = this.hemodialysis_machines.length;
  594. if (ml > 0) {
  595. for (let index = 0; index < ml; index++) {
  596. if (
  597. this.hemodialysis_machines[index].id ==
  598. prescription.hemodialysis_machine
  599. ) {
  600. models.push(this.hemodialysis_machines[index].name);
  601. }
  602. }
  603. }
  604. }
  605. if (prescription.blood_filter > 0) {
  606. var ml = this.blood_filters.length;
  607. if (ml > 0) {
  608. for (let index = 0; index < ml; index++) {
  609. if (this.blood_filters[index].id == prescription.blood_filter) {
  610. models.push(this.blood_filters[index].name);
  611. }
  612. }
  613. }
  614. }
  615. if (prescription.perfusion_apparatus > 0) {
  616. var ml = this.perfusion_apparatus.length;
  617. if (ml > 0) {
  618. for (let index = 0; index < ml; index++) {
  619. if (
  620. this.perfusion_apparatus[index].id ==
  621. prescription.perfusion_apparatus
  622. ) {
  623. models.push(this.perfusion_apparatus[index].name);
  624. }
  625. }
  626. }
  627. }
  628. return models.join(",");
  629. },
  630. getDoctorName(creater) {
  631. var dl = this.doctorOptions.length;
  632. if (dl > 0) {
  633. for (let index = 0; index < dl; index++) {
  634. if ((this.doctorOptions[index].id == creater)) {
  635. return this.doctorOptions[index].name;
  636. }
  637. }
  638. }
  639. return "";
  640. },
  641. getNurseName(start_nurse) {
  642. var dl = this.nurseOptions.length;
  643. if (dl > 0) {
  644. for (let index = 0; index < dl; index++) {
  645. if (this.nurseOptions[index].id == start_nurse) {
  646. return this.nurseOptions[index].name;
  647. }
  648. }
  649. }
  650. return "";
  651. },
  652. onTranPatient: function(tranPatient) {
  653. this.currentPatient = tranPatient;
  654. },
  655. printThisInfo() {
  656. const style =
  657. "@media print { .record-order .rd-title{ text-align: center; font-weight: 600; font-size: 30px; line-height: 80px; margin-bottom: 20px; } .record-order .rd-type{ text-align: center; margin-bottom: 20px; } .record-order .rd-name { align-items: center; justify-content: space-between; padding: 30px 2em; } .record-order .el-table__body{ border: 1px solid #333; } .record-order .el-table__body td{ border: 1px solid #333; } .record-order .item-value { border-bottom: 1px solid #333; padding: 0 20px;} .record-order th, .record-order td { padding: 5px 10px; }}";
  658. setTimeout(() => {
  659. printJS({
  660. printable: "printRecord",
  661. type: "html",
  662. style: style,
  663. scanStyles: false
  664. });
  665. }, 1);
  666. },
  667. clickCurrent(val) {
  668. this.patient_id = val.patient_id
  669. this.dialysis_date = val.dialysis_date
  670. },
  671. rowclick(val){
  672. this.$router.push({
  673. path: "/dialysis/details",
  674. query: { patient_id: val.patient_id, date: val.dialysis_date }
  675. });
  676. // console.log('kkkkkkk',event);
  677. // this.patient_id = event.patient_id
  678. // this.dialysis_date = parseTime(event.dialysis_date, '{y}-{m}-{d}')
  679. // this.drawer =true
  680. // this.dialysisShow =true
  681. },
  682. exportList(){
  683. import('@/vendor/Export2Excel').then(excel => {
  684. console.log("导出世界",this.recordData)
  685. if(this.recordData!=null && this.recordData.length > 0){
  686. for(let i=0;i<this.recordData.length;i++){
  687. this.recordData[i].dialysis_date_one = this.getTimeOne(this.recordData[i].dialysis_date)
  688. this.recordData[i].bed_class = this.scheduleType(this.recordData[i].schedule_type)
  689. this.recordData[i].mode_name = this.modeName(this.recordData[i].prescription.mode_id)
  690. this.recordData[i].vascularAccess_name = this.setVascularAccess(this.recordData[i].prescription)
  691. this.recordData[i].AnticoagulantsConfit = this.setAnticoagulantsConfit(this.recordData[i].prescription)
  692. this.recordData[i].nurse_name = this.recordData[i].role.user_name
  693. this.recordData[i].doc_name = this.recordData[i].prescription.role.user_name
  694. this.recordData[i].bed_number = this.recordData[i].partition_name + "-" + this.recordData[i].device.number
  695. this.recordData[i].dialysis_duration_hour = this.getTime(this.recordData[i].assessment_after_dislysis)
  696. this.recordData[i].dry_weight = this.recordData[i].predialysis_evaluation.dry_weight
  697. this.recordData[i].weight_before = this.recordData[i].predialysis_evaluation.weight_before
  698. this.recordData[i].weight_after = this.recordData[i].assessment_after_dislysis.weight_after
  699. this.recordData[i].befor_pressure = this.recordData[i].predialysis_evaluation.systolic_blood_pressure + "/" + this.recordData[i].predialysis_evaluation.diastolic_blood_pressure
  700. this.recordData[i].after_pressure = this.recordData[i].assessment_after_dislysis.systolic_blood_pressure +"/"+this.recordData[i].assessment_after_dislysis.diastolic_blood_pressure
  701. this.recordData[i].target_ultrafiltration = this.recordData[i].prescription.target_ultrafiltration
  702. this.recordData[i].dialyzer_perfusion_apparatus = this.recordData[i].prescription.dialyzer_perfusion_apparatus
  703. if(this.recordData[i].dialyzer_perfusion_apparatus == ""){
  704. this.recordData[i].dialyzer_perfusion_apparatus = this.recordData[i].prescription.dialysis_dialyszers + "/" + this.recordData[i].prescription.dialysis_irrigation
  705. }
  706. this.recordData[i].patient_name = this.currentPatient.name
  707. }
  708. }
  709. const tHeader = ['姓名','透析日期','班次', '分区机号', '透析模式','透析时长','干体重(kg)','透前体重(kg)','透后体重(kg)','透前血压(mmHg)','透后血压(mmHg)','目标超滤量','抗凝剂 首剂/维持/总量','透析器型号','治疗护士','治疗医生']
  710. const filterVal = ['patient_name','dialysis_date_one','bed_class', 'bed_number', 'mode_name','dialysis_duration_hour','dry_weight','weight_before','weight_after','befor_pressure','after_pressure','target_ultrafiltration','AnticoagulantsConfit','dialyzer_perfusion_apparatus','nurse_name','doc_name']
  711. const data = this.formatJson(filterVal, this.recordData)
  712. excel.export_json_to_excel({
  713. header: tHeader,
  714. data,
  715. filename: '透析记录'
  716. })
  717. })
  718. },
  719. formatJson(filterVal, jsonData) {
  720. return jsonData.map(v => filterVal.map(j => v[j]));
  721. },
  722. },
  723. created() {
  724. const id = this.$route.params && this.$route.params.id;
  725. this.patientID = parseInt(id);
  726. if (isNaN(this.patientID) || this.patientID <= 0) {
  727. this.$notify.error({
  728. title: "错误",
  729. message: "无效的id"
  730. });
  731. this.$router.back(-1);
  732. }
  733. this.queryParams.patient_id = this.patientID;
  734. this.modeOptions = this.$store.getters.treatment_mode;
  735. this.anticoagulantsConfit = this.$store.getters.anticoagulants_confit;
  736. this.blood_filters = this.$store.getters.blood_filters;
  737. this.perfusion_apparatus = this.$store.getters.perfusion_apparatus;
  738. this.hemodialysis_machines = this.$store.getters.hemodialysis_machines;
  739. this.vascularAccess = this.$store.getters.vascular_access;
  740. this.vascularAccessDesc = this.$store.getters.vascular_access_desc;
  741. var xtuser = this.$store.getters.xt_user;
  742. this.orgname = xtuser.org.org_name;
  743. },mounted(){
  744. this.fetchAllDoctorAndNurse();
  745. this.getPatientDialysisRecords();
  746. },
  747. computed:{
  748. steps: function() {
  749. var steps = [
  750. { title: '透析处方', finish: false },
  751. { title: '接诊评估', finish: false },
  752. { title: '透前评估', finish: false },
  753. { title: '临时医嘱', finish: false },
  754. { title: '双人核对', finish: false },
  755. { title: '透析上机', finish: false },
  756. { title: '透析监测', finish: false },
  757. { title: '透析下机', finish: false },
  758. { title: '透后评估', finish: false },
  759. { title: '治疗小结', finish: false }
  760. ]
  761. steps[0].finish = this.prescription.id && this.prescription.creater > 0
  762. steps[1].finish = this.receiver_treatment_access.id > 0
  763. // steps[2].finish =this.predialysis_evaluation.id > 0 && this.predialysis_evaluation.creater > 0
  764. steps[2].finish =this.predialysis_evaluation.id > 0
  765. steps[3].finish = this.doctor_advices.length > 0
  766. steps[5].finish = this.dialysis_order.id > 0
  767. steps[7].finish =
  768. this.dialysis_order.id > 0 && this.dialysis_order.stage == 2
  769. steps[4].finish =
  770. this.double_check.id > 0 &&
  771. this.double_check.creater > 0 &&
  772. this.double_check.modifier > 0
  773. steps[6].finish = this.monitor_records.length > 0
  774. // steps[8].finish = this.assessment_after_dislysis.id > 0 && this.assessment_after_dislysis.creater > 0
  775. steps[8].finish = this.assessment_after_dislysis.id > 0
  776. steps[9].finish = this.treatment_summary.id > 0
  777. return steps
  778. },
  779. }
  780. };
  781. </script>
  782. <style>
  783. #oictable ::-webkit-scrollbar {
  784. height: 15px;
  785. }
  786. .el-table td,
  787. .el-table th.is-leaf,
  788. .el-table--border,
  789. .el-table--group {
  790. border-color: #d0d3da;
  791. }
  792. .el-table--border::after,
  793. .el-table--group::after,
  794. .el-table::before {
  795. background-color: #d0d3da;
  796. }
  797. </style>
  798. <style rel="stylesheet/scss" lang="scss" scoped>
  799. .total {
  800. font-size: 14px;
  801. line-height: 32px;
  802. height: 32px;
  803. color: #6caef7;
  804. }
  805. .record-order .rd-title {
  806. text-align: center;
  807. font-weight: 600;
  808. font-size: 30px;
  809. line-height: 80px;
  810. margin-bottom: 20px;
  811. }
  812. .record-order .rd-type {
  813. text-align: center;
  814. margin-bottom: 20px;
  815. }
  816. .record-order .rd-name {
  817. align-items: center;
  818. justify-content: space-between;
  819. padding: 30px 2em;
  820. }
  821. .record-order .el-table__body {
  822. border: 1px solid #333;
  823. }
  824. .record-order .el-table__body td {
  825. border: 1px solid #333;
  826. }
  827. .record-order .item-value {
  828. border-bottom: 1px solid #333;
  829. padding: 0 20px;
  830. }
  831. .record-order th,
  832. .record-order td {
  833. padding: 5px 10px;
  834. }
  835. </style>