123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867 |
- <template>
- <div class="patient-container">
- <patient-sidebar
- :id="patientID"
- defaultActive="2-2"
- v-on:tran-patient="onTranPatient"
- ></patient-sidebar>
- <div class="patient-app-container app-container">
- <div style="clearfix">
-
- <el-button
- style="float:right;"
- size="small"
- @click="printThisInfo()"
- type="primary"
- icon="el-icon-printer"
- >打印</el-button
- >
- <span> </span>
- <el-button
- style="float:right;margin-right:20px"
- size="small"
- @click="exportList"
- type="primary"
- >导出</el-button
- >
-
- <el-form ref="form" :model="queryParams" label-width="80px">
- <!-- <el-form-item label="患者时间 : " >
- <el-select v-model="form.date" >
- <el-option v-for="item in dateOptions " :label="item.label" :value="item.value" :key="item.value" ></el-option>
- </el-select>
- </el-form-item> -->
- <el-col :span="20">
- <el-form-item label="患者时间 :">
- <!-- <el-col :span="11"> -->
- <el-date-picker
- size="small"
- type="date"
- format="yyyy-MM-dd"
- value-format="yyyy-MM-dd"
- placeholder="选择开始时间"
- style="width:150px"
- v-model="queryParams.start_time"
- @change="changeSearch"
- ></el-date-picker>
- <!-- </el-col> -->
- <span class="cellLine">-</span>
- <!-- <el-col :span="11"> -->
- <el-date-picker
- size="small"
- type="date"
- format="yyyy-MM-dd"
- value-format="yyyy-MM-dd"
- placeholder="选择结束时间"
- style="width:150px"
- v-model="queryParams.end_time"
- @change="changeSearch"
- ></el-date-picker>
- <!-- </el-col> -->
- </el-form-item>
- </el-col>
- <el-col :span="20">
- <el-form-item label="透析模式 : ">
- <el-select
- v-model="queryParams.mode_id"
- @change="changeSearch"
- clearable
- style="width:314px"
- size="small"
- >
- <el-option
- v-for="item in modeOptions"
- :label="item.name"
- :value="item.id"
- :key="item.id"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-form>
- </div>
- <div>
- <el-table
- id="oictable"
- :header-cell-style="{
- backgroundColor: 'rgb(245, 247, 250)',
- color: '#606266'
- }"
- :row-style="{ color: '#303133' }"
- :data="recordData"
- border
- style="width: 100%"
- @row-click="rowclick"
- @current-change="clickCurrent"
- >
- <el-table-column
- prop="dialysis_date"
- label="透析日期"
- align="center"
- width="110"
- fixed
- >
- <template slot-scope="scope"
- ><span style="color: #579ef8">{{
- scope.row.dialysis_date | parseTime("{y}-{m}-{d}")
- }}</span></template
- >
- </el-table-column>
- <el-table-column
- prop="schedule_type"
- label="班次"
- align="center"
- width="80"
- >
- <template slot-scope="scope"
- ><span>{{
- scheduleType(scope.row.schedule_type)
- }}</span></template
- >
- </el-table-column>
- <el-table-column
- prop="partition"
- width="100"
- align="center"
- label="分区 - 机号"
- >
- <template slot-scope="scope"
- ><span
- >{{ scope.row.partition_name }}-{{
- scope.row.device.number
- }}</span
- ></template
- >
- </el-table-column>
- <el-table-column
- prop="mode"
- width="90"
- align="center"
- label="透析模式"
- >
- <template slot-scope="scope">{{
- modeName(scope.row.prescription.mode_id)
- }}</template>
- </el-table-column>
- <el-table-column
- prop="prescription.dialysis_duration"
- width="100"
- align="center"
- label="透析时长(h)"
- >
- <template slot-scope="scope">
- <span>{{getTime(scope.row.assessment_after_dislysis)}}</span>
- </template>
- </el-table-column>
-
- <el-table-column width="96" align="center" label="透析器/灌流器">
- <template slot-scope="scope">
- {{ scope.row.prescription.dialyzer_perfusion_apparatus }}
- {{ scope.row.prescription.dialysis_dialyszers }}
- <span v-if="scope.row.prescription.dialysis_irrigation!=''">/{{ scope.row.prescription.dialysis_irrigation }}</span>
- </template>
- </el-table-column>
-
- <el-table-column
- prop="predialysis_evaluation.dry_weight"
- width="96"
- align="center"
- label="干体重(kg)"
- >
- </el-table-column>
- <el-table-column
- prop="predialysis_evaluation.weight_before"
- width="110"
- align="center"
- label="透前称重(kg)"
- >
- </el-table-column>
- <el-table-column
- prop="assessment_after_dislysis.weight_after"
- width="110"
- align="center"
- label="透后称重(kg)"
- >
- </el-table-column>
- <el-table-column
- prop="predialysis_evaluation"
- width="140"
- align="center"
- label="透前血压(mmHg)"
- >
- <template slot-scope="scope"
- ><span
- >{{
- scope.row.predialysis_evaluation.systolic_blood_pressure
- }}/{{
- scope.row.predialysis_evaluation.diastolic_blood_pressure
- }}</span
- ></template
- >
- </el-table-column>
- <el-table-column
- prop="assessment_after_dislysis"
- width="140"
- align="center"
- label="透后血压(mmHg)"
- >
- <template slot-scope="scope"
- ><span
- >{{
- scope.row.assessment_after_dislysis.systolic_blood_pressure
- }}/{{
- scope.row.assessment_after_dislysis.diastolic_blood_pressure
- }}</span
- ></template
- >
- </el-table-column>
- <el-table-column
- prop="assessment_after_dislysis"
- width="140"
- align="center"
- label="目标超滤量"
- >
- <template slot-scope="scope"
- ><span
- >{{
- scope.row.prescription.target_ultrafiltration
- }}</span
- ></template
- >
- </el-table-column>
- <el-table-column
- prop="assessment_after_dislysis"
- width="140"
- align="center"
- label="实际超滤量"
- >
- <template slot-scope="scope"
- ><span
- >{{
- scope.row.assessment_after_dislysis.actual_ultrafiltration
- }}</span
- ></template
- >
- </el-table-column>
-
- <!--<el-table-column-->
- <!--prop="access"-->
- <!--width="100"-->
- <!--align="center"-->
- <!--label="血管通路"-->
- <!-->-->
- <!--<template slot-scope="scope"-->
- <!--><span>{{-->
- <!--setVascularAccess(scope.row.prescription)-->
- <!--}}</span></template-->
- <!-->-->
- <!--</el-table-column>-->
- <el-table-column
- prop="type"
- width="200"
- align="center"
- label="抗凝剂种类 首剂/维持/总量"
- >
- <template slot-scope="scope">
- <span>{{ setAnticoagulantsConfit(scope.row.prescription) }}</span>
- </template>
- </el-table-column>
- <!--<el-table-column-->
- <!--prop="model"-->
- <!--width="100"-->
- <!--align="center"-->
- <!--label="透析器型号"-->
- <!-->-->
- <!--<template slot-scope="scope"-->
- <!--><span>{{-->
- <!--setDialyzerModel(scope.row.prescription)-->
- <!--}}</span></template-->
- <!-->-->
- <!--</el-table-column>-->
- <el-table-column
- prop="nurse"
- width="90"
- align="center"
- label="治疗护士"
- >
- <template slot-scope="scope"
- ><span>{{
- scope.row.role.user_name
- }}</span></template
- >
- </el-table-column>
- <el-table-column
- prop="doctor"
- width="90"
- align="center"
- label="治疗医生"
- >
- <template slot-scope="scope"
- ><span>{{
- scope.row.prescription.role.user_name
- }}</span></template
- >
- </el-table-column>
- </el-table>
- <el-pagination
- align="right"
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :current-page="queryParams.page"
- :page-sizes="[10, 20, 50, 100]"
- :page-size="10"
- background
- style="margin-top:20px;"
- layout="total, sizes, prev, pager, next, jumper"
- :total="total"
- >
- </el-pagination>
- </div>
-
- <div style="display:none;">
- <div id="printRecord" class="record-order">
- <div class="rd-title">{{ orgname }}</div>
- <div class="rd-name">
- <span
- >姓名:<span class="item-value">{{
- currentPatient.name
- }}</span></span
- >
- <span style="margin-left:10px;"
- >透析号:<span class="item-value">{{
- currentPatient.dialysis_no
- }}</span></span
- >
- </div>
- <table
- cellspacing="0"
- cellpadding="0"
- border="1"
- class="el-table__body"
- style="width: 100%;"
- >
- <thead>
- <th>透析日期</th>
- <th>班次</th>
- <th>分区机号</th>
- <th>透析模式</th>
- <th>透析时长(h)</th>
- <th>透析器/灌流器</th>
- <th>干体重(kg)</th>
- <th>透前称重(kg)</th>
- <th>透后称重(kg)</th>
- <th>透前血压(mmhg)</th>
- <th>透后血压(mmhg)</th>
- <th>目标超滤量(L)</th>
- <!-- <th>血管通路</th> -->
- <th>抗凝剂种类 首剂/维持/总量</th>
- <th>透析器型号</th>
- <th>治疗护士</th>
- <th>治疗医生</th>
- </thead>
- <tbody>
- <tr v-for="item in recordData" :key="item.id">
- <td>{{ item.dialysis_date | parseTime("{y}-{m}-{d}") }}</td>
- <td>{{ scheduleType(item.schedule_type) }}</td>
- <td>{{ item.partition_name }}-{{ item.device.number }}</td>
- <td>{{ modeName(item.prescription.mode_id) }}</td>
- <td>{{getTime(item.assessment_after_dislysis)}}</td>
- <td>
- <span v-if="item.prescription.dialyzer_perfusion_apparatus"></span>
- <span v-if="item.prescription.dialysis_dialyszers!=''">{{ item.prescription.dialysis_dialyszers }} </span>
- <span v-if="item.prescription.dialysis_irrigation!=''">/{{ item.prescription.dialysis_irrigation }} </span>
- </td>
- <td>{{ item.predialysis_evaluation.dry_weight }}</td>
- <td>{{ item.predialysis_evaluation.weight_before }}</td>
- <td>{{ item.assessment_after_dislysis.weight_after }}</td>
- <td>
- {{ item.predialysis_evaluation.systolic_blood_pressure }}/{{
- item.predialysis_evaluation.diastolic_blood_pressure
- }}
- </td>
- <td>
- {{
- item.assessment_after_dislysis.systolic_blood_pressure
- }}/{{
- item.assessment_after_dislysis.diastolic_blood_pressure
- }}
- </td>
- <td>
- {{ item.prescription.target_ultrafiltration }}
- </td>
- <!-- <td>{{ setVascularAccess(item.prescription) }}</td> -->
- <td>{{ setAnticoagulantsConfit(item.prescription) }}</td>
- <td>{{ item.prescription.dialyzer_perfusion_apparatus }}</td>
- <td>{{ getNurseName(item.start_nurse) }}</td>
- <td>{{ getDoctorName(item.prescription.creater) }}</td>
- </tr>
- </tbody>
- </table>
- </div>
-
- </div>
- </div>
- <!-- 透析记录弹窗 -->
- <div>
- <el-drawer
- title="我是标题"
- :visible.sync="drawer"
- :with-header="false"
- :modal-append-to-body="false"
- size="70%"
- >
- <div>
- <!-- <div style="margin-left:60px;color:#34495e">
- <span>{{ patient.name }}({{ patient.dialysis_no }})</span>
- <span v-if="newTime != ''"> | </span>
- <span v-if="newTime != ''">签到时间:{{ newTime }}</span>
- </div> -->
-
-
- <dialysisIndextwo :record_date="dialysis_date" :patientid='patient_id' :dialysisShow="dialysisShow" :dialysis_date="dialysis_date"></dialysisIndextwo>
- </div>
-
- </el-drawer>
- </div>
- </div>
- </template>
- <script>
- import PatientSidebar from "./components/PatientSidebar";
- import { getPatientDialysisRecords } from "@/api/patient";
- import {getDialysisScheduleDetail,getLongAdviceTwo} from '@/api/dialysis_record'
- import { uParseTime } from "@/utils/tools";
- import { parseTime } from '@/utils'
- import { fetchAllDoctorAndNurse } from "@/api/doctor";
- import dialysisIndextwo from '../outpatientDoctorStation/components/dialysisIndextwo'
- import print from "print-js";
-
- export default {
- name: "dialysisRecord",
- data() {
- return {
- orgname: "",
- currentPatient: {},
- patientID: 0,
- total: 0,
- queryParams: {
- // date: "",
- mode_id: "",
- start_time: "",
- end_time: "",
- page: 1,
- patient_id: 0,
- limit: 10
- },
- recordData: [],
- dateOptions: [
- { value: "0", label: "本月" },
- { value: "1", label: "本年" }
- ],
- modeOptions: [],
- anticoagulantsConfit: [],
- blood_filters: [],
- perfusion_apparatus: [],
- hemodialysis_machines: [],
- doctorOptions: [],
- nurseOptions: [],
- vascularAccess: [],
- vascularAccessDesc: [],
- drawer:false,
-
- patient_id:'',
- dialysis_date:0,
- dialysisShow:false,
-
- newTime:'',
-
- };
- },
- components: {
- PatientSidebar,
- dialysisIndextwo
- },
- methods: {
- getTime(record){
-
- if(record != null&&record.id > 0) {
- let actual_treatment_hour = 0
- let actual_treatment_minute = 0
- actual_treatment_hour = parseFloat(record.actual_treatment_hour)
- actual_treatment_minute = parseFloat(record.actual_treatment_minute) / 60
- return (actual_treatment_hour + actual_treatment_minute).toFixed(2)
- }
- },
- getTimeOne(val){
- if(val < 0){
- return ""
- }
- if(val == ""){
- return ""
- }else {
- return uParseTime(val, '{y}-{m}-{d}')
- }
- },
- changeSearch() {
- this.getPatientDialysisRecords();
- },
- handleSizeChange(val) {
- this.queryParams.limit = val;
- this.getPatientDialysisRecords();
- },
- handleCurrentChange(val) {
- this.queryParams.page = val;
- this.getPatientDialysisRecords();
- },
- getPatientDialysisRecords() {
- console.log("prams",this.queryParams)
- getPatientDialysisRecords(this.queryParams).then(response => {
- if (response.data.state == 1) {
- this.total = response.data.data.total;
- this.recordData = response.data.data.records;
- console.log("郭23232323232232323",this.recordData)
- }
- });
- },
- fetchAllDoctorAndNurse() {
- fetchAllDoctorAndNurse().then(response => {
- if (response.data.state == 1) {
- this.doctorOptions =
- response.data.data.doctors == null
- ? []
- : response.data.data.doctors;
- this.nurseOptions =
- response.data.data.nursers == null
- ? []
- : response.data.data.nursers;
- }
- });
- },
- scheduleType(schedule_type) {
- var typeName = "未知";
- switch (schedule_type) {
- case 1:
- typeName = "上午";
- break;
- case 2:
- typeName = "下午";
- break;
- case 3:
- typeName = "晚上";
- break;
- default:
- break;
- }
- return typeName;
- },
- modeName(mode_id) {
- return typeof this.modeOptions[mode_id] !== "undefined" &&
- typeof this.modeOptions[mode_id].name !== "undefined"
- ? this.modeOptions[mode_id].name
- : "";
- },
- setAnticoagulantsConfit(prescription) {
- if (
- typeof this.anticoagulantsConfit[prescription.anticoagulant] ===
- "undefined"
- ) {
- return "";
- } else {
- if (this.anticoagulantsConfit[prescription.anticoagulant].shouji != 1) {
- return this.anticoagulantsConfit[prescription.anticoagulant].name;
- } else {
- return (
- this.anticoagulantsConfit[prescription.anticoagulant].name +
- "/" +
- prescription.anticoagulant_shouji +
- "/" +
- prescription.anticoagulant_weichi +
- "/" +
- prescription.anticoagulant_zongliang
- );
- }
- }
- },
- setVascularAccess(prescription) {
- if (
- typeof this.vascularAccess[prescription.vascular_access_mode] ===
- "undefined"
- ) {
- return "";
- } else {
- if (
- typeof this.vascularAccessDesc[prescription.vascular_access] ===
- "undefined"
- ) {
- return this.vascularAccess[prescription.vascular_access_mode].name;
- } else {
- return (
- this.vascularAccess[prescription.vascular_access_mode].name +
- "-" +
- this.vascularAccessDesc[prescription.vascular_access].name
- );
- }
- }
- },
- setDialyzerModel(prescription) {
- var models = [];
- if (prescription.hemodialysis_machine > 0) {
- var ml = this.hemodialysis_machines.length;
- if (ml > 0) {
- for (let index = 0; index < ml; index++) {
- if (
- this.hemodialysis_machines[index].id ==
- prescription.hemodialysis_machine
- ) {
- models.push(this.hemodialysis_machines[index].name);
- }
- }
- }
- }
- if (prescription.blood_filter > 0) {
- var ml = this.blood_filters.length;
- if (ml > 0) {
- for (let index = 0; index < ml; index++) {
- if (this.blood_filters[index].id == prescription.blood_filter) {
- models.push(this.blood_filters[index].name);
- }
- }
- }
- }
- if (prescription.perfusion_apparatus > 0) {
- var ml = this.perfusion_apparatus.length;
- if (ml > 0) {
- for (let index = 0; index < ml; index++) {
- if (
- this.perfusion_apparatus[index].id ==
- prescription.perfusion_apparatus
- ) {
- models.push(this.perfusion_apparatus[index].name);
- }
- }
- }
- }
- return models.join(",");
- },
- getDoctorName(creater) {
- var dl = this.doctorOptions.length;
- if (dl > 0) {
- for (let index = 0; index < dl; index++) {
- if ((this.doctorOptions[index].id == creater)) {
- return this.doctorOptions[index].name;
- }
- }
- }
- return "";
- },
- getNurseName(start_nurse) {
- var dl = this.nurseOptions.length;
- if (dl > 0) {
- for (let index = 0; index < dl; index++) {
-
- if (this.nurseOptions[index].id == start_nurse) {
-
- return this.nurseOptions[index].name;
- }
- }
- }
- return "";
- },
- onTranPatient: function(tranPatient) {
- this.currentPatient = tranPatient;
- },
- printThisInfo() {
- const style =
- "@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; }}";
- setTimeout(() => {
- printJS({
- printable: "printRecord",
- type: "html",
- style: style,
- scanStyles: false
- });
- }, 1);
- },
- clickCurrent(val) {
- this.patient_id = val.patient_id
- this.dialysis_date = val.dialysis_date
- },
- rowclick(val){
- this.$router.push({
- path: "/dialysis/details",
- query: { patient_id: val.patient_id, date: val.dialysis_date }
- });
- // console.log('kkkkkkk',event);
- // this.patient_id = event.patient_id
- // this.dialysis_date = parseTime(event.dialysis_date, '{y}-{m}-{d}')
- // this.drawer =true
- // this.dialysisShow =true
- },
- exportList(){
- import('@/vendor/Export2Excel').then(excel => {
- console.log("导出世界",this.recordData)
- if(this.recordData!=null && this.recordData.length > 0){
- for(let i=0;i<this.recordData.length;i++){
- this.recordData[i].dialysis_date_one = this.getTimeOne(this.recordData[i].dialysis_date)
- this.recordData[i].bed_class = this.scheduleType(this.recordData[i].schedule_type)
- this.recordData[i].mode_name = this.modeName(this.recordData[i].prescription.mode_id)
- this.recordData[i].vascularAccess_name = this.setVascularAccess(this.recordData[i].prescription)
- this.recordData[i].AnticoagulantsConfit = this.setAnticoagulantsConfit(this.recordData[i].prescription)
- this.recordData[i].nurse_name = this.recordData[i].role.user_name
- this.recordData[i].doc_name = this.recordData[i].prescription.role.user_name
-
- this.recordData[i].bed_number = this.recordData[i].partition_name + "-" + this.recordData[i].device.number
- this.recordData[i].dialysis_duration_hour = this.getTime(this.recordData[i].assessment_after_dislysis)
- this.recordData[i].dry_weight = this.recordData[i].predialysis_evaluation.dry_weight
- this.recordData[i].weight_before = this.recordData[i].predialysis_evaluation.weight_before
- this.recordData[i].weight_after = this.recordData[i].assessment_after_dislysis.weight_after
- this.recordData[i].befor_pressure = this.recordData[i].predialysis_evaluation.systolic_blood_pressure + "/" + this.recordData[i].predialysis_evaluation.diastolic_blood_pressure
- this.recordData[i].after_pressure = this.recordData[i].assessment_after_dislysis.systolic_blood_pressure +"/"+this.recordData[i].assessment_after_dislysis.diastolic_blood_pressure
- this.recordData[i].target_ultrafiltration = this.recordData[i].prescription.target_ultrafiltration
-
- this.recordData[i].dialyzer_perfusion_apparatus = this.recordData[i].prescription.dialyzer_perfusion_apparatus
- if(this.recordData[i].dialyzer_perfusion_apparatus == ""){
- this.recordData[i].dialyzer_perfusion_apparatus = this.recordData[i].prescription.dialysis_dialyszers + "/" + this.recordData[i].prescription.dialysis_irrigation
- }
- this.recordData[i].patient_name = this.currentPatient.name
- }
- }
-
- const tHeader = ['姓名','透析日期','班次', '分区机号', '透析模式','透析时长','干体重(kg)','透前体重(kg)','透后体重(kg)','透前血压(mmHg)','透后血压(mmHg)','目标超滤量','抗凝剂 首剂/维持/总量','透析器型号','治疗护士','治疗医生']
- 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']
-
- const data = this.formatJson(filterVal, this.recordData)
- excel.export_json_to_excel({
- header: tHeader,
- data,
- filename: '透析记录'
- })
- })
- },
- formatJson(filterVal, jsonData) {
- return jsonData.map(v => filterVal.map(j => v[j]));
- },
-
- },
- created() {
- const id = this.$route.params && this.$route.params.id;
- this.patientID = parseInt(id);
- if (isNaN(this.patientID) || this.patientID <= 0) {
- this.$notify.error({
- title: "错误",
- message: "无效的id"
- });
- this.$router.back(-1);
- }
- this.queryParams.patient_id = this.patientID;
- this.modeOptions = this.$store.getters.treatment_mode;
- this.anticoagulantsConfit = this.$store.getters.anticoagulants_confit;
- this.blood_filters = this.$store.getters.blood_filters;
- this.perfusion_apparatus = this.$store.getters.perfusion_apparatus;
- this.hemodialysis_machines = this.$store.getters.hemodialysis_machines;
- this.vascularAccess = this.$store.getters.vascular_access;
- this.vascularAccessDesc = this.$store.getters.vascular_access_desc;
-
-
- var xtuser = this.$store.getters.xt_user;
- this.orgname = xtuser.org.org_name;
-
- },mounted(){
-
- this.fetchAllDoctorAndNurse();
- this.getPatientDialysisRecords();
-
- },
- computed:{
- steps: function() {
- var steps = [
- { title: '透析处方', finish: false },
- { title: '接诊评估', finish: false },
- { title: '透前评估', finish: false },
- { title: '临时医嘱', finish: false },
- { title: '双人核对', finish: false },
- { title: '透析上机', finish: false },
- { title: '透析监测', finish: false },
- { title: '透析下机', finish: false },
- { title: '透后评估', finish: false },
- { title: '治疗小结', finish: false }
- ]
- steps[0].finish = this.prescription.id && this.prescription.creater > 0
- steps[1].finish = this.receiver_treatment_access.id > 0
- // steps[2].finish =this.predialysis_evaluation.id > 0 && this.predialysis_evaluation.creater > 0
- steps[2].finish =this.predialysis_evaluation.id > 0
- steps[3].finish = this.doctor_advices.length > 0
- steps[5].finish = this.dialysis_order.id > 0
- steps[7].finish =
- this.dialysis_order.id > 0 && this.dialysis_order.stage == 2
-
- steps[4].finish =
- this.double_check.id > 0 &&
- this.double_check.creater > 0 &&
- this.double_check.modifier > 0
- steps[6].finish = this.monitor_records.length > 0
- // steps[8].finish = this.assessment_after_dislysis.id > 0 && this.assessment_after_dislysis.creater > 0
- steps[8].finish = this.assessment_after_dislysis.id > 0
- steps[9].finish = this.treatment_summary.id > 0
-
- return steps
- },
- }
- };
- </script>
- <style>
- #oictable ::-webkit-scrollbar {
- height: 15px;
- }
- .el-table td,
- .el-table th.is-leaf,
- .el-table--border,
- .el-table--group {
- border-color: #d0d3da;
- }
- .el-table--border::after,
- .el-table--group::after,
- .el-table::before {
- background-color: #d0d3da;
- }
- </style>
-
- <style rel="stylesheet/scss" lang="scss" scoped>
- .total {
- font-size: 14px;
- line-height: 32px;
- height: 32px;
- color: #6caef7;
- }
-
- .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;
- }
- </style>
|