血透系统pad前端

PrintIndex.vue 129KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481
  1. <template>
  2. <div class="mainBox"
  3. v-loading="loading"
  4. element-loading-text="加载中"
  5. element-loading-spinner="el-icon-loading"
  6. element-loading-background="rgba(0, 0, 0, 0.8)"
  7. style="width: 100%;height: 100%"
  8. >
  9. <!--<el-button style="margin-top: 10px;margin-right:100px;float: right" type="primary" icon="el-icon-printer" @click="printThisPage">打印</el-button>-->
  10. <side-bar :active_index="0" v-if="isShow == true"></side-bar>
  11. <div class="mainContent">
  12. <div class="navigation" v-if="isShow == true">
  13. <div class="goBack">
  14. <span class="back" @click="backAction()"><span class="iconfont">&#xe720;</span>返回</span>
  15. </div>
  16. <div class="print" style="float: right">
  17. <el-button size="mini" type="primary" icon="el-icon-printer" @click="printThisPage">打印</el-button>
  18. </div>
  19. </div>
  20. <div ref='cvs' id="dialysis-print-box" style="padding-top: 60px">
  21. <div class="dialysis-print-order">
  22. <div class="order-yy-name">{{orgname}}</div>
  23. <div class="order-title">血液净化治疗记录单</div>
  24. <table class="table-box" style="margin-top: 10px;">
  25. <tbody>
  26. <tr>
  27. <td width="50">姓 名:</td>
  28. <td width="90">
  29. <div class="under-line">&nbsp;{{patientInfo.name}}</div>
  30. </td>
  31. <td width="50">性 别:</td>
  32. <td width="120">
  33. <div>
  34. <label for="gender_1" class="radio-lebel-box">
  35. <span class="radio-inner">
  36. <span class="radio-fang "
  37. :class="{'is-checked-radio':patientInfo_gender_1}"></span>
  38. <input vt-model="patientInfo.gender" id="gender_1" name="gender"
  39. type="radio" class="radio-no" value="1">
  40. </span>
  41. <span> 男</span>
  42. </label>
  43. &nbsp;
  44. <label for="gender_2" class="radio-lebel-box">
  45. <span class="radio-inner">
  46. <span class="radio-fang"
  47. :class="{'is-checked-radio':patientInfo_gender_2}"></span>
  48. <input vt-model="patientInfo.gender" id="gender_2"
  49. :checked="patientInfo.gender==2?true:false" name="gender"
  50. type="radio" class="radio-no" value="2">
  51. </span>
  52. <span> 女</span>
  53. </label>
  54. </div>
  55. </td>
  56. <td width="50">年 龄:</td>
  57. <td width="40">
  58. <div class="under-line">&nbsp;{{patientInfo.age}}</div>
  59. </td>
  60. <td>岁</td>
  61. <td width="10">&nbsp;</td>
  62. <td width="50">科 室:</td>
  63. <td width="200">
  64. <div>
  65. <label for="source_1" class="radio-lebel-box">
  66. <span class="radio-inner">
  67. <span class="radio-fang "
  68. :class="{'is-checked-radio':patientInfo_source_1}"></span>
  69. <input vt-model="patientInfo.source" id="source_1" name="source"
  70. type="radio" class="radio-no" value="1">
  71. </span>
  72. <span> 门 诊 透 析</span>
  73. </label>
  74. &nbsp;
  75. <label for="source_2" class="radio-lebel-box">
  76. <span class="radio-inner">
  77. <span class="radio-fang"
  78. :class="{'is-checked-radio':patientInfo_source_2}"></span>
  79. <input vt-model="patientInfo.source" id="source_2"
  80. :checked="patientInfo.source==2?true:false" name="source"
  81. type="radio" class="radio-no" value="2">
  82. </span>
  83. <span> 住 院</span>
  84. </label>
  85. </div>
  86. </td>
  87. </tr>
  88. </tbody>
  89. </table>
  90. <table class="table-box" style="margin-top: 10px;">
  91. <tbody>
  92. <tr>
  93. <td width="130">住院号/透析卡号:</td>
  94. <td width="90">
  95. <div class="under-line">&nbsp;{{patientInfo.admission_number?patientInfo.admission_number:'无'}}
  96. /{{patientInfo.dialysis_no}}
  97. </div>
  98. </td>
  99. <td width="40">诊 断:</td>
  100. <td width="">
  101. <div class="under-line">&nbsp;{{patientInfo.diagnose}}</div>
  102. </td>
  103. <td width="80">治 疗 日 期:</td>
  104. <td width="120">
  105. <div class="under-line">&nbsp;<span>{{queryParams.xtdate}}</span></div>
  106. </td>
  107. </tr>
  108. </tbody>
  109. </table>
  110. <table class="print-table" border="1">
  111. <tbody>
  112. <tr>
  113. <td width="30px" class="title-box">透前评估</td>
  114. <td>
  115. <table class="table-box">
  116. <tbody>
  117. <tr>
  118. <td width="70">入院方式:</td>
  119. <td width="230">
  120. <div>
  121. <label for="receiverTreatmentAccess_way_1" class="radio-lebel-box">
  122. <span class="radio-inner">
  123. <span class="radio-fang "
  124. :class="{'is-checked-radio':receiverTreatmentAccess.way==1?true:false}"></span>
  125. <input vt-model="receiverTreatmentAccess.way"
  126. id="receiverTreatmentAccess_way_1"
  127. name="receiverTreatmentAccess_way" type="radio"
  128. class="radio-no" value="1">
  129. </span>
  130. <span> 步行</span>
  131. </label>
  132. &nbsp;
  133. <label for="receiverTreatmentAccess_way_2" class="radio-lebel-box">
  134. <span class="radio-inner">
  135. <span class="radio-fang"
  136. :class="{'is-checked-radio':receiverTreatmentAccess.way==2?true:false}"></span>
  137. <input vt-model="receiverTreatmentAccess.way"
  138. id="receiverTreatmentAccess_way_2"
  139. name="receiverTreatmentAccess_way" type="radio"
  140. class="radio-no" value="2">
  141. </span>
  142. <span> 扶行</span>
  143. </label>
  144. &nbsp;
  145. <label for="receiverTreatmentAccess_way_3" class="radio-lebel-box">
  146. <span class="radio-inner">
  147. <span class="radio-fang"
  148. :class="{'is-checked-radio':receiverTreatmentAccess.way==3?true:false}"></span>
  149. <input vt-model="receiverTreatmentAccess.way"
  150. id="receiverTreatmentAccess_way_3"
  151. name="receiverTreatmentAccess_way" type="radio"
  152. class="radio-no" value="3">
  153. </span>
  154. <span> 轮椅</span>
  155. </label>
  156. &nbsp;
  157. <label for="receiverTreatmentAccess_way_4" class="radio-lebel-box">
  158. <span class="radio-inner">
  159. <span class="radio-fang"
  160. :class="{'is-checked-radio':receiverTreatmentAccess.way==4?true:false}"></span>
  161. <input vt-model="receiverTreatmentAccess.way"
  162. id="receiverTreatmentAccess_way_4"
  163. name="receiverTreatmentAccess_way" type="radio"
  164. class="radio-no" value="4">
  165. </span>
  166. <span> 平车</span>
  167. </label>
  168. </div>
  169. </td>
  170. <td></td>
  171. <td width="50">意识:</td>
  172. <td width="180">
  173. <div>
  174. <label for="receiverTreatmentAccess_consciousness_1" class="radio-lebel-box">
  175. <span class="radio-inner">
  176. <span class="radio-fang "
  177. :class="{'is-checked-radio':receiverTreatmentAccess.consciousness==1?true:false}"></span>
  178. <input vt-model="receiverTreatmentAccess.consciousness"
  179. id="receiverTreatmentAccess_consciousness_1"
  180. name="receiverTreatmentAccess_consciousness"
  181. type="radio" class="radio-no" value="1">
  182. </span>
  183. <span> 清醒</span>
  184. </label>
  185. &nbsp;
  186. <label for="receiverTreatmentAccess_consciousness_2" class="radio-lebel-box">
  187. <span class="radio-inner">
  188. <span class="radio-fang"
  189. :class="{'is-checked-radio':receiverTreatmentAccess.consciousness==2?true:false}"></span>
  190. <input vt-model="receiverTreatmentAccess.consciousness"
  191. id="receiverTreatmentAccess_consciousness_2"
  192. name="receiverTreatmentAccess_consciousness"
  193. type="radio" class="radio-no" value="2">
  194. </span>
  195. <span> 嗜睡</span>
  196. </label>
  197. &nbsp;
  198. <label for="receiverTreatmentAccess_consciousness_3" class="radio-lebel-box">
  199. <span class="radio-inner">
  200. <span class="radio-fang"
  201. :class="{'is-checked-radio':receiverTreatmentAccess.consciousness==3?true:false}"></span>
  202. <input vt-model="receiverTreatmentAccess.consciousness"
  203. id="receiverTreatmentAccess_consciousness_3"
  204. name="receiverTreatmentAccess_consciousness"
  205. type="radio" class="radio-no" value="3">
  206. </span>
  207. <span> 昏迷</span>
  208. </label>
  209. </div>
  210. </td>
  211. <td></td>
  212. <td width="50">体温:</td>
  213. <td width="100">
  214. <div class="under-line">&nbsp;{{predialysis.temperature}}</div>
  215. </td>
  216. <td width="35">℃</td>
  217. </tr>
  218. </tbody>
  219. </table>
  220. <table class="table-box">
  221. <tbody>
  222. <tr>
  223. <td width="40">体位:</td>
  224. <td width="400">
  225. <div>
  226. <label for="receiverTreatmentAccess_posture_1" class="radio-lebel-box">
  227. <span class="radio-inner">
  228. <span class="radio-fang"
  229. :class="{'is-checked-radio':receiverTreatmentAccess.posture==1?true:false}"></span>
  230. <input vt-model="receiverTreatmentAccess.posture"
  231. id="receiverTreatmentAccess_posture_1"
  232. name="receiverTreatmentAccess_posture_1" type="radio"
  233. class="radio-no" value="1">
  234. </span>
  235. <span> 自动体位</span>
  236. </label>
  237. &nbsp;
  238. <label for="receiverTreatmentAccess_posture_2" class="radio-lebel-box">
  239. <span class="radio-inner">
  240. <span class="radio-fang"
  241. :class="{'is-checked-radio':receiverTreatmentAccess.posture==2?true:false}"></span>
  242. <input vt-model="receiverTreatmentAccess.posture"
  243. id="receiverTreatmentAccess_posture_2"
  244. name="receiverTreatmentAccess_posture_2" type="radio"
  245. class="radio-no" value="2">
  246. </span>
  247. <span> 平卧位</span>
  248. </label>
  249. &nbsp;
  250. <label for="receiverTreatmentAccess_posture_3" class="radio-lebel-box">
  251. <span class="radio-inner">
  252. <span class="radio-fang"
  253. :class="{'is-checked-radio':receiverTreatmentAccess.posture==3?true:false}"></span>
  254. <input vt-model="receiverTreatmentAccess.posture"
  255. id="receiverTreatmentAccess_posture_3"
  256. name="receiverTreatmentAccess_posture_3" type="radio"
  257. class="radio-no" value="3">
  258. </span>
  259. <span> 半卧位</span>
  260. </label>
  261. &nbsp;
  262. <label for="receiverTreatmentAccess_posture_4" class="radio-lebel-box">
  263. <span class="radio-inner">
  264. <span class="radio-fang"
  265. :class="{'is-checked-radio':receiverTreatmentAccess.posture==4?true:false}"></span>
  266. <input vt-model="receiverTreatmentAccess.posture"
  267. id="receiverTreatmentAccess_posture_4"
  268. name="receiverTreatmentAccess_posture_4" type="radio"
  269. class="radio-no" value="4">
  270. </span>
  271. <span> 端坐位</span>
  272. </label>
  273. &nbsp;
  274. <label for="receiverTreatmentAccess_posture_5" class="radio-lebel-box">
  275. <span class="radio-inner">
  276. <span class="radio-fang"
  277. :class="{'is-checked-radio':receiverTreatmentAccess.posture==5?true:false}"></span>
  278. <input vt-model="receiverTreatmentAccess.posture"
  279. id="receiverTreatmentAccess_posture_5"
  280. name="receiverTreatmentAccess_posture_5" type="radio"
  281. class="radio-no" value="5">
  282. </span>
  283. <span> 躁动不安</span>
  284. </label>
  285. &nbsp;
  286. </div>
  287. </td>
  288. <td></td>
  289. </tr>
  290. </tbody>
  291. </table>
  292. <table class="table-box">
  293. <tbody>
  294. <tr>
  295. <td width="40">出血:</td>
  296. <td width="95">
  297. <div>
  298. <label for="PredialysisEvaluation_is_hemorrhage_2" class="radio-lebel-box">
  299. <span class="radio-inner">
  300. <span class="radio-fang"
  301. :class="{'is-checked-radio':predialysis.is_hemorrhage==2?true:false}"></span>
  302. <input vt-model="predialysis.is_hemorrhage"
  303. id="PredialysisEvaluation_is_hemorrhage_2"
  304. name="PredialysisEvaluation_is_hemorrhage"
  305. type="radio" class="radio-no" value="2">
  306. </span>
  307. <span> 无</span>
  308. </label>
  309. &nbsp;
  310. <label for="PredialysisEvaluation_is_hemorrhage_1" class="radio-lebel-box">
  311. <span class="radio-inner">
  312. <span class="radio-fang"
  313. :class="{'is-checked-radio':predialysis.is_hemorrhage==1?true:false}"></span>
  314. <input vt-model="predialysis.is_hemorrhage"
  315. id="PredialysisEvaluation_is_hemorrhage_1"
  316. name="PredialysisEvaluation_is_hemorrhage"
  317. type="radio" class="radio-no" value="1">
  318. </span>
  319. <span> 有</span>
  320. </label>
  321. </div>
  322. </td>
  323. <td width="10">(</td>
  324. <td width="380">
  325. <div>
  326. <label for="PredialysisEvaluation_hemorrhage_1" class="radio-lebel-box">
  327. <span class="radio-inner">
  328. <span class="radio-fang"
  329. :class="{'is-checked-radio':predialysis.is_hemorrhage==1&&predialysis.hemorrhage.indexOf('穿刺点渗血')>-1?true:false}"></span>
  330. <input vt-model="predialysis.is_hemorrhage"
  331. id="PredialysisEvaluation_hemorrhage_1"
  332. name="PredialysisEvaluation_hemorrhage" type="radio"
  333. class="radio-no" value="1">
  334. </span>
  335. <span> 穿刺点渗血</span>
  336. </label>
  337. &nbsp;
  338. <label for="PredialysisEvaluation_hemorrhage_2" class="radio-lebel-box">
  339. <span class="radio-inner">
  340. <span class="radio-fang"
  341. :class="{'is-checked-radio':predialysis.is_hemorrhage==1&&predialysis.hemorrhage.indexOf('牙龈出血')>-1?true:false}"></span>
  342. <input vt-model="predialysis.is_hemorrhage"
  343. id="PredialysisEvaluation_hemorrhage_2"
  344. name="PredialysisEvaluation_hemorrhage" type="radio"
  345. class="radio-no" value="2">
  346. </span>
  347. <span> 牙龈出血</span>
  348. </label>
  349. &nbsp;
  350. <label for="PredialysisEvaluation_hemorrhage_3" class="radio-lebel-box">
  351. <span class="radio-inner">
  352. <span class="radio-fang"
  353. :class="{'is-checked-radio':predialysis.is_hemorrhage==1&&predialysis.hemorrhage.indexOf('消化道出血')>-1?true:false}"></span>
  354. <input vt-model="predialysis.is_hemorrhage"
  355. id="PredialysisEvaluation_hemorrhage_3"
  356. name="PredialysisEvaluation_hemorrhage" type="radio"
  357. class="radio-no" value="3">
  358. </span>
  359. <span> 消化道出血</span>
  360. </label>
  361. &nbsp;
  362. <label for="PredialysisEvaluation_hemorrhage_4" class="radio-lebel-box">
  363. <span class="radio-inner">
  364. <span class="radio-fang"
  365. :class="{'is-checked-radio':predialysis.is_hemorrhage==1&&predialysis.hemorrhage.indexOf('女性经期')>-1?true:false}"></span>
  366. <input vt-model="predialysis.is_hemorrhage"
  367. id="PredialysisEvaluation_hemorrhage_4"
  368. name="PredialysisEvaluation_hemorrhage" type="radio"
  369. class="radio-no" value="4">
  370. </span>
  371. <span> 女性经期</span>
  372. </label>
  373. </div>
  374. </td>
  375. <td width="35">其它</td>
  376. <td width="">
  377. <div class="under-line">&nbsp;
  378. <span v-if="predialysis.is_hemorrhage==1">{{predialysis.hemorrhage_other}}</span>
  379. </div>
  380. </td>
  381. <td width="10">)</td>
  382. </tr>
  383. </tbody>
  384. </table>
  385. <table class="table-box">
  386. <tbody>
  387. <tr>
  388. <td width="70">血管通路:</td>
  389. <td width="400">
  390. <div>
  391. <label for="PredialysisEvaluation_blood_access_1" class="radio-lebel-box">
  392. <span class="radio-inner">
  393. <span class="radio-fang"
  394. :class="{'is-checked-radio':predialysis.blood_access_part_opera_name.indexOf('自体内瘘')>-1?true:false}"></span>
  395. <input vt-model="predialysis.blood_access_part_opera_name"
  396. id="PredialysisEvaluation_blood_access_1"
  397. name="PredialysisEvaluation_blood_access"
  398. type="radio" class="radio-no" value="自体内瘘">
  399. </span>
  400. <span> 自体内瘘</span>
  401. </label>
  402. &nbsp;
  403. <label for="PredialysisEvaluation_blood_access_2" class="radio-lebel-box">
  404. <span class="radio-inner">
  405. <span class="radio-fang"
  406. :class="{'is-checked-radio':predialysis.blood_access_part_opera_name.indexOf('人造血管')>-1?true:false}"></span>
  407. <input vt-model="predialysis.blood_access_part_opera_name"
  408. id="PredialysisEvaluation_blood_access_2"
  409. name="PredialysisEvaluation_blood_access"
  410. type="radio" class="radio-no" value="人造血管">
  411. </span>
  412. <span> 人造血管</span>
  413. </label>
  414. &nbsp;
  415. <label for="PredialysisEvaluation_blood_access_3" class="radio-lebel-box">
  416. <span class="radio-inner">
  417. <span class="radio-fang"
  418. :class="{'is-checked-radio':predialysis.blood_access_part_opera_name.indexOf('直穿')>-1?true:false}"></span>
  419. <input vt-model="predialysis.blood_access_part_opera_name"
  420. id="PredialysisEvaluation_blood_access_3"
  421. name="PredialysisEvaluation_blood_access"
  422. type="radio" class="radio-no" value="直穿">
  423. </span>
  424. <span> 直穿</span>
  425. </label>
  426. &nbsp;
  427. <label for="PredialysisEvaluation_blood_access_4" class="radio-lebel-box">
  428. <span class="radio-inner">
  429. <span class="radio-fang"
  430. :class="{'is-checked-radio':predialysis.blood_access_part_opera_name.indexOf('颈内静脉')>-1?true:false}"></span>
  431. <input vt-model="predialysis.blood_access_part_opera_name"
  432. id="PredialysisEvaluation_blood_access_4"
  433. name="PredialysisEvaluation_blood_access"
  434. type="radio" class="radio-no" value="颈内静脉">
  435. </span>
  436. <span> 颈内静脉</span>
  437. </label>
  438. &nbsp;
  439. <label for="PredialysisEvaluation_blood_access_5" class="radio-lebel-box">
  440. <span class="radio-inner">
  441. <span class="radio-fang"
  442. :class="{'is-checked-radio':predialysis.blood_access_part_opera_name.indexOf('股静脉')>-1?true:false}"></span>
  443. <input vt-model="predialysis.blood_access_part_opera_name"
  444. id="PredialysisEvaluation_blood_access_5"
  445. name="PredialysisEvaluation_blood_access"
  446. type="radio" class="radio-no" value="股静脉">
  447. </span>
  448. <span> 股静脉</span>
  449. </label>
  450. &nbsp;
  451. </div>
  452. </td>
  453. <td></td>
  454. </tr>
  455. </tbody>
  456. </table>
  457. <table class="table-box">
  458. <tbody>
  459. <tr>
  460. <td width="40">内瘘:</td>
  461. <td width="35">震颤</td>
  462. <td width="10">(</td>
  463. <td width="180">
  464. <div>
  465. <label for="PredialysisEvaluation_internal_fistula_1" class="radio-lebel-box">
  466. <span class="radio-inner">
  467. <span class="radio-fang"
  468. :class="{'is-checked-radio':predialysis.internal_fistula.indexOf('震颤-存在')>-1?true:false}"></span>
  469. <input vt-model="predialysis.internal_fistula"
  470. id="PredialysisEvaluation_internal_fistula_1"
  471. name="PredialysisEvaluation_internal_fistula"
  472. type="radio" class="radio-no" value="震颤-存在">
  473. </span>
  474. <span> 存在</span>
  475. </label>
  476. &nbsp;
  477. <label for="PredialysisEvaluation_internal_fistula_2" class="radio-lebel-box">
  478. <span class="radio-inner">
  479. <span class="radio-fang"
  480. :class="{'is-checked-radio':predialysis.internal_fistula.indexOf('震颤-减弱')>-1?true:false}"></span>
  481. <input vt-model="predialysis.internal_fistula"
  482. id="PredialysisEvaluation_internal_fistula_2"
  483. name="PredialysisEvaluation_internal_fistula"
  484. type="radio" class="radio-no" value="震颤-减弱">
  485. </span>
  486. <span> 减弱</span>
  487. </label>
  488. &nbsp;
  489. <label for="PredialysisEvaluation_internal_fistula_3" class="radio-lebel-box">
  490. <span class="radio-inner">
  491. <span class="radio-fang"
  492. :class="{'is-checked-radio':predialysis.internal_fistula.indexOf('震颤-无')>-1?true:false}"></span>
  493. <input vt-model="predialysis.internal_fistula"
  494. id="PredialysisEvaluation_internal_fistula_3"
  495. name="PredialysisEvaluation_internal_fistula"
  496. type="radio" class="radio-no" value="震颤-无">
  497. </span>
  498. <span> 无</span>
  499. </label>
  500. </div>
  501. </td>
  502. <td width="10">)</td>
  503. <td width="95">内瘘皮肤情况</td>
  504. <td width="10">(</td>
  505. <td width="220">
  506. <div>
  507. <label for="PredialysisEvaluation_internal_fistula_skin_4" class="radio-lebel-box">
  508. <span class="radio-inner">
  509. <span class="radio-fang"
  510. :class="{'is-checked-radio':predialysis.internal_fistula_skin.indexOf('正常')>-1?true:false}"></span>
  511. <input vt-model="predialysis.internal_fistula_skin"
  512. id="PredialysisEvaluation_internal_fistula_skin_4"
  513. name="PredialysisEvaluation_internal_fistula_skin"
  514. type="radio" class="radio-no" value="正常">
  515. </span>
  516. <span> 正常</span>
  517. </label>
  518. &nbsp;
  519. <label for="PredialysisEvaluation_internal_fistula_skin_5" class="radio-lebel-box">
  520. <span class="radio-inner">
  521. <span class="radio-fang"
  522. :class="{'is-checked-radio':predialysis.internal_fistula_skin.indexOf('瘀斑')>-1?true:false}"></span>
  523. <input vt-model="predialysis.internal_fistula_skin"
  524. id="PredialysisEvaluation_internal_fistula_skin_5"
  525. name="PredialysisEvaluation_internal_fistula_skin"
  526. type="radio" class="radio-no" value="瘀斑">
  527. </span>
  528. <span> 瘀斑</span>
  529. </label>
  530. &nbsp;
  531. <label for="PredialysisEvaluation_internal_fistula_skin_6" class="radio-lebel-box">
  532. <span class="radio-inner">
  533. <span class="radio-fang"
  534. :class="{'is-checked-radio':predialysis.internal_fistula_skin.indexOf('红')>-1?true:false}"></span>
  535. <input vt-model="predialysis.internal_fistula_skin"
  536. id="PredialysisEvaluation_internal_fistula_skin_6"
  537. name="PredialysisEvaluation_internal_fistula_skin"
  538. type="radio" class="radio-no" value="红">
  539. </span>
  540. <span> 红</span>
  541. </label>
  542. &nbsp;
  543. <label for="PredialysisEvaluation_internal_fistula_skin_7" class="radio-lebel-box">
  544. <span class="radio-inner">
  545. <span class="radio-fang"
  546. :class="{'is-checked-radio':predialysis.internal_fistula_skin.indexOf('肿')>-1?true:false}"></span>
  547. <input vt-model="predialysis.internal_fistula_skin"
  548. id="PredialysisEvaluation_internal_fistula_skin_7"
  549. name="PredialysisEvaluation_internal_fistula_skin"
  550. type="radio" class="radio-no" value="肿">
  551. </span>
  552. <span> 肿</span>
  553. </label>
  554. </div>
  555. </td>
  556. <td width="10">)</td>
  557. <td></td>
  558. </tr>
  559. </tbody>
  560. </table>
  561. <table class="table-box">
  562. <tbody>
  563. <tr>
  564. <td width="40">导管:</td>
  565. <td width="50">穿刺口</td>
  566. <td width="10">(</td>
  567. <td width="250">
  568. <div>
  569. <label for="PredialysisEvaluation_catheter_1" class="radio-lebel-box">
  570. <span class="radio-inner">
  571. <span class="radio-fang"
  572. :class="{'is-checked-radio':predialysis.catheter.indexOf('穿刺口-干洁')>-1?true:false}"></span>
  573. <input vt-model="predialysis.catheter"
  574. id="PredialysisEvaluation_catheter_1"
  575. name="PredialysisEvaluation_catheter" type="radio"
  576. class="radio-no" value="穿刺口-干洁">
  577. </span>
  578. <span> 干洁</span>
  579. </label>
  580. &nbsp;
  581. <label for="PredialysisEvaluation_catheter_2" class="radio-lebel-box">
  582. <span class="radio-inner">
  583. <span class="radio-fang"
  584. :class="{'is-checked-radio':predialysis.catheter.indexOf('穿刺口-红肿')>-1?true:false}"></span>
  585. <input vt-model="predialysis.catheter"
  586. id="PredialysisEvaluation_catheter_2"
  587. name="PredialysisEvaluation_catheter" type="radio"
  588. class="radio-no" value="穿刺口-红肿">
  589. </span>
  590. <span> 红肿</span>
  591. </label>
  592. &nbsp;
  593. <label for="PredialysisEvaluation_catheter_3" class="radio-lebel-box">
  594. <span class="radio-inner">
  595. <span class="radio-fang"
  596. :class="{'is-checked-radio':predialysis.catheter.indexOf('穿刺口-分泌物')>-1?true:false}"></span>
  597. <input vt-model="predialysis.catheter"
  598. id="PredialysisEvaluation_catheter_3"
  599. name="PredialysisEvaluation_catheter" type="radio"
  600. class="radio-no" value="穿刺口-分泌物">
  601. </span>
  602. <span> 分泌物</span>
  603. </label>
  604. &nbsp;
  605. <label for="PredialysisEvaluation_catheter_4" class="radio-lebel-box">
  606. <span class="radio-inner">
  607. <span class="radio-fang"
  608. :class="{'is-checked-radio':predialysis.catheter.indexOf('穿刺口-渗血')>-1?true:false}"></span>
  609. <input vt-model="predialysis.catheter"
  610. id="PredialysisEvaluation_catheter_4"
  611. name="PredialysisEvaluation_catheter" type="radio"
  612. class="radio-no" value="穿刺口-渗血">
  613. </span>
  614. <span> 渗血</span>
  615. </label>
  616. </div>
  617. </td>
  618. <td width="10">)</td>
  619. <td width="65">导管打折</td>
  620. <td width="10">(</td>
  621. <td width="80">
  622. <div>
  623. <label for="PredialysisEvaluation_catheter_bend_5" class="radio-lebel-box">
  624. <span class="radio-inner">
  625. <span class="radio-fang"
  626. :class="{'is-checked-radio':predialysis.catheter_bend == 1?true:false}"></span>
  627. <input vt-model="predialysis.catheter_bend"
  628. id="PredialysisEvaluation_catheter_bend_5"
  629. name="PredialysisEvaluation_catheter_bend"
  630. type="radio" class="radio-no" value="1">
  631. </span>
  632. <span> 有</span>
  633. </label>
  634. &nbsp;
  635. <label for="PredialysisEvaluation_catheter_bend_6" class="radio-lebel-box">
  636. <span class="radio-inner">
  637. <span class="radio-fang"
  638. :class="{'is-checked-radio':predialysis.catheter_bend == 2?true:false}"></span>
  639. <input vt-model="predialysis.catheter_bend"
  640. id="PredialysisEvaluation_catheter_bend_6"
  641. name="catheter_bend" type="radio" class="radio-no"
  642. value="2">
  643. </span>
  644. <span> 无</span>
  645. </label>
  646. </div>
  647. </td>
  648. <td width="10">)</td>
  649. <td></td>
  650. </tr>
  651. </tbody>
  652. </table>
  653. </td>
  654. </tr>
  655. </tbody>
  656. </table>
  657. <table class="print-table" border="1">
  658. <tbody>
  659. <tr>
  660. <td width="30px" class="title-box">透析处方</td>
  661. <td>
  662. <table class="table-box">
  663. <tbody>
  664. <tr>
  665. <td width="70">透析时间:</td>
  666. <td width="40">
  667. <div class="under-line">&nbsp;{{prescription.dialysis_duration_hour}}</div>
  668. </td>
  669. <td width="10">h</td>
  670. <td width="40">
  671. <div class="under-line">&nbsp;{{prescription.dialysis_duration_minute}}</div>
  672. </td>
  673. <td width="35">min</td>
  674. <td></td>
  675. <td width="55">血流量:</td>
  676. <td width="60">
  677. <div class="under-line">&nbsp;{{prescription.blood_flow_volume}}</div>
  678. </td>
  679. <td width="60">ml/min</td>
  680. <td></td>
  681. <td width="40">体重:</td>
  682. <td width="35">透前</td>
  683. <td width="50">
  684. <div class="under-line">&nbsp;{{predialysis.weight_before}}</div>
  685. </td>
  686. <td width="20">Kg</td>
  687. <td width="45">干体重</td>
  688. <td width="50">
  689. <div class="under-line">&nbsp;{{predialysis.dry_weight}}</div>
  690. </td>
  691. <td width="20">Kg</td>
  692. <td></td>
  693. <td width="85">目标超滤量:</td>
  694. <td width="70">
  695. <div class="under-line">&nbsp;{{prescription.target_ultrafiltration}}</div>
  696. </td>
  697. <td width="20">ml</td>
  698. </tr>
  699. </tbody>
  700. </table>
  701. <table class="table-box">
  702. <tbody>
  703. <tr>
  704. <td width="70">抗凝方式:</td>
  705. <td width="80">
  706. <label for="prescription_anticoagulant_2" class="radio-lebel-box">
  707. <span class="radio-inner">
  708. <span class="radio-fang "
  709. :class="{'is-checked-radio':prescription.anticoagulant==2?true:false}"></span>
  710. <input vt-model="prescription.anticoagulant"
  711. id="prescription_anticoagulant_2"
  712. name="prescription_anticoagulant" type="radio"
  713. class="radio-no" value="2">
  714. </span>
  715. <span> 普通肝素</span>
  716. </label>
  717. </td>
  718. <td width="10">(</td>
  719. <td width="35">首剂</td>
  720. <td width="40">
  721. <div class="under-line">&nbsp;
  722. <span v-if="prescription.anticoagulant==2">{{prescription.anticoagulant_shouji}}</span>
  723. </div>
  724. </td>
  725. <td width="20">mg</td>
  726. <td width="10"></td>
  727. <td width="35">维持</td>
  728. <td width="40">
  729. <div class="under-line">&nbsp;
  730. <span v-if="prescription.anticoagulant==2">{{prescription.anticoagulant_weichi}}</span>
  731. </div>
  732. </td>
  733. <td width="40">mg/h</td>
  734. <td width="10">)</td>
  735. <td width="95">
  736. <label for="prescription_anticoagulant_3" class="radio-lebel-box">
  737. <span class="radio-inner">
  738. <span class="radio-fang "
  739. :class="{'is-checked-radio':prescription.anticoagulant==3?true:false}"></span>
  740. <input vt-model="prescription.anticoagulant"
  741. id="prescription_anticoagulant_3"
  742. name="prescription_anticoagulant" type="radio"
  743. class="radio-no" value="3">
  744. </span>
  745. <span> 低分子肝素</span>
  746. </label>
  747. </td>
  748. <td width="60">
  749. <div class="under-line">&nbsp;
  750. <span v-if="prescription.anticoagulant==3">{{prescription.anticoagulant_zongliang}}</span>
  751. </div>
  752. </td>
  753. <td width="20">IU</td>
  754. <td width="80">
  755. <label for="prescription_anticoagulant_1" class="radio-lebel-box">
  756. <span class="radio-inner">
  757. <span class="radio-fang "
  758. :class="{'is-checked-radio':prescription.anticoagulant==1?true:false}"></span>
  759. <input vt-model="prescription.anticoagulant"
  760. id="prescription_anticoagulant_1"
  761. name="prescription_anticoagulant" type="radio"
  762. class="radio-no" value="1">
  763. </span>
  764. <span> 无肝素</span>
  765. </label>
  766. </td>
  767. <td width="70">其他方式:</td>
  768. <td width="">
  769. <div class="under-line">&nbsp;
  770. <span v-if="prescription.anticoagulant>3">{{prescription.anticoagulant_name}}</span>
  771. </div>
  772. </td>
  773. </tr>
  774. </tbody>
  775. </table>
  776. <table class="table-box">
  777. <tbody>
  778. <tr>
  779. <td width="85">透析液配方:</td>
  780. <td width="50">
  781. <label for="prescription_dialysate_formulation_1" class="radio-lebel-box">
  782. <span class="radio-inner">
  783. <span class="radio-fang"
  784. :class="{'is-checked-radio':prescription.dialysate_formulation_name.indexOf('常规')>-1?true:false}"></span>
  785. <input vt-model="prescription.dialysate_formulation_name"
  786. id="prescription_dialysate_formulation_1"
  787. name="PredialysisEvaluation_catheter" type="radio"
  788. class="radio-no" value="常规">
  789. </span>
  790. <span> 常规</span>
  791. </label>
  792. </td>
  793. <td width="50">
  794. <label for="prescription_dialysate_formulation_2" class="radio-lebel-box">
  795. <span class="radio-inner">
  796. <span class="radio-fang"
  797. :class="{'is-checked-radio':prescription.dialysate_formulation_name.indexOf('低钙')>-1?true:false}"></span>
  798. <input vt-model="prescription.dialysate_formulation_name"
  799. id="prescription_dialysate_formulation_2"
  800. name="PredialysisEvaluation_catheter" type="radio"
  801. class="radio-no" value="低钙">
  802. </span>
  803. <span> 低钙</span>
  804. </label>
  805. </td>
  806. <td width="120">
  807. (
  808. <label class="radio-lebel-box">
  809. <!-- <span class="radio-inner">
  810. <span class="radio-fang " ></span>
  811. <input type="radio" class="radio-no" value="1">
  812. </span> -->
  813. <span> 1.25mmol/L</span>
  814. </label>
  815. )
  816. </td>
  817. <td width="50">
  818. <label for="prescription_dialysate_formulation_3" class="radio-lebel-box">
  819. <span class="radio-inner">
  820. <span class="radio-fang"
  821. :class="{'is-checked-radio':prescription.dialysate_formulation_name.indexOf('高钙')>-1?true:false}"></span>
  822. <input vt-model="prescription.dialysate_formulation_name"
  823. id="prescription_dialysate_formulation_3"
  824. name="PredialysisEvaluation_catheter" type="radio"
  825. class="radio-no" value="高钙">
  826. </span>
  827. <span> 高钙</span>
  828. </label>
  829. </td>
  830. <td width="100">
  831. ( 1.75mmol/L )
  832. </td>
  833. <td width="50">
  834. <label for="prescription_dialysate_formulation_4" class="radio-lebel-box">
  835. <span class="radio-inner">
  836. <span class="radio-fang"
  837. :class="{'is-checked-radio':prescription.dialysate_formulation_name.indexOf('低钠')>-1?true:false}"></span>
  838. <input vt-model="prescription.dialysate_formulation_name"
  839. id="prescription_dialysate_formulation_4"
  840. name="PredialysisEvaluation_catheter" type="radio"
  841. class="radio-no" value="低钠">
  842. </span>
  843. <span> 低钠</span>
  844. </label>
  845. </td>
  846. <td width="110">
  847. (
  848. <label class="radio-lebel-box">
  849. <!-- <span class="radio-inner">
  850. <span class="radio-fang " ></span>
  851. <input type="radio" class="radio-no" value="1">
  852. </span> -->
  853. <span> 135mmol/L</span>
  854. </label>
  855. )
  856. </td>
  857. <td width="50">
  858. <label for="prescription_dialysate_formulation_5" class="radio-lebel-box">
  859. <span class="radio-inner">
  860. <span class="radio-fang"
  861. :class="{'is-checked-radio':prescription.dialysate_formulation_name.indexOf('高钠')>-1?true:false}"></span>
  862. <input vt-model="prescription.dialysate_formulation_name"
  863. id="prescription_dialysate_formulation_5"
  864. name="PredialysisEvaluation_catheter" type="radio"
  865. class="radio-no" value="高钠">
  866. </span>
  867. <span> 高钠</span>
  868. </label>
  869. </td>
  870. <td width="100">
  871. ( 145mmol/L )
  872. </td>
  873. <td></td>
  874. </tr>
  875. </tbody>
  876. </table>
  877. <table class="table-box">
  878. <tbody>
  879. <tr>
  880. <td width="55">置换量:</td>
  881. <td width="40">
  882. <div class="under-line">&nbsp;{{prescription.replacement_total}}</div>
  883. </td>
  884. <td width="10">L</td>
  885. <td width="10"></td>
  886. <td width="70">治疗方式:</td>
  887. <td width="50">
  888. <label for="prescription_mode_1" class="radio-lebel-box">
  889. <span class="radio-inner">
  890. <span class="radio-fang "
  891. :class="{'is-checked-radio':prescription.mode_id==1?true:false}"></span>
  892. <input vt-model="prescription.mode_id" id="prescription_mode_1"
  893. name="prescription_mode" type="radio" class="radio-no"
  894. value="1">
  895. </span>
  896. <span> HD</span>
  897. </label>
  898. </td>
  899. <td width="50">
  900. <label for="prescription_mode_2" class="radio-lebel-box">
  901. <span class="radio-inner">
  902. <span class="radio-fang "
  903. :class="{'is-checked-radio':prescription.mode_id==2?true:false}"></span>
  904. <input vt-model="prescription.mode_id" id="prescription_mode_2"
  905. name="prescription_mode" type="radio" class="radio-no"
  906. value="2">
  907. </span>
  908. <span> HDF</span>
  909. </label>
  910. </td>
  911. <td width="50">
  912. <label for="prescription_mode_5" class="radio-lebel-box">
  913. <span class="radio-inner">
  914. <span class="radio-fang "
  915. :class="{'is-checked-radio':prescription.mode_id==5?true:false}"></span>
  916. <input vt-model="prescription.mode_id" id="prescription_mode_5"
  917. name="prescription_mode" type="radio" class="radio-no"
  918. value="5">
  919. </span>
  920. <span> HF</span>
  921. </label>
  922. </td>
  923. <td width="50">
  924. <label for="prescription_mode_4" class="radio-lebel-box">
  925. <span class="radio-inner">
  926. <span class="radio-fang "
  927. :class="{'is-checked-radio':prescription.mode_id==4?true:false}"></span>
  928. <input vt-model="prescription.mode_id" id="prescription_mode_4"
  929. name="prescription_mode" type="radio" class="radio-no"
  930. value="4">
  931. </span>
  932. <span> HP</span>
  933. </label>
  934. </td>
  935. <td width="80">
  936. <label for="prescription_mode_3" class="radio-lebel-box">
  937. <span class="radio-inner">
  938. <span class="radio-fang "
  939. :class="{'is-checked-radio':prescription.mode_id==3?true:false}"></span>
  940. <input vt-model="prescription.mode_id" id="prescription_mode_3"
  941. name="prescription_mode" type="radio" class="radio-no"
  942. value="3">
  943. </span>
  944. <span> HD+HP</span>
  945. </label>
  946. </td>
  947. <td width="35">其他</td>
  948. <td width="100">
  949. <div class="under-line">&nbsp;
  950. <span v-if="prescription.mode_id>5">{{prescription.mode}}</span>
  951. </div>
  952. </td>
  953. <td width="140">透析器/灌流器型号:</td>
  954. <td width="">
  955. <div class="under-line">&nbsp;{{prescription.dialyzer_perfusion_apparatus}}</div>
  956. </td>
  957. </tr>
  958. </tbody>
  959. </table>
  960. <table class="table-box">
  961. <tbody>
  962. <tr>
  963. <td width="70">透析机号:</td>
  964. <td width="100">
  965. <div class="under-line">{{getNumber()}}</div>
  966. </td>
  967. <td width=""></td>
  968. <td width="70">医生签名:</td>
  969. <td width="100">
  970. <div class="under-line">
  971. <span v-if="advices.length == 0"></span>
  972. <span v-else-if="setAdminUserES(advices[0][0].advice_doctor) == ''">{{getAdminUser(advices[0][0].advice_doctor)}}</span>
  973. <img class="es-img" :src="setAdminUserES(advices[0][0].advice_doctor)"
  974. alt="" srcset="" v-else>
  975. <!--<span v-if="setAdminUserES(advices[0][0].advice_doctor) == ''">{{getAdminUser(advices[0][0].advice_doctor)}}</span>-->
  976. <!--<img class="es-img" :src="setAdminUserES(advices[0][0].advice_doctor)"-->
  977. <!--alt="" srcset="" v-else>-->
  978. <!--<span v-if="setAdminUserES(advice[0].advice_doctor) == ''">{{getAdminUser(advice[0].advice_doctor)}}</span>-->
  979. <!--<img class="es-img" :src="setAdminUserES(advice[0].advice_doctor)"-->
  980. <!--alt="" srcset="" v-else>-->
  981. <!-- {{getXuserName(prescription.prescription_doctor)}} -->
  982. </div>
  983. </td>
  984. <td width="70">上机护士:</td>
  985. <td width="100">
  986. <div class="under-line">
  987. <span v-if="setAdminUserES(dialysisOrder==null?0:dialysisOrder.start_nurse) == ''">{{getAdminUser(dialysisOrder==null?0:dialysisOrder.start_nurse)}}</span>
  988. <img class="es-img" :src="setAdminUserES(dialysisOrder==null?0:dialysisOrder.start_nurse)"
  989. alt="" srcset="" v-else>
  990. </div>
  991. </td>
  992. </tr>
  993. </tbody>
  994. </table>
  995. </td>
  996. </tr>
  997. </tbody>
  998. </table>
  999. <table class="print-table" border="1">
  1000. <tbody>
  1001. <tr>
  1002. <td :rowspan="jilurow" width="30px" class="title-box">透析中记录</td>
  1003. <td width="100">时间</td>
  1004. <td width="80">血压<br/>mmHg</td>
  1005. <td width="40">脉率<br/>次/分</td>
  1006. <td width="40">呼吸<br/>次/分</td>
  1007. <td width="60">血流量<br/>ml/min</td>
  1008. <td width="60">超滤量<br/>L</td>
  1009. <td width="60">置换量<br/>L</td>
  1010. <td width="60">静脉压<br/>mmHg</td>
  1011. <td width="60">跨膜压<br/>mmHg</td>
  1012. <!-- <td width="60">钠浓度<br/>mmol/L</td>
  1013. <td width="80">透析液温度<br/>℃</td>
  1014. <td width="60">置换率<br/>ml/min</td> -->
  1015. <td width="">备 注</td>
  1016. </tr>
  1017. <tr v-for="monitor in monitors" :key="monitor.id">
  1018. <td>&nbsp;
  1019. <!-- <template>
  1020. <span v-if="monitor.monitoring_date">
  1021. {{monitor.monitoring_date | parseTime('{y}-{m}-{d}')}}
  1022. </span>
  1023. </template> -->
  1024. {{getTime(monitor.operate_time,'{h}:{i}')}}
  1025. </td>
  1026. <td>&nbsp;{{monitor.systolic_blood_pressure}} / {{monitor.diastolic_blood_pressure}}</td>
  1027. <td>&nbsp;{{monitor.pulse_frequency}}</td>
  1028. <td>&nbsp;{{monitor.breathing_rate}}</td>
  1029. <td>&nbsp;{{monitor.blood_flow_volume}}</td>
  1030. <td>&nbsp;{{monitor.ultrafiltration_volume}}</td>
  1031. <td>&nbsp;{{monitor.displacement_quantity}}</td>
  1032. <td>&nbsp;{{monitor.venous_pressure}}</td>
  1033. <td>&nbsp;{{monitor.transmembrane_pressure}}</td>
  1034. <!-- <td>&nbsp;{{monitor.sodium_concentration}}</td>
  1035. <td>&nbsp;{{monitor.dialysate_temperature}}</td>
  1036. <td>&nbsp;{{monitor.replacement_rate}}</td> -->
  1037. <td>&nbsp;{{monitor.symptom}}
  1038. &nbsp;{{monitor.dispose}}
  1039. &nbsp;{{monitor.result}}
  1040. </td>
  1041. </tr>
  1042. </tbody>
  1043. </table>
  1044. <table class="print-table" border="1">
  1045. <tbody>
  1046. <tr>
  1047. <td class="title-box" width="30px">透后评估</td>
  1048. <td>
  1049. <table class="table-box">
  1050. <tbody>
  1051. <tr>
  1052. <td width="90">实际治疗时间</td>
  1053. <td width="40">
  1054. <div class="under-line">&nbsp;{{afterdialysis.actual_treatment_hour}}</div>
  1055. </td>
  1056. <td width="10">h</td>
  1057. <td width="40">
  1058. <div class="under-line">&nbsp;{{afterdialysis.actual_treatment_minute}}</div>
  1059. </td>
  1060. <td width="35">min</td>
  1061. <td></td>
  1062. <td width="75">实际超滤量</td>
  1063. <td width="70">
  1064. <div class="under-line">&nbsp;{{afterdialysis.actual_ultrafiltration}}</div>
  1065. </td>
  1066. <td width="20">ml</td>
  1067. <td></td>
  1068. <td width="60">透后体重</td>
  1069. <td width="50">
  1070. <div class="under-line">&nbsp;{{afterdialysis.weight_after}}</div>
  1071. </td>
  1072. <td width="20">Kg</td>
  1073. <td></td>
  1074. <td width="95">透析器凝血:</td>
  1075. <td width="220">
  1076. <label for="txqnx_0" class="radio-lebel-box">
  1077. <span class="radio-inner">
  1078. <span class="radio-fang "
  1079. :class="{'is-checked-radio':afterdialysis.txqnx==0?true:false}"></span>
  1080. <input vt-model="afterdialysis.txqnx" id="txqnx_0" name="txqnx"
  1081. type="radio" class="radio-no" value="0">
  1082. </span>
  1083. <span> 0 级</span>
  1084. </label>
  1085. <label for="txqnx_1" class="radio-lebel-box">
  1086. <span class="radio-inner">
  1087. <span class="radio-fang "
  1088. :class="{'is-checked-radio':afterdialysis.txqnx==1?true:false}"></span>
  1089. <input vt-model="afterdialysis.txqnx" id="txqnx_1" name="txqnx"
  1090. type="radio" class="radio-no" value="1">
  1091. </span>
  1092. <span> Ⅰ 级</span>
  1093. </label>
  1094. <label for="txqnx_2" class="radio-lebel-box">
  1095. <span class="radio-inner">
  1096. <span class="radio-fang "
  1097. :class="{'is-checked-radio':afterdialysis.txqnx==2?true:false}"></span>
  1098. <input vt-model="afterdialysis.txqnx" id="txqnx_2" name="txqnx"
  1099. type="radio" class="radio-no" value="2">
  1100. </span>
  1101. <span> Ⅱ 级</span>
  1102. </label>
  1103. <label for="txqnx_3" class="radio-lebel-box">
  1104. <span class="radio-inner">
  1105. <span class="radio-fang "
  1106. :class="{'is-checked-radio':afterdialysis.txqnx==3?true:false}"></span>
  1107. <input vt-model="afterdialysis.txqnx" id="txqnx_3" name="txqnx"
  1108. type="radio" class="radio-no" value="3">
  1109. </span>
  1110. <span> Ⅲ 级</span>
  1111. </label>
  1112. </td>
  1113. </tr>
  1114. </tbody>
  1115. </table>
  1116. <table class="table-box">
  1117. <tbody>
  1118. <tr>
  1119. <td width="130">拔针后穿刺点渗血:</td>
  1120. <td width="80">
  1121. <label for="afterdialysis_puncture_point_oozing_blood_1" class="radio-lebel-box">
  1122. <span class="radio-inner">
  1123. <span class="radio-fang"
  1124. :class="{'is-checked-radio':afterdialysis.puncture_point_oozing_blood==1?true:false}"></span>
  1125. <input vt-model="afterdialysis.puncture_point_oozing_blood"
  1126. id="afterdialysis_puncture_point_oozing_blood_1"
  1127. name="afterdialysis_puncture_point_oozing_blood"
  1128. type="radio" class="radio-no" value="1">
  1129. </span>
  1130. <span> 有</span>
  1131. </label>
  1132. <label for="afterdialysis_puncture_point_oozing_blood_2" class="radio-lebel-box">
  1133. <span class="radio-inner">
  1134. <span class="radio-fang"
  1135. :class="{'is-checked-radio':afterdialysis.puncture_point_oozing_blood==2?true:false}"></span>
  1136. <input vt-model="afterdialysis.puncture_point_oozing_blood"
  1137. id="afterdialysis_puncture_point_oozing_blood_2"
  1138. name="afterdialysis_puncture_point_oozing_blood"
  1139. type="radio" class="radio-no" value="2">
  1140. </span>
  1141. <span> 无</span>
  1142. </label>
  1143. </td>
  1144. <td width="10"></td>
  1145. <td width="85">穿刺处血肿:</td>
  1146. <td width="80">
  1147. <label for="afterdialysis_puncture_point_haematoma_1" class="radio-lebel-box">
  1148. <span class="radio-inner">
  1149. <span class="radio-fang"
  1150. :class="{'is-checked-radio':afterdialysis.puncture_point_haematoma==1?true:false}"></span>
  1151. <input vt-model="afterdialysis.puncture_point_haematoma"
  1152. id="afterdialysis_puncture_point_haematoma_1"
  1153. name="afterdialysis_puncture_point_haematoma"
  1154. type="radio" class="radio-no" value="1">
  1155. </span>
  1156. <span> 有</span>
  1157. </label>
  1158. <label for="afterdialysis_puncture_point_haematoma_2" class="radio-lebel-box">
  1159. <span class="radio-inner">
  1160. <span class="radio-fang"
  1161. :class="{'is-checked-radio':afterdialysis.puncture_point_haematoma==2?true:false}"></span>
  1162. <input vt-model="afterdialysis.puncture_point_haematoma"
  1163. id="afterdialysis_puncture_point_haematoma_2"
  1164. name="afterdialysis_puncture_point_haematoma"
  1165. type="radio" class="radio-no" value="2">
  1166. </span>
  1167. <span> 无</span>
  1168. </label>
  1169. </td>
  1170. <td width="10"></td>
  1171. <td width="105">压迫后内瘘震颤:</td>
  1172. <td width="140">
  1173. <label for="afterdialysis_internal_fistula_tremor_ac_1" class="radio-lebel-box">
  1174. <span class="radio-inner">
  1175. <span class="radio-fang"
  1176. :class="{'is-checked-radio':afterdialysis.internal_fistula_tremor_ac==1?true:false}"></span>
  1177. <input vt-model="afterdialysis.internal_fistula_tremor_ac"
  1178. id="afterdialysis_internal_fistula_tremor_ac_1"
  1179. name="afterdialysis_internal_fistula_tremor_ac"
  1180. type="radio" class="radio-no" value="1">
  1181. </span>
  1182. <span> 存在</span>
  1183. </label>
  1184. <label for="afterdialysis_internal_fistula_tremor_ac_2" class="radio-lebel-box">
  1185. <span class="radio-inner">
  1186. <span class="radio-fang"
  1187. :class="{'is-checked-radio':afterdialysis.internal_fistula_tremor_ac==2?true:false}"></span>
  1188. <input vt-model="afterdialysis.internal_fistula_tremor_ac"
  1189. id="afterdialysis_internal_fistula_tremor_ac_2"
  1190. name="afterdialysis_internal_fistula_tremor_ac"
  1191. type="radio" class="radio-no" value="2">
  1192. </span>
  1193. <span> 减弱</span>
  1194. </label>
  1195. <label for="afterdialysis_internal_fistula_tremor_ac_3" class="radio-lebel-box">
  1196. <span class="radio-inner">
  1197. <span class="radio-fang"
  1198. :class="{'is-checked-radio':afterdialysis.internal_fistula_tremor_ac==3?true:false}"></span>
  1199. <input vt-model="afterdialysis.internal_fistula_tremor_ac"
  1200. id="afterdialysis_internal_fistula_tremor_ac_3"
  1201. name="afterdialysis_internal_fistula_tremor_ac"
  1202. type="radio" class="radio-no" value="3">
  1203. </span>
  1204. <span> 无</span>
  1205. </label>
  1206. </td>
  1207. <td width="">
  1208. </td>
  1209. </tr>
  1210. </tbody>
  1211. </table>
  1212. <table class="table-box">
  1213. <tbody>
  1214. <tr>
  1215. <td width="55">并发症:</td>
  1216. <td width="600">
  1217. <label for="afterdialysis_complications_1" class="radio-lebel-box">
  1218. <span class="radio-inner">
  1219. <span class="radio-fang"
  1220. :class="{'is-checked-radio':afterdialysis.complications_index.indexOf('低血压')>-1?true:false}"></span>
  1221. <input vt-model="afterdialysis.complications_index"
  1222. id="PredialysisEvaluation_complications_1"
  1223. name="PredialysisEvaluation_complications" type="radio"
  1224. class="radio-no" value="低血压">
  1225. </span>
  1226. <span> 低血压</span>
  1227. </label>
  1228. <label for="afterdialysis_complications_2" class="radio-lebel-box">
  1229. <span class="radio-inner">
  1230. <span class="radio-fang"
  1231. :class="{'is-checked-radio':afterdialysis.complications_index.indexOf('高血压')>-1?true:false}"></span>
  1232. <input vt-model="afterdialysis.complications_index"
  1233. id="PredialysisEvaluation_complications_2"
  1234. name="PredialysisEvaluation_complications" type="radio"
  1235. class="radio-no" value="高血压">
  1236. </span>
  1237. <span> 高血压</span>
  1238. </label>
  1239. <label for="afterdialysis_complications_3" class="radio-lebel-box">
  1240. <span class="radio-inner">
  1241. <span class="radio-fang"
  1242. :class="{'is-checked-radio':afterdialysis.complications_index.indexOf('心律失常')>-1?true:false}"></span>
  1243. <input vt-model="afterdialysis.complications_index"
  1244. id="PredialysisEvaluation_complications_3"
  1245. name="PredialysisEvaluation_complications" type="radio"
  1246. class="radio-no" value="心律失常">
  1247. </span>
  1248. <span> 心律失常</span>
  1249. </label>
  1250. <label for="afterdialysis_complications_4" class="radio-lebel-box">
  1251. <span class="radio-inner">
  1252. <span class="radio-fang"
  1253. :class="{'is-checked-radio':afterdialysis.complications_index.indexOf('头晕')>-1?true:false}"></span>
  1254. <input vt-model="afterdialysis.complications_index"
  1255. id="PredialysisEvaluation_complications_4"
  1256. name="PredialysisEvaluation_complications" type="radio"
  1257. class="radio-no" value="头晕">
  1258. </span>
  1259. <span> 头晕</span>
  1260. </label>
  1261. <label for="afterdialysis_complications_5" class="radio-lebel-box">
  1262. <span class="radio-inner">
  1263. <span class="radio-fang"
  1264. :class="{'is-checked-radio':afterdialysis.complications_index.indexOf('头痛')>-1?true:false}"></span>
  1265. <input vt-model="afterdialysis.complications_index"
  1266. id="PredialysisEvaluation_complications_5"
  1267. name="PredialysisEvaluation_complications" type="radio"
  1268. class="radio-no" value="头痛">
  1269. </span>
  1270. <span> 头痛</span>
  1271. </label>
  1272. <label for="afterdialysis_complications_6" class="radio-lebel-box">
  1273. <span class="radio-inner">
  1274. <span class="radio-fang"
  1275. :class="{'is-checked-radio':afterdialysis.complications_index.indexOf('呕吐')>-1?true:false}"></span>
  1276. <input vt-model="afterdialysis.complications_index"
  1277. id="PredialysisEvaluation_complications_6"
  1278. name="PredialysisEvaluation_complications" type="radio"
  1279. class="radio-no" value="呕吐">
  1280. </span>
  1281. <span> 呕吐</span>
  1282. </label>
  1283. <label for="afterdialysis_complications_7" class="radio-lebel-box">
  1284. <span class="radio-inner">
  1285. <span class="radio-fang"
  1286. :class="{'is-checked-radio':afterdialysis.complications_index.indexOf('抽搐')>-1?true:false}"></span>
  1287. <input vt-model="afterdialysis.complications_index"
  1288. id="PredialysisEvaluation_complications_7"
  1289. name="PredialysisEvaluation_complications" type="radio"
  1290. class="radio-no" value="抽搐">
  1291. </span>
  1292. <span> 抽搐</span>
  1293. </label>
  1294. <label for="afterdialysis_complications_8" class="radio-lebel-box">
  1295. <span class="radio-inner">
  1296. <span class="radio-fang"
  1297. :class="{'is-checked-radio':afterdialysis.complications_index.indexOf('出血')>-1?true:false}"></span>
  1298. <input vt-model="afterdialysis.complications_index"
  1299. id="PredialysisEvaluation_complications_8"
  1300. name="PredialysisEvaluation_complications" type="radio"
  1301. class="radio-no" value="出血">
  1302. </span>
  1303. <span> 出血</span>
  1304. </label>
  1305. <label for="afterdialysis_complications_9" class="radio-lebel-box">
  1306. <span class="radio-inner">
  1307. <span class="radio-fang"
  1308. :class="{'is-checked-radio':afterdialysis.complications_index.indexOf('心衰')>-1?true:false}"></span>
  1309. <input vt-model="afterdialysis.complications_index"
  1310. id="PredialysisEvaluation_complications_9"
  1311. name="PredialysisEvaluation_complications" type="radio"
  1312. class="radio-no" value="心衰">
  1313. </span>
  1314. <span> 心衰</span>
  1315. </label>
  1316. <label for="afterdialysis_complications_10" class="radio-lebel-box">
  1317. <span class="radio-inner">
  1318. <span class="radio-fang"
  1319. :class="{'is-checked-radio':afterdialysis.complications_index.indexOf('腹痛')>-1?true:false}"></span>
  1320. <input vt-model="afterdialysis.complications_index"
  1321. id="PredialysisEvaluation_complications_10"
  1322. name="PredialysisEvaluation_complications" type="radio"
  1323. class="radio-no" value="腹痛">
  1324. </span>
  1325. <span> 腹痛</span>
  1326. </label>
  1327. </td>
  1328. <td></td>
  1329. </tr>
  1330. </tbody>
  1331. </table>
  1332. <table class="table-box">
  1333. <tbody>
  1334. <tr>
  1335. <td width="70">其他记录:</td>
  1336. <td width="">
  1337. <div class="under-line">&nbsp;{{afterdialysis.complications_other}}</div>
  1338. </td>
  1339. </tr>
  1340. </tbody>
  1341. </table>
  1342. <table class="table-box">
  1343. <tbody>
  1344. <tr>
  1345. <td width="">
  1346. <div class="under-line">&nbsp;</div>
  1347. </td>
  1348. </tr>
  1349. </tbody>
  1350. </table>
  1351. <table class="table-box">
  1352. <tbody>
  1353. <tr>
  1354. <td width="70">患者去向:</td>
  1355. <td width="160">
  1356. <label for="afterdialysis_patient_gose_1" class="radio-lebel-box">
  1357. <span class="radio-inner">
  1358. <span class="radio-fang"
  1359. :class="{'is-checked-radio':afterdialysis.patient_gose==1?true:false}"></span>
  1360. <input vt-model="afterdialysis.patient_gose"
  1361. id="afterdialysis.patient_gose_1"
  1362. name="afterdialysis.patient_gose" type="radio"
  1363. class="radio-no" value="1">
  1364. </span>
  1365. <span> 离院</span>
  1366. </label>
  1367. <label for="afterdialysis_patient_gose_2" class="radio-lebel-box">
  1368. <span class="radio-inner">
  1369. <span class="radio-fang"
  1370. :class="{'is-checked-radio':afterdialysis.patient_gose==2?true:false}"></span>
  1371. <input vt-model="afterdialysis.patient_gose"
  1372. id="afterdialysis.patient_gose_2"
  1373. name="afterdialysis.patient_gose" type="radio"
  1374. class="radio-no" value="2">
  1375. </span>
  1376. <span> 留观</span>
  1377. </label>
  1378. <label for="afterdialysis_patient_gose_3" class="radio-lebel-box">
  1379. <span class="radio-inner">
  1380. <span class="radio-fang"
  1381. :class="{'is-checked-radio':afterdialysis.patient_gose==3?true:false}"></span>
  1382. <input vt-model="afterdialysis.patient_gose"
  1383. id="afterdialysis.patient_gose_3"
  1384. name="afterdialysis.patient_gose" type="radio"
  1385. class="radio-no" value="3">
  1386. </span>
  1387. <span> 住院</span>
  1388. </label>
  1389. </td>
  1390. <td width="10">(</td>
  1391. <td width="35">科室</td>
  1392. <td width="">
  1393. <div class="under-line">&nbsp;
  1394. <span v-if="afterdialysis.patient_gose==3">{{afterdialysis.inpatient_department}}</span>
  1395. </div>
  1396. </td>
  1397. <td width="220">交待病房护士/患者/陪人观察内容:</td>
  1398. <td width="160">
  1399. <label for="afterdialysis_observation_content_1" class="radio-lebel-box">
  1400. <span class="radio-inner">
  1401. <span class="radio-fang"
  1402. :class="{'is-checked-radio':afterdialysis.patient_gose==3&&afterdialysis.observation_content.indexOf('意识状态')>-1?true:false}"></span>
  1403. <input vt-model="afterdialysis.observation_content"
  1404. id="afterdialysis_observation_content_1"
  1405. name="afterdialysis_observation_content" type="radio"
  1406. class="radio-no" value="1">
  1407. </span>
  1408. <span> 意识状态</span>
  1409. </label>
  1410. <label for="afterdialysis_observation_content_2" class="radio-lebel-box">
  1411. <span class="radio-inner">
  1412. <span class="radio-fang"
  1413. :class="{'is-checked-radio':afterdialysis.patient_gose==3&&afterdialysis.observation_content.indexOf('生命体征')>-1?true:false}"></span>
  1414. <input vt-model="afterdialysis.observation_content"
  1415. id="afterdialysis_observation_content_2"
  1416. name="afterdialysis_observation_content" type="radio"
  1417. class="radio-no" value="2">
  1418. </span>
  1419. <span> 生命体征</span>
  1420. </label>
  1421. </td>
  1422. </tr>
  1423. </tbody>
  1424. </table>
  1425. <table class="table-box">
  1426. <tbody>
  1427. <tr>
  1428. <td width="530">
  1429. <label for="afterdialysis_observation_content_3" class="radio-lebel-box">
  1430. <span class="radio-inner">
  1431. <span class="radio-fang"
  1432. :class="{'is-checked-radio':afterdialysis.patient_gose==3&&afterdialysis.observation_content.indexOf('内瘘搏动/渗血')>-1?true:false}"></span>
  1433. <input vt-model="afterdialysis.observation_content"
  1434. id="afterdialysis_observation_content_3"
  1435. name="afterdialysis_observation_content" type="radio"
  1436. class="radio-no" value="3">
  1437. </span>
  1438. <span> 内瘘搏动/渗血</span>
  1439. </label>
  1440. <label for="afterdialysis_observation_content_4" class="radio-lebel-box">
  1441. <span class="radio-inner">
  1442. <span class="radio-fang"
  1443. :class="{'is-checked-radio':afterdialysis.patient_gose==3&&afterdialysis.observation_content.indexOf('导管固定/穿刺口渗血')>-1?true:false}"></span>
  1444. <input vt-model="afterdialysis.observation_content"
  1445. id="afterdialysis_observation_content_4"
  1446. name="afterdialysis_observation_content" type="radio"
  1447. class="radio-no" value="4">
  1448. </span>
  1449. <span> 导管固定/穿刺口渗血</span>
  1450. </label>
  1451. <label for="afterdialysis_observation_content_5" class="radio-lebel-box">
  1452. <span class="radio-inner">
  1453. <span class="radio-fang"
  1454. :class="{'is-checked-radio':afterdialysis.patient_gose==3&&afterdialysis.observation_content.indexOf('动静脉直接穿刺口渗血/肢端循环情况')>-1?true:false}"></span>
  1455. <input vt-model="afterdialysis.observation_content"
  1456. id="afterdialysis_observation_content_5"
  1457. name="afterdialysis_observation_content" type="radio"
  1458. class="radio-no" value="5">
  1459. </span>
  1460. <span> 动静脉直接穿刺口渗血/肢端循环情况</span>
  1461. </label>
  1462. </td>
  1463. <td width="40">其他:</td>
  1464. <td width="">
  1465. <div class="under-line">&nbsp;
  1466. <span v-if="afterdialysis.patient_gose==3">{{afterdialysis.observation_content_other}}
  1467. </span>
  1468. </div>
  1469. </td>
  1470. </tr>
  1471. </tbody>
  1472. </table>
  1473. <table class="table-box">
  1474. <tbody>
  1475. <tr>
  1476. <td width="150">当班责任(核对)护士:</td>
  1477. <td width="100">
  1478. <div class="under-line">
  1479. <!--<span v-if="afterdialysis.creater==0">&nbsp;</span>-->
  1480. <!--<img class="es-img" :src="setAdminUserES(afterdialysis.creater)" alt="" srcset="" v-else>-->
  1481. <span v-if="setAdminUserES(afterdialysis.creater) == ''">{{getAdminUser(afterdialysis.creater)}}</span>
  1482. <img class="es-img" :src="setAdminUserES(afterdialysis.creater)"
  1483. alt="" srcset="" v-else>
  1484. </div>
  1485. </td>
  1486. <td width=""></td>
  1487. <td width="70">下机护士:</td>
  1488. <td width="100">
  1489. <div class="under-line">
  1490. <span v-if="setAdminUserES(dialysisOrder==null?0:dialysisOrder.finish_nurse) == ''">{{getAdminUser(dialysisOrder==null?0:dialysisOrder.finish_nurse)}}</span>
  1491. <img class="es-img" :src="setAdminUserES(dialysisOrder==null?0:dialysisOrder.finish_nurse)"
  1492. alt="" srcset="" v-else>
  1493. </div>
  1494. </td>
  1495. </tr>
  1496. </tbody>
  1497. </table>
  1498. </td>
  1499. </tr>
  1500. </tbody>
  1501. </table>
  1502. <table class="print-table-no" border="1" count="0">
  1503. <tbody>
  1504. <tr>
  1505. <td width="60px">时间</td>
  1506. <td width="100px">医嘱内容</td>
  1507. <td width="80px">医生签名</td>
  1508. <td width="80px">执行护士</td>
  1509. <td width="80px">执行时间</td>
  1510. <td width="75px">核对护士</td>
  1511. <td width="10px"></td>
  1512. <td width="60px">时间</td>
  1513. <td width="100px">医嘱内容</td>
  1514. <td width="80px">医生签名</td>
  1515. <td width="80px">执行护士</td>
  1516. <td width="80px">执行时间</td>
  1517. <td width="75px">核对护士</td>
  1518. </tr>
  1519. <tr v-for="(advice, index) in advices" :key="index">
  1520. <td height="10px">
  1521. <span v-if="advice[0].start_time">
  1522. {{getTime(advice[0].start_time,'{h}:{i}')}}
  1523. </span>
  1524. <span v-else>&nbsp;<br/>&nbsp;</span>
  1525. </td>
  1526. <td class="advice-name">
  1527. <span v-if="advice[0].parent_id>0">└</span>
  1528. <span>{{advice[0].advice_name }}</span>
  1529. <span>{{advice[0].advice_desc}}</span>
  1530. <span v-if="advice[0].drug_spec">{{advice[0].drug_spec}}{{advice[0].drug_spec_unit}}</span>
  1531. <span v-if="advice[0].prescribing_number">* {{advice[0].prescribing_number}}{{advice[0].prescribing_number_unit}}</span>
  1532. <span v-if="advice[0].single_dose">单次用量 {{advice[0].single_dose}}{{advice[0].single_dose_unit}}</span>
  1533. <span>{{advice[0].delivery_way}}</span>
  1534. <span>{{advice[0].execution_frequency}}</span>
  1535. <div v-for="(child, childindex) in advice[0].children" :key="childindex" class="advice-children">
  1536. <div>▲</div>
  1537. <div>
  1538. <span>{{child.advice_name }}</span>
  1539. <span>{{child.advice_desc}}</span>
  1540. <span v-if="child.drug_spec">{{child.drug_spec}}{{child.drug_spec_unit}}</span>
  1541. <span
  1542. v-if="child.prescribing_number">* {{child.prescribing_number}}{{child.prescribing_number_unit}}</span>
  1543. <span v-if="child.single_dose">单次用量 {{child.single_dose}}{{child.single_dose_unit}}</span>
  1544. </div>
  1545. </div>
  1546. </td>
  1547. <td>
  1548. <!--<img class="es-img" :src="setAdminUserES(advice[0].advice_doctor)" alt="" srcset=""-->
  1549. <!--v-show="advice[0].advice_doctor>0">-->
  1550. <!---->
  1551. <span
  1552. v-if="setAdminUserES(advice[0].advice_doctor) == ''">{{getAdminUser(advice[0].advice_doctor)}}</span>
  1553. <img class="es-img" :src="setAdminUserES(advice[0].advice_doctor)"
  1554. alt="" srcset="" v-else>
  1555. </td>
  1556. <td>
  1557. <!--<img class="es-img" :src="setAdminUserES(advice[0].execution_staff)" alt="" srcset=""-->
  1558. <!--v-show="advice[0].execution_staff>0">-->
  1559. <span
  1560. v-if="setAdminUserES(advice[0].execution_staff) == ''">{{getAdminUser(advice[0].execution_staff)}}</span>
  1561. <img class="es-img" :src="setAdminUserES(advice[0].execution_staff)"
  1562. alt="" srcset="" v-else>
  1563. </td>
  1564. <td><span v-if="advice[0].execution_time">
  1565. <!--{{advice[0].execution_time| parseTime('{y}-{m}-{d} {h}:{i}:{s}')}}-->
  1566. {{getTime(advice[0].execution_time,'{h}:{i}')}}
  1567. </span>
  1568. </td>
  1569. <td>
  1570. <!--<img class="es-img" :src="setAdminUserES(advice[0].checker)" alt="" srcset=""-->
  1571. <!--v-show="advice[0].checker>0">-->
  1572. <span v-if="setAdminUserES(advice[0].checker) == ''">{{getAdminUser(advice[0].checker)}}</span>
  1573. <img class="es-img" :src="setAdminUserES(advice[0].checker)"
  1574. alt="" srcset="" v-else>
  1575. </td>
  1576. <td></td>
  1577. <td v-if="advice[1] != undefined">
  1578. <span v-if="advice[1].start_time">
  1579. <!-- {{advice[1].start_time | parseTime('{y}-{m}-{d} {h}:{i}')}} -->
  1580. {{getTime(advice[1].start_time,'{h}:{i}')}}
  1581. </span>
  1582. </td>
  1583. <td v-else>
  1584. <span></span>
  1585. </td>
  1586. <td class="advice-name" v-if="advice[1] != undefined">
  1587. <span>{{advice[1].advice_name }}</span>
  1588. <span>{{advice[1].advice_desc}}</span>
  1589. <span v-if="advice[1].drug_spec">{{advice[1].drug_spec}}{{advice[1].drug_spec_unit}}</span>
  1590. <span v-if="advice[1].prescribing_number">* {{advice[1].prescribing_number}}{{advice[1].prescribing_number_unit}}</span>
  1591. <span v-if="advice[1].single_dose">单次用量 {{advice[1].single_dose}}{{advice[1].single_dose_unit}}</span>
  1592. <span>{{advice[1].delivery_way}}</span>
  1593. <span>{{advice[1].execution_frequency}}</span>
  1594. <div v-for="(child, childindex) in advice[1].children" :key="childindex" class="advice-children">
  1595. <div>▲</div>
  1596. <div>
  1597. <span>{{child.advice_name }}</span>
  1598. <span>{{child.advice_desc}}</span>
  1599. <span v-if="child.drug_spec">{{child.drug_spec}}{{child.drug_spec_unit}}</span>
  1600. <span
  1601. v-if="child.prescribing_number">* {{child.prescribing_number}}{{child.prescribing_number_unit}}</span>
  1602. <span v-if="child.single_dose">单次用量 {{child.single_dose}}{{child.single_dose_unit}}</span>
  1603. </div>
  1604. </div>
  1605. </td>
  1606. <td v-else>
  1607. <span></span>
  1608. </td>
  1609. <td v-if="advice[1] != undefined">
  1610. <!--<img class="es-img" :src="setAdminUserES(advice[1].advice_doctor)" alt="" srcset=""-->
  1611. <!--v-show="advice[1].advice_doctor>0"></td>-->
  1612. <span
  1613. v-if="setAdminUserES(advice[1].advice_doctor) == ''">{{getAdminUser(advice[1].advice_doctor)}}</span>
  1614. <img class="es-img" :src="setAdminUserES(advice[1].advice_doctor)"
  1615. alt="" srcset="" v-else>
  1616. </td>
  1617. <td v-else>
  1618. <span></span>
  1619. </td>
  1620. <td v-if="advice[1] != undefined">
  1621. <!--<img class="es-img" :src="setAdminUserES(advice[1].execution_staff)" alt="" srcset=""-->
  1622. <!--v-show="advice[1].execution_staff>0">-->
  1623. <span
  1624. v-if="setAdminUserES(advice[1].execution_staff) == ''">{{getAdminUser(advice[1].execution_staff)}}</span>
  1625. <img class="es-img" :src="setAdminUserES(advice[1].execution_staff)"
  1626. alt="" srcset="" v-else>
  1627. </td>
  1628. <!--<td><span v-if="advice[1].execution_time">{{advice[1].execution_time| parseTime('{y}-{m}-{d} {h}:{i}:{s}')}}</span>-->
  1629. <!--</td>-->
  1630. <td v-else>
  1631. <span></span>
  1632. </td>
  1633. <td v-if="advice[1] != undefined">
  1634. <span v-if="advice[1].execution_time">{{getTime(advice[1].execution_time,'{h}:{i}')}}</span>
  1635. </td>
  1636. <td v-else>
  1637. <span></span>
  1638. </td>
  1639. <td v-if="advice[1] != undefined">
  1640. <!--<img class="es-img" :src="setAdminUserES(advice[1].checker)" alt="" srcset=""-->
  1641. <!--v-show="advice[1].checker>0">-->
  1642. <!--<span v-show="advice[1].checker>0">setAdminUserES(advice[1].checker)</span>-->
  1643. <span v-if="setAdminUserES(advice[1].checker) == ''">{{getAdminUser(advice[1].checker)}}</span>
  1644. <img class="es-img" :src="setAdminUserES(advice[1].checker)"
  1645. alt="" srcset="" v-else>
  1646. </td>
  1647. <td v-else>
  1648. <span></span>
  1649. </td>
  1650. </tr>
  1651. </tbody>
  1652. </table>
  1653. <table class="table-box" style="margin-top: 10px;">
  1654. <tbody>
  1655. <tr>
  1656. <td width="" style="font-size:13px">
  1657. 注:透析器凝血评价标准:“0 级” 无凝血或数条纤维束凝血,“Ⅰ 级” 少于10%纤维凝血,“Ⅱ 级” 少于50%纤维凝血,“Ⅲ 级” 大于50%纤维凝血。
  1658. </td>
  1659. </tr>
  1660. </tbody>
  1661. </table>
  1662. </div>
  1663. </div>
  1664. </div>
  1665. </div>
  1666. </template>
  1667. <script>
  1668. import { getPrintDialysisRecord } from "@/api/dialysis";
  1669. import { getDataConfig } from "@/utils/data";
  1670. import SideBar from "@/pages/layout/SideBar";
  1671. import { jsGetAge, uParseTime } from "@/utils/tools";
  1672. import { fetchAllAdminUsers } from "@/api/doctor";
  1673. import LabelBox from "./printItem/LabelBox";
  1674. export default {
  1675. name: "Main",
  1676. components: {
  1677. LabelBox
  1678. },
  1679. data() {
  1680. return {
  1681. isShowImg: true,
  1682. isShow: true,
  1683. operators: [],
  1684. dialysisOrder: {
  1685. DeviceNumber: []
  1686. },
  1687. operatorMaps: {},
  1688. complications: [
  1689. "低血压",
  1690. "高血压",
  1691. "心律失常",
  1692. "头晕",
  1693. "头痛",
  1694. "呕吐",
  1695. "抽搐",
  1696. "出血",
  1697. "心衰",
  1698. "腹痛"
  1699. ],
  1700. jilurow: 10,
  1701. loading: true,
  1702. orgname: "",
  1703. patientInfo_gender_1: false,
  1704. patientInfo_gender_2: false,
  1705. patientInfo_source_2: false,
  1706. patientInfo_source_1: false,
  1707. modeOptions: {},
  1708. replacementWays: [],
  1709. perfusionApparatus: [],
  1710. anticoagulantsConfit: {},
  1711. bloodAccessParOpera: {},
  1712. dialysateFormulationOptions: {},
  1713. queryParams: {
  1714. xtdate: "",
  1715. xtno: ""
  1716. },
  1717. patientInfo: {
  1718. birth: "",
  1719. age: "",
  1720. DialysisSchedule: {
  1721. device_number: { number: "" },
  1722. device_zone: { name: "" }
  1723. },
  1724. gender: 0
  1725. },
  1726. predialysis: {
  1727. internal_fistula: "",
  1728. internal_fistula_skin: "",
  1729. catheter: "",
  1730. blood_access_part_opera_name: ""
  1731. },
  1732. afterdialysis: {
  1733. complications_index: ""
  1734. },
  1735. prescription: {
  1736. dialysate_formulation_name: "",
  1737. device: {}
  1738. },
  1739. advices: [],
  1740. users: [],
  1741. monitors: [],
  1742. summary: {},
  1743. adminUser: [],
  1744. receiverTreatmentAccess: {},
  1745. AlPanel: {
  1746. id: 0,
  1747. name: "",
  1748. type: 1,
  1749. shouji: 2,
  1750. weichi: 2,
  1751. zongliang: 2,
  1752. gaimingcheng: -1,
  1753. gaijiliang: -1,
  1754. shouji_unit: "mg",
  1755. weichi_unit: "mg/h",
  1756. zongliang_unit: "mg",
  1757. gaimingcheng_unit: "",
  1758. gaijiliang_unit: ""
  1759. }
  1760. };
  1761. },
  1762. methods: {
  1763. getUser() {
  1764. fetchAllAdminUsers().then(response => {
  1765. if (response.data.state == 1) {
  1766. this.adminUser = response.data.data.users;
  1767. console.log(this.adminUser);
  1768. this.loading = false;
  1769. } else {
  1770. this.loading = false;
  1771. this.$message.error("请求数据失败");
  1772. return false;
  1773. }
  1774. });
  1775. },
  1776. getTime(value, temp) {
  1777. if (value != undefined) {
  1778. return uParseTime(value, temp);
  1779. }
  1780. return "";
  1781. },
  1782. printThisPage() {
  1783. var xtdate = this.$route.query.xtdate;
  1784. this.$router.push(
  1785. "/Prints?xtdate=" + xtdate + "&xtno=" + this.$route.query.xtno
  1786. );
  1787. },
  1788. backAction() {
  1789. this.$router.back(-1);
  1790. },
  1791. getXuserName(id) {
  1792. if (id <= 0) {
  1793. return "";
  1794. }
  1795. var name = "";
  1796. if (this.users == null || typeof this.users.length == "undefined") {
  1797. return name;
  1798. }
  1799. var leng = this.users.length;
  1800. if (leng == 0) {
  1801. return name;
  1802. }
  1803. for (let index = 0; index < leng; index++) {
  1804. if (this.users[index].id == id) {
  1805. name = this.users[index].name;
  1806. break;
  1807. }
  1808. }
  1809. return name;
  1810. },
  1811. setAdminUserES(id) {
  1812. console.log(id);
  1813. if (id == 0) {
  1814. return "";
  1815. }
  1816. if (id == undefined) {
  1817. return "";
  1818. }
  1819. if (id in this.operatorMaps) {
  1820. return this.operatorMaps[id].url;
  1821. }
  1822. return "";
  1823. },
  1824. modeName(mode_id) {
  1825. return typeof this.modeOptions[mode_id] != "undefined" &&
  1826. typeof this.modeOptions[mode_id].name != "undefined"
  1827. ? this.modeOptions[mode_id].name
  1828. : "";
  1829. },
  1830. getDialysisRecord() {
  1831. getPrintDialysisRecord(this.queryParams).then(response => {
  1832. if (response.data.state == 1) {
  1833. this.adminUser = response.data.data.users;
  1834. this.users = response.data.data.users;
  1835. this.patientInfo = response.data.data.patientInfo;
  1836. this.patientInfo.birth = uParseTime(
  1837. this.patientInfo.birthday,
  1838. "{y}-{m}-{d}"
  1839. );
  1840. this.patientInfo.age = jsGetAge(this.patientInfo.birth, "-");
  1841. if (response.data.data.patientInfo.first_dialysis_date != 0) {
  1842. this.patientInfo.first_dialysis_date = uParseTime(
  1843. response.data.data.patientInfo.first_dialysis_date,
  1844. "{y}-{m}-{d}"
  1845. );
  1846. } else {
  1847. this.patientInfo.first_dialysis_date = "";
  1848. }
  1849. this.predialysis = response.data.data.PredialysisEvaluation;
  1850. this.predialysis.blood_access_part_opera_name = this.bloodAccessParOperaName(
  1851. this.predialysis.blood_access_part_opera_id
  1852. );
  1853. this.afterdialysis = response.data.data.AssessmentAfterDislysis;
  1854. this.operators = response.data.data.operators;
  1855. this.dialysisOrder =
  1856. response.data.data.dialysisOrder === null
  1857. ? null
  1858. : response.data.data.dialysisOrder;
  1859. if (this.operators.length > 0) {
  1860. var operatorsLen = this.operators.length;
  1861. for (var index = 0; index < operatorsLen; index++) {
  1862. this.$set(
  1863. this.operatorMaps,
  1864. this.operators[index].creator,
  1865. this.operators[index]
  1866. );
  1867. }
  1868. }
  1869. this.afterdialysis.txqnx = -1;
  1870. if (this.afterdialysis.cruor.indexOf("0度") > -1) {
  1871. this.afterdialysis.txqnx = 0;
  1872. }
  1873. if (this.afterdialysis.cruor.indexOf("Ⅰ度") > -1) {
  1874. this.afterdialysis.txqnx = 1;
  1875. }
  1876. if (this.afterdialysis.cruor.indexOf("Ⅱ度") > -1) {
  1877. this.afterdialysis.txqnx = 2;
  1878. }
  1879. if (this.afterdialysis.cruor.indexOf("Ⅲ度") > -1) {
  1880. this.afterdialysis.txqnx = 3;
  1881. }
  1882. this.afterdialysis.complications = this.afterdialysis.complication.split(
  1883. ","
  1884. );
  1885. this.afterdialysis.complications_other = [];
  1886. this.afterdialysis.complications_index = [];
  1887. var acllen = this.afterdialysis.complications.length;
  1888. for (let index = 0; index < acllen; index++) {
  1889. if (
  1890. this.complications.indexOf(
  1891. this.afterdialysis.complications[index]
  1892. ) >= 0
  1893. ) {
  1894. this.afterdialysis.complications_index.push(
  1895. this.afterdialysis.complications[index]
  1896. );
  1897. } else if (
  1898. this.complications.indexOf(
  1899. this.afterdialysis.complications[index]
  1900. ) < 0 &&
  1901. this.afterdialysis.complications_other.indexOf(
  1902. this.afterdialysis.complications[index]
  1903. ) < 0
  1904. ) {
  1905. this.afterdialysis.complications_other.push(
  1906. this.afterdialysis.complications[index]
  1907. );
  1908. }
  1909. }
  1910. this.afterdialysis.complications_other = this.afterdialysis.complications_other.join(
  1911. ","
  1912. );
  1913. this.prescription = response.data.data.dialysisPrescription;
  1914. this.receiverTreatmentAccess =
  1915. response.data.data.receiverTreatmentAccess;
  1916. this.prescription.mode = this.modeName(this.prescription.mode_id);
  1917. var rwLen = this.replacementWays.length;
  1918. this.prescription.replacement = "";
  1919. for (let index = 0; index < rwLen; index++) {
  1920. if (
  1921. this.replacementWays[index].id ==
  1922. this.prescription.replacement_way
  1923. ) {
  1924. this.prescription.replacement = this.replacementWays[index].name;
  1925. break;
  1926. }
  1927. }
  1928. this.prescription.dialysate_formulation_name = this.dialysateFormulationName(
  1929. this.prescription.dialysate_formulation
  1930. );
  1931. var paLen = this.perfusionApparatus.length;
  1932. this.prescription.perfusion_apparatus_name = "";
  1933. for (let index = 0; index < paLen; index++) {
  1934. if (
  1935. this.perfusionApparatus[index].id ==
  1936. this.prescription.perfusion_apparatus
  1937. ) {
  1938. this.prescription.perfusion_apparatus_name = this.perfusionApparatus[
  1939. index
  1940. ].name;
  1941. break;
  1942. }
  1943. }
  1944. var acLen = this.anticoagulantsConfit.length;
  1945. var thisALID = this.prescription.anticoagulant;
  1946. this.prescription.anticoagulant_name = "";
  1947. if (
  1948. typeof this.anticoagulantsConfit[thisALID] != "undefined" &&
  1949. this.anticoagulantsConfit[thisALID] != null
  1950. ) {
  1951. this.prescription.anticoagulant_name = this.anticoagulantsConfit[
  1952. thisALID
  1953. ].name;
  1954. this.AlPanel = this.anticoagulantsConfit[thisALID];
  1955. }
  1956. this.advices = response.data.data.advices;
  1957. this.monitors = response.data.data.monitors;
  1958. this.summary = response.data.data.summary;
  1959. if (this.monitors.length < 8) {
  1960. var nl = 8 - this.monitors.length;
  1961. for (let index = 0; index < nl; index++) {
  1962. this.monitors.push([]);
  1963. }
  1964. }
  1965. this.jilurow = this.monitors.length + 1;
  1966. var childMap = {};
  1967. for (const index in this.advices) {
  1968. if (this.advices[index].parent_id == 0) {
  1969. continue;
  1970. }
  1971. if (!(this.advices[index].parent_id in childMap)) {
  1972. childMap[this.advices[index].parent_id] = [];
  1973. }
  1974. childMap[this.advices[index].parent_id].push(this.advices[index]);
  1975. }
  1976. var advices = [];
  1977. for (const index in this.advices) {
  1978. if (this.advices[index].parent_id > 0) {
  1979. continue;
  1980. }
  1981. var item = this.advices[index];
  1982. if (item.id in childMap) {
  1983. item.children = childMap[item.id];
  1984. } else {
  1985. item.children = [];
  1986. }
  1987. advices.push(item);
  1988. }
  1989. var leftAdvice = [];
  1990. var rightAdvice = [];
  1991. var adlen = advices.length;
  1992. var halfLen = adlen % 2 == 0 ? adlen / 2 : (adlen + 1) / 2;
  1993. for (var i = 0; i < halfLen; i++) {
  1994. leftAdvice.push(advices[i]);
  1995. rightAdvice.push(advices[i + halfLen]);
  1996. }
  1997. if (halfLen < 5) {
  1998. var nl = 5 - leftAdvice.length;
  1999. for (let index = 0; index < nl; index++) {
  2000. leftAdvice.push([]);
  2001. }
  2002. var nl = 5 - rightAdvice.length;
  2003. for (let index = 0; index < nl; index++) {
  2004. rightAdvice.push([]);
  2005. }
  2006. }
  2007. this.advices = [];
  2008. for (var i = 0; i < halfLen; i++) {
  2009. var item = [];
  2010. item.push(leftAdvice[i]);
  2011. item.push(rightAdvice[i]);
  2012. this.advices.push(item);
  2013. }
  2014. } else {
  2015. this.$message.error("请求数据失败");
  2016. return false;
  2017. }
  2018. console.log(this.advices);
  2019. });
  2020. },
  2021. bloodAccessParOperaName(id) {
  2022. if (id in this.bloodAccessParOpera) {
  2023. return this.bloodAccessParOpera[id].name;
  2024. }
  2025. return "";
  2026. },
  2027. dialysateFormulationName(id) {
  2028. if (id in this.dialysateFormulationOptions) {
  2029. return this.dialysateFormulationOptions[id].name;
  2030. }
  2031. return "";
  2032. },
  2033. getNumber() {
  2034. if (this.dialysisOrder != null) {
  2035. return (
  2036. this.patientInfo.DialysisSchedule.device_zone.name +
  2037. this.dialysisOrder.DeviceNumber.number
  2038. );
  2039. } else {
  2040. return this.patientInfo.DialysisSchedule.device_zone.name;
  2041. }
  2042. },
  2043. getAdminUser(id) {
  2044. console.log(id);
  2045. if (id == 0) {
  2046. return "";
  2047. }
  2048. if (id == undefined) {
  2049. return "";
  2050. }
  2051. for (let i = 0; i < this.adminUser.length; i++) {
  2052. if (this.adminUser[i].id == id) {
  2053. return this.adminUser[i].name;
  2054. }
  2055. }
  2056. },
  2057. printlog(val) {
  2058. console.log(typeof val + "Second");
  2059. }
  2060. },
  2061. watch: {
  2062. "patientInfo.gender": function() {
  2063. if (this.patientInfo.gender == 1) {
  2064. this.patientInfo_gender_1 = true;
  2065. this.patientInfo_gender_2 = false;
  2066. } else if (this.patientInfo.gender == 2) {
  2067. this.patientInfo_gender_2 = true;
  2068. this.patientInfo_gender_1 = false;
  2069. } else {
  2070. this.patientInfo_gender_2 = false;
  2071. this.patientInfo_gender_1 = false;
  2072. }
  2073. },
  2074. "patientInfo.source": function() {
  2075. if (this.patientInfo.source == 1) {
  2076. this.patientInfo_source_1 = true;
  2077. this.patientInfo_source_2 = false;
  2078. } else if (this.patientInfo.source == 2) {
  2079. this.patientInfo_source_2 = true;
  2080. this.patientInfo_source_1 = false;
  2081. } else {
  2082. this.patientInfo_source_2 = false;
  2083. this.patientInfo_source_1 = false;
  2084. }
  2085. }
  2086. },
  2087. created() {
  2088. var xtuser = this.$store.getters.user;
  2089. this.orgname = xtuser.org.org_name;
  2090. // this.orgname = "遂溪方济医院";
  2091. this.modeOptions = this.$store.getters.treatment_mode;
  2092. this.replacementWays = this.$store.getters.replacement_ways;
  2093. this.perfusionApparatus = this.$store.getters.perfusion_apparatus;
  2094. this.anticoagulantsConfit = this.$store.getters.anticoagulants_confit;
  2095. // this.bloodAccessParOpera = getDataConfig('hemodialysis', 'vascular_access_desc')
  2096. var bloodAccessParOpera = getDataConfig(
  2097. "hemodialysis",
  2098. "vascular_access_desc"
  2099. );
  2100. for (var key in bloodAccessParOpera) {
  2101. this.bloodAccessParOpera[bloodAccessParOpera[key].id] =
  2102. bloodAccessParOpera[key];
  2103. }
  2104. var dialysateFormulationOptions = getDataConfig(
  2105. "hemodialysis",
  2106. "dialysate_formulation"
  2107. );
  2108. for (var key in dialysateFormulationOptions) {
  2109. this.dialysateFormulationOptions[dialysateFormulationOptions[key].id] =
  2110. dialysateFormulationOptions[key];
  2111. }
  2112. const xtdate = this.$route.query && this.$route.query.xtdate;
  2113. const xtno = this.$route.query && this.$route.query.xtno;
  2114. if (
  2115. typeof xtdate == "string" &&
  2116. xtdate.length > 0 &&
  2117. typeof xtno == "string" &&
  2118. xtno.length > 0
  2119. ) {
  2120. this.queryParams.xtdate = xtdate;
  2121. this.queryParams.xtno = xtno;
  2122. this.getDialysisRecord();
  2123. } else {
  2124. this.$message.error("参数不齐");
  2125. return false;
  2126. }
  2127. this.getUser();
  2128. },
  2129. components: {
  2130. SideBar
  2131. }
  2132. };
  2133. </script>
  2134. <style style="stylesheet/scss" lang="scss" scoped>
  2135. .dialysis-print-order {
  2136. width: 960px;
  2137. margin: 0 auto;
  2138. .order-yy-name {
  2139. margin:10px auto 0 auto;
  2140. text-align: center;
  2141. font-size: 20px;
  2142. }
  2143. .order-title {
  2144. margin: auto;
  2145. font-weight: 600;
  2146. text-align: center;
  2147. font-size: 22px;
  2148. padding: 10px 20px 20px 20px;
  2149. }
  2150. .table-box {
  2151. width: 100%;
  2152. line-height: 15px;
  2153. font-size: 14px;
  2154. .under-line {
  2155. border-bottom: 1px solid #999;
  2156. width: 95%;
  2157. text-align: center;
  2158. margin-left: 2px;
  2159. }
  2160. }
  2161. .print-table {
  2162. width: 100%;
  2163. text-align: center;
  2164. border-collapse: collapse;
  2165. line-height: 25px;
  2166. font-size: 14px;
  2167. .title-box {
  2168. text-align: center;
  2169. font-size: 16px;
  2170. }
  2171. }
  2172. .print-table-no {
  2173. width: 100%;
  2174. text-align: center;
  2175. border-collapse: collapse;
  2176. font-size: 14px;
  2177. }
  2178. }
  2179. .dialysis-print-order .radio-lebel-box {
  2180. font-weight: 400;
  2181. cursor: pointer;
  2182. }
  2183. .dialysis-print-order .radio-no {
  2184. opacity: 0;
  2185. outline: none;
  2186. position: absolute;
  2187. margin: 0;
  2188. width: 0;
  2189. height: 0;
  2190. z-index: -1;
  2191. }
  2192. .dialysis-print-order .radio-inner {
  2193. white-space: nowrap;
  2194. cursor: pointer;
  2195. outline: none;
  2196. display: inline-block;
  2197. line-height: 1;
  2198. position: relative;
  2199. vertical-align: middle;
  2200. }
  2201. .dialysis-print-order .radio-fang {
  2202. display: inline-block;
  2203. position: relative;
  2204. border: 1px solid #000;
  2205. box-sizing: border-box;
  2206. width: 14px;
  2207. height: 14px;
  2208. background-color: #fff;
  2209. z-index: 1;
  2210. transition: border-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46),
  2211. background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46);
  2212. }
  2213. .dialysis-print-order .is-checked-radio::after {
  2214. content: "√";
  2215. font-size: 15px;
  2216. }
  2217. .es-img {
  2218. height: 25px;
  2219. }
  2220. html,
  2221. body {
  2222. height: 100%;
  2223. }
  2224. .mainBox {
  2225. height: 100%;
  2226. font-size: 0.3rem;
  2227. background: #fff;
  2228. .sideColumn {
  2229. float: left;
  2230. width: 1.58rem;
  2231. background: #f5f8fb;
  2232. height: 100%;
  2233. border-right: 1px #c1c1c1 solid;
  2234. position: fixed;
  2235. .column {
  2236. // height: 100%;
  2237. // background: #f5f8fb;
  2238. .head {
  2239. @include display-flex;
  2240. @include align-items-center;
  2241. @include flex-direction;
  2242. @include text-align;
  2243. @include justify-content-center;
  2244. margin: 0.5rem 0 0.5rem 0;
  2245. img {
  2246. width: 100%;
  2247. height: 100%;
  2248. border-radius: 0.5rem;
  2249. width: 0.7rem;
  2250. height: 0.7rem;
  2251. }
  2252. }
  2253. .sidebar {
  2254. @include display-flex;
  2255. @include align-items-center;
  2256. @include flex-direction;
  2257. @include text-align;
  2258. padding: 0;
  2259. li {
  2260. // font-size:0.23rem;
  2261. padding: 0 0 0.8rem 0;
  2262. a {
  2263. color: #a8b3ba;
  2264. display: inline-block;
  2265. padding: 0;
  2266. margin: 0;
  2267. p {
  2268. font-size: 0.24rem;
  2269. margin-top: 0.2rem;
  2270. }
  2271. .iconfont {
  2272. font-size: 0.5rem;
  2273. display: inline-block;
  2274. }
  2275. }
  2276. &.active {
  2277. a {
  2278. color: #409eff;
  2279. }
  2280. }
  2281. }
  2282. }
  2283. }
  2284. }
  2285. }
  2286. .navigation {
  2287. @include display-flex;
  2288. @include align-items-center;
  2289. @include text-align;
  2290. @include box-sizing;
  2291. @include justify-content-between;
  2292. padding: 0.3rem 0.36rem;
  2293. border-bottom: 1px #e5e5e5 solid;
  2294. position: fixed;
  2295. top: 0;
  2296. left: 1.58rem;
  2297. right: 0;
  2298. z-index: 100;
  2299. background: #fff;
  2300. .goBack {
  2301. // color: #6e7a87;
  2302. cursor: pointer;
  2303. @include display-flex;
  2304. @include align-items-center;
  2305. @include text-align;
  2306. .back {
  2307. color: $main-color;
  2308. margin-right: 0.87rem;
  2309. .iconfont {
  2310. color: $main-color;
  2311. }
  2312. }
  2313. .name {
  2314. .iconfont {
  2315. margin-left: 0.1rem;
  2316. }
  2317. }
  2318. }
  2319. .nav {
  2320. ul {
  2321. li {
  2322. float: left;
  2323. font-size: 0.3rem;
  2324. margin: 0 0.2rem;
  2325. height: 0.5rem;
  2326. line-height: 0.5rem;
  2327. width: 1rem;
  2328. cursor: pointer;
  2329. &.active {
  2330. background: $main-color;
  2331. color: #fff;
  2332. border-radius: 30px;
  2333. }
  2334. }
  2335. }
  2336. }
  2337. .time {
  2338. cursor: pointer;
  2339. .iconfont {
  2340. margin-left: 0.1rem;
  2341. }
  2342. }
  2343. }
  2344. .mainContent {
  2345. margin: 0 0 0 1.58rem;
  2346. }
  2347. </style>