12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490 |
- <template>
- <div class="patient-container">
- <patient-sidebar :id="patientID" defaultActive="2-1"></patient-sidebar>
- <div class="patient-app-container app-container">
- <div class="Total">
- <!-- <div class="plan" >透析计划</div> -->
- <!-- <table-title title="长期透析处方"></table-title> -->
- <div class="sum">
- <!-- <span>透析总频率:<el-input :value="totalrate" disabled style="width:180px"></el-input></span> -->
- <el-button type="primary" size="small" icon="el-icon-plus" @click="openNew" :disabled="$store.getters.xt_user.subscibe.state==3?true:false">新增透析处方</el-button>
- </div>
- </div>
- <el-table ref="solutionTable" :data="tableData" border fit highlight-current-row
- @current-change="tableCurrentChange" :header-cell-style="{
- backgroundColor: 'rgb(245, 247, 250)',
- color: '#606266'
- }"
- :row-style="{ color: '#303133' }"
- style="width: 100%">
- <el-table-column
- type="index"
- align="center"
- label="序号"
- width="60">
- </el-table-column>
- <el-table-column
- prop="mode_name"
- align="center"
- label="透析模式"
- min-width="50">
- <template slot-scope="scope" >
- {{modeOptions[scope.row.mode_id].name}}
- </template>
- </el-table-column>
- <el-table-column
- prop="dialysis_duration"
- align="center"
- label="透析时长"
- min-width="50">
- <template slot-scope="scope" >
- {{scope.row.dialysis_duration_hour}} 小时 {{scope.row.dialysis_duration_minute}} 分钟
- </template>
- </el-table-column>
- <!-- <el-table-column
- prop="period"
- label="频率"
- align="center"
- min-width="50">
- <template slot-scope="scope" >
- <span v-if="scope.row.parent_id === 0" >{{scope.row.period}}{{scope.row.times}}</span>
- <span v-else >--</span>
- </template>
- </el-table-column> -->
- <!-- <el-table-column
- prop="name"
- label="处方名"
- align="center"
- min-width="50">
- <template slot-scope="scope" >
- <span >{{scope.row.name}}{{scope.row.sub_name}}</span>
- </template>
- </el-table-column> -->
- <el-table-column
- prop="doctor"
- label="医生"
- align="center"
- min-width="110">
- <template slot-scope="scope" >
- <span >{{getAdminUserName(scope.row.registrars_id)}}</span>
- </template>
-
- </el-table-column>
-
- <el-table-column
- prop="updated_time"
- align="center"
- label="更新日期"
- min-width="60">
- <template slot-scope="scope">
- <span>{{scope.row.updated_time | parseTime('{y}-{m}-{d}')}}</span>
- </template>
- </el-table-column>
- <!-- <el-table-column
- prop="state"
- label="状态"
- align="center"
- min-width="40">
- <template slot-scope="scope" >
- <span v-if="scope.row.initiate_mode==1">启用</span>
- <span v-else-if="scope.row.initiate_mode==2">停用</span>
- <span v-else>未知</span>
- </template>
- </el-table-column> -->
- <el-table-column label="操作" align="center" min-width="140">
- <template slot-scope="scope">
- <el-tooltip class="item" effect="dark" content="编辑" placement="top">
- <el-button
- size="small"
- type="primary"
- icon="el-icon-edit-outline"
- @click="openEdit(scope.$index, scope.row)"></el-button>
- </el-tooltip>
- <!-- <el-button
- size="mini"
- type="primary"
- @click="openChildEdit(scope.$index, scope.row)" v-else>编辑</el-button>
-
- <el-button
- size="mini"
- type="success"
- @click="openNewChild(scope.$index, scope.row)" v-if="scope.row.parent_id===0">新增</el-button>
- <el-button
- size="mini"
- type="danger"
- @click="handleDelete(scope.$index, scope.row)">删除</el-button>-->
- </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>
-
- <el-dialog
- :title="isEdit?'编辑透析处方':'新增透析处方'"
- :visible.sync="dialogVisible"
- width="1010px">
- <el-form ref="addPlan" :model="addPlan" :rules="addPlanRules" label-width="160px">
- <el-row :gutter="20">
- <el-col :span="8" v-if="isShows('透析模式')">
- <el-form-item label="透析模式:" prop="mode">
- <el-select v-model="addPlan.mode" @change="addPlanModeChange" :disabled="isEdit?true:false">
- <el-option v-for="item in modeOptions" :label="item.name" :key="item.id" :value="item.id"></el-option>
- </el-select>
- </el-form-item>
- </el-col>
-
- <el-col :span="8" v-if="isShows('透析时长')">
- <el-form-item label="透析时长(h):" prop="dialysis_duration">
- <el-time-picker
- v-model="dialysisTimeShow"
- :picker-options="{
- selectableRange: '00:01:00 - 23:59:00'
- }"
- placeholder="透析时长"
- style="width:100%;"
- value-format="H:m"
- format="H:m"
- @change="selectnDialysisTime"
- >
- </el-time-picker>
-
- </el-form-item>
- </el-col>
-
- <!-- <el-col :span="8">
- <el-form-item label="透析器:" prop="dialyzer">
- <el-select v-model="addPlan.dialyzer" placeholder="" >
- <el-option v-for="item in deviceList" :label="item.name" :key="item.id" :value="item.id"></el-option>
- </el-select>
- </el-form-item>
- </el-col> -->
- <!-- <el-col :span="8">
- <el-form-item label="透析器:" prop="hemodialysis_machine">
- <el-select v-model="addPlan.hemodialysis_machine" placeholder="" >
- <el-option v-for="item in hemodialysis_machines" :label="item.name" :key="item.id" :value="item.id"></el-option>
- </el-select>
- </el-form-item>
- </el-col> -->
- <!-- <el-col :span="8">
- <el-form-item label="灌流器:" prop="perfusion_apparatus">
- <el-select v-model="addPlan.perfusion_apparatus" placeholder="" >
- <el-option v-for="item in perfusion_apparatus" :label="item.name" :key="item.id" :value="item.id"></el-option>
- </el-select>
- </el-form-item>
- </el-col> -->
- <el-col :span="8" v-if="isShows('血流量')">
- <el-form-item label="血流量(ml/min):" prop="blood_flow_volume">
- <el-input v-model="addPlan.blood_flow_volume"></el-input>
- </el-form-item>
- </el-col>
- <!--<el-col :span="8" v-if="isShows('目标超滤量')&&this.$store.getters.xt_user.template_info.template_id == 6">-->
- <!--<el-form-item label="目标超滤量(ml) : ">-->
- <!--<el-input v-model="addPlan.target_ultrafiltration" type="number"></el-input>-->
- <!--</el-form-item>-->
- <!--</el-col>-->
-
- <!--<el-col :span="8" v-if="isShows('目标超滤量')&&this.$store.getters.xt_user.template_info.template_id != 6">-->
- <!--<el-form-item label="目标超滤量(L) : ">-->
- <!--<el-input v-model="addPlan.target_ultrafiltration" type="number"></el-input>-->
- <!--</el-form-item>-->
- <!--</el-col>-->
-
-
- <el-col :span="8" v-if="isShows('透析液配方')">
- <el-form-item label="透析液配方:" >
- <el-select v-model="addPlan.dialysate_formulation">
- <el-option v-for="item in dialysate_formulation" :label="item.name" :key="item.id"
- :value="item.id"></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <!-- <el-col :span="12">
- <el-form-item label="脱水量(L):" prop="dewater">
- <el-input v-model="addPlan.dewater" ></el-input>
- </el-form-item>
- </el-col> -->
- <!-- <el-col :span="12">
- <el-form-item label="置换液(L):" prop="displace_liqui">
- <el-input v-model="addPlan.displace_liqui" ></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="置换方式:" prop="replacement_way" >
- <el-select v-model="addPlan.replacement_way" >
- <el-option v-for="item in replacementWays" :label="item.name" :key="item.id" :value="item.id"></el-option>
- </el-select>
- </el-form-item>
- </el-col> -->
- <el-col :span="8" v-if="isShows('抗凝剂')">
- <el-form-item label="抗凝剂:" prop="anticoagulant">
- <el-select v-model="addPlan.anticoagulant" @change="changeThisAnticoagulant">
- <el-option v-for="item in anticoagulantsConfit" :label="item.name" :key="item.id"
- :value="item.id"></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="8" v-if="anticoagulant.shouji != -1&&isShows('首剂')">
- <el-form-item :label="'首剂('+anticoagulant.shouji_unit+'): '" prop="anticoagulant_shouji">
- <el-input v-model="addPlan.anticoagulant_shouji"
- :disabled="anticoagulant.shouji==1?false:true" type="number"></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="8" v-if="anticoagulant.weichi != -1&&isShows('维持')">
- <el-form-item :label="'维持('+anticoagulant.weichi_unit+'): '" prop="anticoagulant_weichi">
- <el-input v-model="addPlan.anticoagulant_weichi"
- :disabled="anticoagulant.weichi==1?false:true" type="number"></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="8" v-if="anticoagulant.zongliang != -1&&isShows('总量')">
- <el-form-item :label="'总量('+anticoagulant.zongliang_unit+'): '" prop="anticoagulant_zongliang">
- <el-input v-model="addPlan.anticoagulant_zongliang"
- :disabled="anticoagulant.zongliang==1?false:true" type="number"></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="8" v-if="anticoagulant.gaimingcheng != -1&&isShows('钙名称')">
- <el-form-item label="钙名称:" prop="anticoagulant_gaimingcheng">
- <el-input v-model="addPlan.anticoagulant_gaimingcheng"
- :disabled="anticoagulant.gaimingcheng==1?false:true" placeholder="钙名称"></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="8" v-if="anticoagulant.gaijiliang != -1&&isShows('钙剂量')">
- <el-form-item :label="'钙剂量('+anticoagulant.gaimingcheng_unit+'): '" prop="anticoagulant_gaijiliang">
- <el-input v-model="addPlan.anticoagulant_gaijiliang" :disabled="anticoagulant.gaijiliang==1?false:true"
- placeholder="钙剂量"></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="8" v-if="isShows('置换量')">
- <el-form-item label="置换量(L) : " prop="replacement_total">
- <el-input v-model="addPlan.replacement_total" type="number"></el-input>
- </el-form-item>
- </el-col>
-
-
- <el-col :span="8" v-if="isShows('钾')">
- <el-form-item label="钾(mmol/L): " prop="kalium">
- <el-input v-model="addPlan.kalium"></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="8" v-if="isShows('钠')">
- <el-form-item label="钠(mmol/L): " prop="sodium">
- <el-input v-model="addPlan.sodium"></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="8" v-if="isShows('钙')">
- <el-form-item label="钙(mmol/L): " prop="calcium">
- <el-input v-model="addPlan.calcium"></el-input>
- </el-form-item>
- </el-col>
-
- <el-col :span="8" v-if="isShows('透析器/灌流器')">
- <el-form-item label="透析器/灌流器:">
- <el-input v-model="addPlan.dialyzer_perfusion_apparatus"></el-input>
- </el-form-item>
- </el-col>
-
-
- <el-col :span="8" v-if="isShows('碳酸氢盐')">
- <el-form-item label="碳酸氢盐(mmol/L): " prop="bicarbonate">
- <el-input v-model="addPlan.bicarbonate"></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="8" v-if="isShows('葡萄糖')">
- <el-form-item label="葡萄糖(mmol/L): " prop="glucose">
- <el-input v-model="addPlan.glucose"></el-input>
- </el-form-item>
- </el-col>
-
-
- <el-col :span="8" v-if="isShows('透析液流量')">
- <el-form-item label="透析液流量(ml/min): " prop="dialysate_flow">
- <el-input v-model="addPlan.dialysate_flow"></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="8" v-if="isShows('透析液温度')">
- <el-form-item label="透析液温度(℃): " prop="dialysate_temperature">
- <el-input v-model="addPlan.dialysate_temperature"></el-input>
- </el-form-item>
- </el-col>
-
- <el-col :span="8" v-if="isShows('电导度')">
- <el-form-item label="电导度(mS/cm): " prop="conductivity">
- <el-input v-model="addPlan.conductivity"></el-input>
- </el-form-item>
- </el-col>
-
-
- <el-col :span="8" v-if="isShows('体液过多症状')">
- <el-form-item label="体液过多症状:">
- <el-select v-model="addPlan.body_fluid" @change="changeBodyFluid">
- <el-option v-for="item in body_fluid_option" :label="item.name" :key="item.id"
- :value="item.id"></el-option>
- </el-select>
- </el-form-item>
- </el-col>
-
- <el-col :span="8" v-if="isShows('体液过多其他症状')">
- <el-form-item label="体液过多其他症状">
- <el-input v-model="addPlan.body_fluid_other"></el-input>
- </el-form-item>
- </el-col>
-
-
- <el-col :span="8" v-if="isShows('透析前使用特殊药物')">
- <el-form-item label="透析前使用特殊药物">
- <el-select v-model="addPlan.special_medicine" placeholder="请选择" style="width:100%;"
- >
- <el-option :key="0" label="请选择" :value="0"></el-option>
- <el-option v-for="item in special_medicine_option" :label="item.name" :key="item.id"
- :value="item.id"></el-option>
- </el-select>
- </el-form-item>
- </el-col>
-
- <el-col :span="8" v-if="isShows('透析前使用其他特殊药物')">
- <el-form-item label="使用其他特殊药物">
- <el-input v-model="addPlan.special_medicine_other"></el-input>
- </el-form-item>
- </el-col>
-
-
- <el-col :span="8">
- <el-form-item label="置换液:" v-if="isShows('置换液')&&this.$store.getters.xt_user.template_info.template_id != 6">
- <el-select v-model="addPlan.displace_liqui_part" placeholder="请选择">
- <el-option :key="0" label="请选择" :value="0"></el-option>
- <el-option v-for="(option, index) in displace_liqui_part_option" :key="index"
- :label="option.name" :value="option.id"></el-option>
- </el-select>
- </el-form-item>
-
-
- <el-form-item label="置换方式:" v-if="isShows('置换液')&&this.$store.getters.xt_user.template_info.template_id == 6">
- <el-select v-model="addPlan.displace_liqui_part" placeholder="请选择">
- <el-option :key="0" label="请选择" :value="0"></el-option>
- <el-option v-for="(option, index) in displace_liqui_part_option" :key="index"
- :label="option.name" :value="option.id"></el-option>
- </el-select>
- </el-form-item>
-
- </el-col>
-
- <el-col :span="8" v-if="isShows('置换液总量')">
- <el-form-item label="置换液总量(L)">
- <el-input v-model="addPlan.displace_liqui_value"></el-input>
- </el-form-item>
- </el-col>
-
-
- <el-col :span="8" v-if="isShows('血管通路')">
- <el-form-item label="血管通路:">
- <el-select v-model="addPlan.blood_access" placeholder="请选择">
- <el-option :key="0" label="请选择" :value="0"></el-option>
-
- <el-option v-for="(option, index) in blood_access_option" :key="index"
- :label="option.name" :value="option.id"></el-option>
- </el-select>
- </el-form-item>
- </el-col>
-
- <!-- </el-row>
- <el-row :gutter="20" > -->
- <el-col :span="8" v-if="isShows('实际超滤量')">
- <el-form-item label="实际超滤量(L)">
- <el-input v-model="addPlan.ultrafiltration"></el-input>
- </el-form-item>
- </el-col>
-
-
- <el-col :span="8" v-if="isShows('目标KT/V')">
- <el-form-item label="目标KT/V">
- <el-input v-model="addPlan.target_ktv"></el-input>
- </el-form-item>
- </el-col>
-
-
- </el-row>
-
-
- <el-row :gutter="24">
- <el-col :span="24">
- <el-form-item label="备注: " prop="remark">
- <el-input
- type="textarea"
- :rows="2"
- placeholder="请输入内容"
- v-model="addPlan.remark">
- </el-input>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- <span slot="footer" class="dialog-footer">
- <el-button @click="dialogVisible = false">取 消</el-button>
- <el-button type="primary" @click="submitEditSolution('addPlan')" v-if="isEdit"
- :disabled="$store.getters.xt_user.subscibe.state==3?true:false">保 存</el-button>
- <el-button type="primary" @click="submitNewSolution('addPlan')" v-else
- :disabled="$store.getters.xt_user.subscibe.state==3?true:false">保 存</el-button>
- </span>
- </el-dialog>
-
- </div>
- </template>
-
- <script>
- import tableTitle from './components/tableTitle'
- import PatientSidebar from './components/PatientSidebar'
- import { fetchAllAdminUsers, fetchAllDoctorAndNurse } from '@/api/doctor'
- import {
- createChildPatientDialysisSolution,
- createPatientDialysisSolution,
- deleteDialysisSolution,
- editChildPatientDialysisSolution,
- editDialysisSolutionDetail,
- editPatientDialysisSolution,
- fetchPatientDialysisSolutions
- } from '@/api/patient'
-
- import {
- getSystemPrescription,
- } from '@/api/config'
-
-
-
-
- import { calculateAnticoagulantZL, uParseTime } from '@/utils/tools'
- import store from '@/store'
-
- import { GetDeviceInfo } from '@/api/dialysis'
-
- const periodWeek = [
- { value: '每周', label: '每周' },
- { value: '两周', label: '两周' },
- { value: '三周', label: '三周' },
- { value: '四周', label: '四周' }
- ]
- const periodDay = [
- { value: '2天', label: '2天' },
- { value: '3天', label: '3天' },
- { value: '4天', label: '4天' },
- { value: '5天', label: '5天' },
- { value: '10天', label: '10天' },
- { value: '15天', label: '15天' },
- { value: '30天', label: '30天' }
- ]
- const numOptionsWeek = [
- { value: '1次', label: '1次' },
- { value: '2次', label: '2次' },
- { value: '3次', label: '3次' },
- { value: '4次', label: '4次' },
- { value: '5次', label: '5次' },
- { value: '6次', label: '6次' },
- { value: '7次', label: '7次' }
- ]
- const numOptionsDay = [
- { value: '1次', label: '1次' }
- ]
-
- export default {
- name: 'Dialysis',
- data() {
- var checkFirstDialysis = (rule, value, callback) => {
- if (this.addPlan.type == 2 && !value) {
- return callback(new Error('请选择首次透析!'))
- }
- callback()
- }
- var checkSubName = (rule, value, callback) => {
- var pattern = /^\d*$/
- if (!pattern.test(value)) {
- return callback(new Error('只填写0-9的数字'))
- }
- callback()
- }
- return {
- deviceList: [],
- dialysisTimeShow: new Date(2018, 1, 1, 3, 0),
- isEdit: false,
- isChildEdit: false,
- totalrate: '无/两周一次',
- patientID: 0,
- dialogVisible: false,
- dialogFormVisible: false,
- formLabelWidth: '80px',
- formInputWidth: '80px',
- total: 0,
- tableData: null,
- form: {
- name: '',
- region: '',
- date1: '',
- date2: '',
- delivery: false,
- type: [],
- resource: '',
- desc: ''
- },
- addPlan: {
- id: 0,
- mode: '',
- mode_name: '',
- dialyzer: '',
- dialysis_duration: '',
- dialysis_duration_hour: '',
- dialysis_duration_minute: '',
- hemodialysis_machine: '',
- perfusion_apparatus: '',
- blood_flow_volume: '',
- dewater: '',
- displace_liqui: 0,
- replacement_way: '',
- anticoagulant: '',
- anticoagulant_shouji: '',
- anticoagulant_weichi: '',
- anticoagulant_zongliang: '',
- anticoagulant_gaimingcheng: '',
- anticoagulant_gaijiliang: '',
- kalium: '',
- replacement_total: '',
- sodium: '',
- calcium: '',
- bicarbonate: '',
- glucose: '',
- dry_weight: '',
- dialysate_flow: '',
- dialysate_temperature: '',
- conductivity: '',
- doctor: '',
- dialysate_formulation:'',
- remark: '',
- target_ktv:'',
- target_ultrafiltration:'',
- dialyzer_perfusion_apparatus: '',
- body_fluid: '',
- body_fluid_other: '',
- special_medicine: '',
- special_medicine_other: '',
- displace_liqui_part: '',
- displace_liqui_value: '',
- ultrafiltration: '',
- blood_access: '',
- },
- childPlan: {
- mode: '',
- frequency: '',
- name: '',
- parent_id: 0,
- sub_name: '',
- initiate_mode: '',
- doctor: ''
- },
- modeOptions: null,
- anticoagulantsSet: {
- type: 1
- },
- replacementWays: null,
- anticoagulantsConfit: null,
- dialysate_formulation: [],
- body_fluid_option: [],
- special_medicine_option: [],
- displace_liqui_part_option: [],
- blood_access_option: [],
- timeOptions: [
- { value: 1, label: '按周' },
- { value: 2, label: '按日' }
- ],
- periodOptions: periodWeek,
- numOptions: numOptionsWeek,
- stateOptions: [
- { value: 1, label: '启用' },
- { value: 2, label: '停用' }
- ],
- doctorOptions: null,
- adminUserOptions: null,
- current_index: -1,
- addPlanRules: {
- mode: [{ required: true, message: '请选择透析模式', trigger: 'blur' }],
- type: [{ required: true, message: '请选择频率', trigger: 'blur' }],
- period: [{ required: true, message: '请选择周期', trigger: 'blur' }],
- times: [{ required: true, message: '请选择次数', trigger: 'blur' }],
- initiate_mode: [{ required: true, message: '请选择状态', trigger: 'blur' }],
- doctor: [{ required: true, message: '请选择医生', trigger: 'blur' }],
- first_dialysis: [{ validator: checkFirstDialysis, trigger: 'blur' }]
- },
- addChildPlanRules: {
- sub_name: [{ required: true, message: '请填写处方名', trigger: 'blur' }, {
- validator: checkSubName,
- trigger: 'blur'
- }],
- initiate_mode: [{ required: true, message: '请选择状态', trigger: 'blur' }],
- doctor: [{ required: true, message: '请选择医生', trigger: 'blur' }]
- },
- current_model: {
- id: 0,
- name: '',
- dialysis_duration: 2,
- replacement_total: 0,
- replacement_way: 2,
- hemodialysis_machine: 2,
- blood_filter: 2,
- perfusion_apparatus: 2,
- blood_flow_volume: 2,
- dialysate_flow: 2,
- kalium: 2,
- sodium: 2,
- calcium: 2,
- bicarbonate: 2
- },
- current_solution: {
- id: 0,
- name: '',
- sub_name: '',
- period: '',
- times: '',
- doctor: 0
- },
- anticoagulant: {
- id: 0,
- name: '',
- type: 1,
- shouji: 1,
- weichi: 1,
- zongliang: 1,
- gaimingcheng: -1,
- gaijiliang: -1,
- shouji_unit: 'mg',
- weichi_unit: 'mg/h',
- zongliang_unit: 'mg',
- gaimingcheng_unit: '',
- gaijiliang_unit: ''
- },
- blood_filters: null,
- perfusion_apparatus: null,
- hemodialysis_machines: null,
- solution_detail: {
- id: 0,
- affirm_state: 0,
- dialysis_duration: '',
- replacement_way: '',
- mode_id: '',
- blood_flow_volume: '',
- hemodialysis_machine: '',
- blood_filter: '',
- perfusion_apparatus: '',
- dialysate_flow: '',
- kalium: '',
- replacement_total: '',
- sodium: '',
- calcium: '',
- bicarbonate: '',
- anticoagulant: '',
- anticoagulant_shouji: '',
- anticoagulant_weichi: '',
- anticoagulant_zongliang: '',
- anticoagulant_gaimingcheng: '',
- anticoagulant_gaijiliang: ''
- },
- queryParams: {
- page: 1,
- limit: 10,
- id: 0
- }
- }
- },
- watch: {
- "addPlan.dialysis_duration":function(){
- this.addPlan.anticoagulant_zongliang=calculateAnticoagulantZL(1,
- this.addPlan.anticoagulant_shouji,
- this.addPlan.dialysis_duration,
- this.addPlan.anticoagulant_weichi
- );
- },
- "addPlan.anticoagulant_shouji":function(){
- this.addPlan.anticoagulant_zongliang=calculateAnticoagulantZL(1,
- this.addPlan.anticoagulant_shouji,
- this.addPlan.dialysis_duration,
- this.addPlan.anticoagulant_weichi
- );
- },
- "addPlan.anticoagulant_weichi":function(){
- this.addPlan.anticoagulant_zongliang=calculateAnticoagulantZL(1,
- this.addPlan.anticoagulant_shouji,
- this.addPlan.dialysis_duration,
- this.addPlan.anticoagulant_weichi
- );
- }
- },
- components: {
- tableTitle, PatientSidebar
- },
- methods: {
- changeBodyFluid: function() {
-
- },
- GetDeviceData: function() {
- let params = {}
- GetDeviceInfo(params).then(response => {
- this.deviceList = response.data.data.device
- })
- },
-
- selectnDialysisTime(val) {
- var valTime = val.split(':')
- this.addPlan.dialysis_duration = parseFloat(valTime[0]) + parseFloat((valTime[1] / 60).toFixed(2))
- this.addPlan.dialysis_duration_hour = valTime[0]
- this.addPlan.dialysis_duration_minute = valTime[1]
- },
-
- tableCurrentChange(current) {
- if (typeof (current) == 'undefined' || current == null) {
- this.current_solution = {
- id: 0,
- name: '',
- sub_name: '',
- period: '',
- times: '',
- doctor: 0
- }
- this.solution_detail = {
- id: 0,
- affirm_state: 0,
- dialysis_duration: '',
- replacement_way: '',
- mode_id: '',
- blood_flow_volume: '',
- hemodialysis_machine: '',
- blood_filter: '',
- perfusion_apparatus: '',
- dialysate_flow: '',
- kalium: '',
- replacement_total: '',
- sodium: '',
- calcium: '',
- bicarbonate: '',
- anticoagulant: '',
- anticoagulant_shouji: '',
- anticoagulant_weichi: '',
- anticoagulant_zongliang: '',
- anticoagulant_gaimingcheng: '',
- anticoagulant_gaijiliang: ''
- }
- return
- }
- this.current_solution = current
- this.setCurrentMode(current.mode_id)
- this.solution_detail = {
- id: this.current_solution.id,
- affirm_state: this.current_solution.affirm_state,
- dialysis_duration: this.current_solution.dialysis_duration != 0 ? this.current_solution.dialysis_duration : '',
- replacement_way: this.current_solution.replacement_way != 0 ? this.current_solution.replacement_way : '',
- replacement_total: this.current_solution.replacement_total != 0 ? this.current_solution.replacement_total : '',
- mode_id: this.current_solution.mode_id,
- blood_flow_volume: this.current_solution.blood_flow_volume != 0 ? this.current_solution.blood_flow_volume : '',
- hemodialysis_machine: this.current_solution.hemodialysis_machine != 0 ? this.current_solution.hemodialysis_machine : '',
- blood_filter: this.current_solution.blood_filter != 0 ? this.current_solution.blood_filter : '',
- perfusion_apparatus: this.current_solution.perfusion_apparatus != 0 ? this.current_solution.perfusion_apparatus : '',
- dialysate_flow: this.current_solution.dialysate_flow != 0 ? this.current_solution.dialysate_flow : '',
- kalium: this.current_solution.kalium != 0 ? this.current_solution.kalium : '',
- sodium: this.current_solution.sodium != 0 ? this.current_solution.sodium : '',
- calcium: this.current_solution.calcium != 0 ? this.current_solution.calcium : '',
- bicarbonate: this.current_solution.bicarbonate != 0 ? this.current_solution.bicarbonate : '',
- anticoagulant: this.current_solution.anticoagulant != 0 ? this.current_solution.anticoagulant : '',
- anticoagulant_shouji: this.current_solution.anticoagulant_shouji != 0 ? this.current_solution.anticoagulant_shouji : '',
- anticoagulant_weichi: this.current_solution.anticoagulant_weichi != 0 ? this.current_solution.anticoagulant_weichi : '',
- anticoagulant_zongliang: this.current_solution.anticoagulant_zongliang != 0 ? this.current_solution.anticoagulant_zongliang : ''
- }
-
- },
- handleDelete(index, row) {
- if (row.use_state == 1) {
- this.$message.error('方案已被使用,不能删除')
- return false
- }
- this.$confirm('确定删除' + row.name + row.sub_name + '方案吗?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- deleteDialysisSolution(row.id).then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg)
- return false
- } else {
- this.$notify({
- title: '成功',
- message: '删除成功',
- type: 'success',
- duration: 2000
- })
- this.tableData.splice(index, 1)
- // if (row.parent_id>0) {
- // this.tableData.splice(index,1);
- // }else {
- // var resetTableData = this.tableData;
- // this.tableData = [];
- // var that = this;
- // resetTableData.forEach(function(item, itemindex){
- // if (item.id != row.id && item.parent_id != row.id) {
- // that.tableData.push(item);
- // }
- // });
- // }
-
- }
- })
- })
- },
- submitSolution(formName) {
- editDialysisSolutionDetail(this.patientID, this.solution_detail.id, this.solution_detail).then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg)
- return false
- } else {
- this.$notify({
- title: '成功',
- message: '修改成功',
- type: 'success',
- duration: 2000
- })
- var thisSolution = response.data.data.solution
- var spliceIndex = -1
-
- for (let index = this.tableData.length - 1; ; index--) {
- if (this.tableData[index].id === thisSolution.id) {
- spliceIndex = index
- break
- }
- }
-
- if (spliceIndex > -1) {
- var newIndex = spliceIndex + 1
- if (newIndex === this.tableData.length) {
- this.tableData.pop()
- this.tableData.push(thisSolution)
- } else {
- var swapData = this.tableData.splice(newIndex)
- this.tableData.pop()
- this.tableData.push(thisSolution)
- this.tableData = this.tableData.concat(swapData)
- }
- }
- this.solution_detail.affirm_state = thisSolution.affirm_state
- this.$refs.solutionTable.setCurrentRow(this.tableData[spliceIndex])
- }
- })
- },
- submitEditChildSolution(formName) {
- this.$refs[formName].validate(valid => {
- if (valid) {
- var editData = {
- initiate_mode: this.childPlan.initiate_mode,
- doctor: this.childPlan.doctor
- }
- editChildPatientDialysisSolution(this.patientID, this.childPlan.id, editData).then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg)
- return false
- } else {
- this.$notify({
- title: '成功',
- message: '修改成功',
- type: 'success',
- duration: 2000
- })
- this.$refs[formName].resetFields()
- this.dialogFormVisible = false
- this.tableData[this.current_index].doctor = response.data.data.solution.doctor
- this.tableData[this.current_index].updated_time = response.data.data.solution.updated_time
- this.tableData[this.current_index].initiate_mode = response.data.data.solution.initiate_mode
- this.current_index = -1
- return false
- }
- })
- }
- })
- },
- submitNewChildSolution(formName) {
- this.$refs[formName].validate(valid => {
- if (valid) {
- var createData = {
- parent_id: this.childPlan.parent_id,
- sub_name: this.childPlan.sub_name,
- initiate_mode: this.childPlan.initiate_mode,
- doctor: this.childPlan.doctor
- }
- createChildPatientDialysisSolution(this.patientID, createData).then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg)
- return false
- } else {
- this.$notify({
- title: '成功',
- message: '创建成功',
- type: 'success',
- duration: 2000
- })
- this.$refs[formName].resetFields()
- var spliceIndex = -1
-
- for (let index = this.tableData.length - 1; ; index--) {
- if (this.tableData[index].parent_id === createData.parent_id) {
- spliceIndex = index
- break
- } else if (this.tableData[index].id === createData.parent_id) {
- spliceIndex = index
- break
- }
- }
-
- if (spliceIndex > -1) {
- spliceIndex += 1
- if (spliceIndex === this.tableData.length) {
- this.tableData.push(response.data.data.solution)
- } else {
- var swapData = this.tableData.splice(spliceIndex)
- this.tableData.push(response.data.data.solution)
- this.tableData = this.tableData.concat(swapData)
- }
- }
- this.dialogFormVisible = false
- return false
- }
- })
- }
- })
-
- },
- submitEditSolution(formName) {
- this.$refs[formName].validate(valid => {
- if (valid) {
- editPatientDialysisSolution(this.patientID, this.addPlan.id, this.addPlan).then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg)
- return false
- } else {
- this.$notify({
- title: '成功',
- message: '修改成功',
- type: 'success',
- duration: 2000
- })
- this.$refs[formName].resetFields()
-
- this.dialogVisible = false
-
- for (var dindex in response.data.data.solution) {
- if (dindex == 'id') {
- continue
- }
- this.tableData[this.current_index][dindex] = response.data.data.solution[dindex]
- }
- // this.tableData[this.current_index].dialysis_duration = response.data.data.solution.dialysis_duration;
- // this.tableData[this.current_index].doctor = response.data.data.solution.doctor;
- // this.tableData[this.current_index].updated_time = response.data.data.solution.updated_time;
-
- this.current_index = -1
- return false
- }
- })
- }
- })
- },
- submitNewSolution(formName) {
- this.addPlan.anticoagulant_zongliang = this.addPlan.anticoagulant_zongliang.toString()
- this.$refs[formName].validate(valid => {
- if (valid) {
- createPatientDialysisSolution(this.patientID, this.addPlan).then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg)
- return false
- } else {
- this.$notify({
- title: '成功',
- message: '创建成功',
- type: 'success',
- duration: 2000
- })
- this.$refs[formName].resetFields()
- this.dialogVisible = false
- this.tableData.unshift(response.data.data.solution)
- if (this.tableData.length > 10) {
- this.tableData.pop()
- }
- this.total += 1
- return false
- }
- })
- }
- })
-
- },
- handleEdit(index, row) {
- console.log(index, row)
- },
- handleSizeChange(val) {
- this.queryParams.limit = val
- this.fetchPatientDialysisSolutions()
- },
- handleCurrentChange(val) {
- this.queryParams.page = val
- this.fetchPatientDialysisSolutions()
- },
- openEdit(index, row) {
- console.log(row)
- this.current_index = index
-
- this.addPlan.id = row.id
- this.addPlan.mode = row.mode_id
- this.addPlan.mode_name = row.mode_name
- this.addPlan.dialyzer = row.dialyzer ? row.dialyzer : ''
-
- this.addPlan.dialysis_duration = '' + row.dialysis_duration
- this.addPlan.dialysis_duration_hour = '' + row.dialysis_duration_hour
- this.addPlan.dialysis_duration_minute = '' + row.dialysis_duration_minute
- this.addPlan.hemodialysis_machine = row.hemodialysis_machine + '';
- this.addPlan.perfusion_apparatus = row.perfusion_apparatus + '';
- this.addPlan.blood_flow_volume = row.blood_flow_volume.toString();
- this.addPlan.anticoagulant = row.anticoagulant;
- this.addPlan.replacement_total = row.replacement_total;
-
- this.addPlan.target_ktv = row.target_ktv.toString();
- this.addPlan.target_ultrafiltration = row.target_ultrafiltration.toString();
-
-
- this.addPlan.anticoagulant_shouji = row.anticoagulant_shouji.toString();
- this.addPlan.anticoagulant_weichi = row.anticoagulant_weichi.toString();
- this.addPlan.anticoagulant_zongliang = row.anticoagulant_zongliang.toString();
- this.addPlan.anticoagulant_gaimingcheng = row.anticoagulant_gaimingcheng.toString();
- this.addPlan.anticoagulant_gaijiliang = row.anticoagulant_gaijiliang.toString();
- this.addPlan.kalium = row.kalium.toString();
- this.addPlan.sodium = row.sodium.toString();
- this.addPlan.calcium = row.calcium.toString();
- this.addPlan.bicarbonate = row.bicarbonate.toString();
- this.addPlan.glucose = row.glucose.toString();
- this.addPlan.dialysate_flow = row.dialysate_flow.toString();
- this.addPlan.dialysate_temperature = row.dialysate_temperature.toString();
- this.addPlan.conductivity = row.conductivity.toString();
- this.addPlan.remark = row.remark;
-
-
- this.addPlan.dialyzer_perfusion_apparatus = row.dialyzer_perfusion_apparatus.toString();
- this.addPlan.body_fluid = row.body_fluid
- this.addPlan.body_fluid_other = row.body_fluid_other.toString();
- this.addPlan.special_medicine = row.special_medicine;
- this.addPlan.special_medicine_other = row.special_medicine_other.toString();
- this.addPlan.displace_liqui_part = row.displace_liqui_part;
- this.addPlan.displace_liqui_value = row.displace_liqui_value.toString();
- this.addPlan.ultrafiltration = row.ultrafiltration.toString();
- this.addPlan.blood_access = row.blood_access;
-
-
- this.dialogVisible = true
- this.isEdit = true
- this.addPlan.dialysate_formulation = row.dialysate_formulation
- this.dialysisTimeShow = new Date(2018, 1, 1, this.addPlan.dialysis_duration_hour, this.addPlan.dialysis_duration_minute)
-
- },
- isShows(name) {
- var filedList = store.getters.xt_user.fileds
- for (let i = 0; i < filedList.length; i++) {
- if (filedList[i].module == 1 && filedList[i].filed_name_cn == name && filedList[i].is_show == 1) {
- return true
- }
- }
- return false
- },
- openNew() {
- this.current_index = -1
- this.addPlan = {
- mode: '',
- mode_name: '',
- id: 0,
- type: 1,
- period: '',
- times: '',
- initiate_mode: '',
- doctor: '',
- first_dialysis: '',
-
-
-
- dialyzer: '',
- dialysate_formulation:'',
- hemodialysis_machine: '',
- perfusion_apparatus: '',
- blood_flow_volume: '',
- dewater: '',
- displace_liqui: 0,
- replacement_way: '',
- anticoagulant: '',
- anticoagulant_shouji: '',
- anticoagulant_weichi: '',
- anticoagulant_zongliang: '',
- anticoagulant_gaimingcheng: '',
- anticoagulant_gaijiliang: '',
- kalium: '',
- replacement_total: '',
- sodium: '',
- calcium: '',
- bicarbonate: '',
- glucose: '',
- dry_weight: '',
- dialysate_flow: '',
- dialysate_temperature: '',
- conductivity: '',
- remark: '',
- target_ktv:'',
- target_ultrafiltration:'',
- dialyzer_perfusion_apparatus: '',
- body_fluid: '',
- body_fluid_other: '',
- special_medicine: '',
- special_medicine_other: '',
- displace_liqui_part: '',
- displace_liqui_value: '',
- ultrafiltration: '',
- blood_access: '',
-
-
-
-
-
-
-
-
-
- dialysis_duration: '3.30',
- dialysis_duration_hour: '3',
- dialysis_duration_minute: '30'
- }
- this.addPlanTypeChange()
-
- this.dialogVisible = true
- this.isEdit = false
- },
- openNewChild(index, row) {
- this.childPlan = {
- mode: row.mode_name,
- frequency: row.period + row.times,
- name: row.name,
- parent_id: row.id,
- sub_name: '',
- initiate_mode: '',
- doctor: ''
- }
- this.isChildEdit = false
- this.dialogFormVisible = true
- },
- openChildEdit(index, row) {
- this.childPlan = {
- mode: row.mode_name,
- frequency: row.period + row.times,
- name: row.name,
- parent_id: row.parent_id,
- id: row.id,
- sub_name: row.sub_name,
- initiate_mode: row.initiate_mode,
- doctor: row.doctor
- }
- this.current_index = index
- this.isChildEdit = true
- this.dialogFormVisible = true
- },
- fetchAllDoctorAndNurse() {
- fetchAllDoctorAndNurse().then(response => {
- if (response.data.state == 1) {
- this.doctorOptions = response.data.data.doctors
- }
- })
- },
- fetchAllAdminUsers() {
- fetchAllAdminUsers().then(response => {
- if (response.data.state == 1) {
- this.adminUserOptions = response.data.data.users
- }
- })
- },
- fetchPatientDialysisSolutions() {
- fetchPatientDialysisSolutions(this.queryParams).then(response => {
- if (response.data.state == 1) {
- this.tableData = response.data.data.solutions
- this.total = response.data.data.total
- }
- })
- },
- addPlanTypeChange() {
- if (this.addPlan.type == 1) {
- this.periodOptions = periodWeek
- this.numOptions = numOptionsWeek
-
- } else {
- this.addPlan.type == 2
- this.periodOptions = periodDay
- this.numOptions = numOptionsDay
- }
-
- },
- changeThisAnticoagulant() {
- var thismode = parseInt(this.addPlan.anticoagulant)
- if (isNaN(thismode) || thismode <= 0) {
- return false
- }
- if (typeof (this.anticoagulantsConfit[thismode]) == 'undefined' || this.anticoagulantsConfit[thismode] == null) {
- return false
- }
- this.anticoagulant = this.anticoagulantsConfit[thismode]
- },
-
- addPlanModeChange() {
- var thismode = parseInt(this.addPlan.mode)
- if (isNaN(thismode) || thismode <= 0) {
- return false
- }
- if (typeof (this.modeOptions[thismode]) == 'undefined' || this.modeOptions[thismode] == null) {
- return false
- }
- // this.current_model = this.modeOptions[thismode];
- this.addPlan.mode_name = this.modeOptions[thismode].name
- let params = {
- id: thismode
- }
-
-
-
- getSystemPrescription(params).then(response => {
- if (response.data.state == 1) {
- if(response.data.data.prescription.id > 0) {
- for (const key in response.data.data.prescription) {
- //因为el-input特性整数类型或者浮点数类型需要转换成字符串,所以加上toString()
- this.$set(this.addPlan, key, response.data.data.prescription[key].toString())
- }
-
- //因为el-select特性,整数类型不能转字符串,所以额外处理这些数据
- this.$set(this.addPlan, "dialysate_formulation", response.data.data.prescription['dialysate_formulation'])
- this.$set(this.addPlan, "anticoagulant", response.data.data.prescription['anticoagulant'])
- this.$set(this.addPlan, "body_fluid", response.data.data.prescription['body_fluid'])
- this.$set(this.addPlan, "special_medicine", response.data.data.prescription['special_medicine'])
- this.$set(this.addPlan, "displace_liqui_part", response.data.data.prescription['displace_liqui_part'])
- this.$set(this.addPlan, "blood_access", response.data.data.prescription['blood_access'])
-
-
-
- this.dialysisTimeShow = new Date(2018, 1, 1, this.addPlan.dialysis_duration_hour, this.addPlan.dialysis_duration_minute)
-
- }else{
- var tempAddPlan = {
- id: 0,
- dialyzer: '',
- dialysis_duration: '',
- dialysis_duration_hour: '',
- dialysis_duration_minute: '',
- hemodialysis_machine: '',
- dialysate_formulation:'',
- perfusion_apparatus: '',
- blood_flow_volume: '',
- dewater: '',
- displace_liqui: 0,
- replacement_way: '',
- anticoagulant: '',
- anticoagulant_shouji: '',
- anticoagulant_weichi: '',
- anticoagulant_zongliang: '',
- anticoagulant_gaimingcheng: '',
- anticoagulant_gaijiliang: '',
- kalium: '',
- replacement_total: '',
- sodium: '',
- calcium: '',
- bicarbonate: '',
- glucose: '',
- dry_weight: '',
- dialysate_flow: '',
- dialysate_temperature: '',
- conductivity: '',
- doctor: '',
- remark: '',
- target_ktv: '',
- target_ultrafiltration: '',
- dialyzer_perfusion_apparatus: '',
- body_fluid: '',
- body_fluid_other: '',
- special_medicine: '',
- special_medicine_other: '',
- displace_liqui_part: '',
- displace_liqui_value: '',
- ultrafiltration: '',
- blood_access: ''
- }
-
- for (const key in tempAddPlan) {
- this.addPlan[key] = tempAddPlan[key]
- }
-
-
- }
- }
- })
- },
- setCurrentMode(id) {
- if (typeof (this.modeOptions[id]) == 'undefined' || this.modeOptions[id] == null) {
- return false
- }
- this.current_model = this.modeOptions[id]
- },
- getDoctorName(doctorid) {
- var name = ''
- if (this.doctorOptions == null) {
- return name
- }
- if (typeof (this.doctorOptions.length) == 'undefined') {
- return name
- }
- var leng = this.doctorOptions.length
- if (leng == 0) {
- return name
- }
-
- for (let index = 0; index < leng; index++) {
- if (this.doctorOptions[index].id == doctorid) {
- name = this.doctorOptions[index].name
- break
- }
- }
- return name
- },
- getAdminUserName(id) {
- var name = ''
- if (this.adminUserOptions == null) {
- return name
- }
- if (typeof (this.adminUserOptions.length) == 'undefined') {
- return name
- }
- var leng = this.adminUserOptions.length
- if (leng == 0) {
- return name
- }
-
- for (let index = 0; index < leng; index++) {
- if (this.adminUserOptions[index].id == id) {
- name = this.adminUserOptions[index].name
- break
- }
- }
- return name
- }
- },
- 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.GetDeviceData()
-
- this.modeOptions = this.$store.getters.treatment_mode
- this.anticoagulantsSet = this.$store.getters.anticoagulants_set
- this.replacementWays = this.$store.getters.replacement_ways
- 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.dialysate_formulation = this.$store.getters.dialysate_formulation
- this.body_fluid_option = this.$store.getters.body_fluid
- this.special_medicine_option = this.$store.getters.special_medicine
-
- this.displace_liqui_part_option = this.$store.getters.displace_liqui
- this.blood_access_option = this.$store.getters.blood_access
-
-
-
- this.queryParams.id = this.patientID
- // this.fetchAllDoctorAndNurse();
- this.fetchAllAdminUsers()
- this.fetchPatientDialysisSolutions()
-
- }
- }
- </script>
-
- <style rel="stylesheet/scss" lang="scss" scoped>
- .Total {
-
- .sure {
- float: right;
- margin: 5px 10px 0 0;
- }
-
- .plan {
- font-size: 15px;
- color: #6caef7;
- background: #ecf5ff;
- height: 42px;
- line-height: 42px;
- border: 1px #ebeef5 solid;
- width: 100%;
- padding-left: 15px;
-
- span {
- margin: 0 20px 0 0;
- }
-
- }
-
- }
- .form-table {
- border: 1px #ebeef5 solid;
- padding-bottom: 20px;
-
- .el-col-6 {
- width: 380px;
- }
-
- .el-row {
- margin: 0 !important;
-
- .el-form-item {
- margin-bottom: 12px;
-
- .el-form-item__content {
-
- .el-select {
- width: 100%;
- }
-
- }
- }
- }
- }
- </style>
- <style>
- .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>
|