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

monitor_dialog.vue 107KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096
  1. <template>
  2. <div class="dialog_box">
  3. <el-dialog
  4. title="透析监测"
  5. :visible.sync="visible"
  6. width="1100px"
  7. @close="reset"
  8. :modal = 'false'
  9. :close-on-click-modal="false"
  10. >
  11. <div v-show="edit == false">
  12. <div class="txsj">
  13. <el-button round :disabled="!is_has_create" @click="newRecordAction"
  14. >新增监测</el-button
  15. >
  16. <el-button
  17. round
  18. :disabled="!is_has_modify && !is_has_modify_other"
  19. @click="modifyRecordAction"
  20. >修改监测</el-button
  21. >
  22. <el-button
  23. round
  24. :disabled="!is_has_del && !is_has_del_other"
  25. @click="deleteRecordAction"
  26. >删除监测</el-button
  27. >
  28. </div>
  29. <el-table
  30. :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)' }"
  31. ref="table"
  32. :data="monitors"
  33. border
  34. highlight-current-row
  35. @current-change="tableCurrentRowChange"
  36. style="width: 100%"
  37. :class="current_row_class"
  38. >
  39. <el-table-column
  40. label="监测时间"
  41. align="center"
  42. width="144"
  43. v-if="isShow('监测时间')"
  44. >
  45. <template slot-scope="scope">
  46. {{ getMonitorDate(scope.row) }}
  47. </template>
  48. </el-table-column>
  49. <el-table-column
  50. prop="temperature"
  51. align="center"
  52. width="100"
  53. label="体温(℃)"
  54. v-if="isShow('体温')"
  55. >
  56. <template slot-scope="scope">
  57. {{ scope.row.temperature ? scope.row.temperature : "" }}
  58. </template>
  59. </el-table-column>
  60. <el-table-column
  61. align="center"
  62. label="血压(mmHg)"
  63. width="110"
  64. v-if="isShow('血压')"
  65. >
  66. <template slot-scope="scope">
  67. {{
  68. scope.row.systolic_blood_pressure
  69. ? scope.row.systolic_blood_pressure
  70. : ""
  71. }}/{{
  72. scope.row.diastolic_blood_pressure
  73. ? scope.row.diastolic_blood_pressure
  74. : ""
  75. }}
  76. </template>
  77. </el-table-column>
  78. <el-table-column
  79. align="center"
  80. label="拒测血压"
  81. width="110"
  82. v-if="isShow('拒测血压')"
  83. >
  84. <template slot-scope="scope">
  85. {{
  86. scope.row.is_pressure
  87. ? scope.row.is_pressure
  88. : ""
  89. }}
  90. </template>
  91. </el-table-column>
  92. <el-table-column
  93. prop="pulse_frequency"
  94. align="center"
  95. width="100"
  96. label="脉搏(次/分)"
  97. v-if="isShow('脉搏')"
  98. >
  99. <template slot-scope="scope">
  100. {{ scope.row.pulse_frequency ? scope.row.pulse_frequency : "" }}
  101. </template>
  102. </el-table-column>
  103. <el-table-column
  104. prop="breathing_rate"
  105. align="center"
  106. label="呼吸频率(次/分)"
  107. width="100"
  108. v-if="isShow('呼吸频率')"
  109. >
  110. <template slot-scope="scope">
  111. {{ scope.row.breathing_rate ? scope.row.breathing_rate : "" }}
  112. </template>
  113. </el-table-column>
  114. <el-table-column
  115. v-if="monitors[0] && monitors[0]['venous_pressure_type'] == 2"
  116. prop="venous_pressure"
  117. align="center"
  118. label="静脉压/动脉压(kpa)"
  119. width="120"
  120. >
  121. <template slot-scope="scope">
  122. <span
  123. >{{
  124. scope.row.venous_pressure ? scope.row.venous_pressure : ""
  125. }}/
  126. {{
  127. scope.row.arterial_pressure ? scope.row.arterial_pressure : ""
  128. }}</span
  129. >
  130. </template>
  131. </el-table-column>
  132. <el-table-column
  133. v-else
  134. prop="venous_pressure"
  135. align="center"
  136. label="静脉压/动脉压(mmHg)"
  137. width="120"
  138. >
  139. <template slot-scope="scope">
  140. <span
  141. >{{
  142. scope.row.venous_pressure ? scope.row.venous_pressure : ""
  143. }}/
  144. {{
  145. scope.row.arterial_pressure ? scope.row.arterial_pressure : ""
  146. }}</span
  147. >
  148. </template>
  149. </el-table-column>
  150. <el-table-column
  151. prop="blood_flow_volume"
  152. align="center"
  153. label="血流量(ml/min)"
  154. width="120"
  155. v-if="isShow('血流量')"
  156. >
  157. <template slot-scope="scope">
  158. {{
  159. scope.row.blood_flow_volume ? scope.row.blood_flow_volume : ""
  160. }}
  161. </template>
  162. </el-table-column>
  163. <el-table-column
  164. prop="transmembrane_pressure"
  165. align="center"
  166. label="跨膜压(kpa)"
  167. width="120"
  168. v-if="
  169. isShow('跨膜压') &&
  170. monitors[0] &&
  171. monitors[0]['transmembrane_pressure_type'] == 2
  172. "
  173. >
  174. <template slot-scope="scope">
  175. {{
  176. scope.row.transmembrane_pressure
  177. ? scope.row.transmembrane_pressure
  178. : "/"
  179. }}
  180. </template>
  181. </el-table-column>
  182. <el-table-column
  183. prop="transmembrane_pressure"
  184. align="center"
  185. label="跨膜压(mmHg)"
  186. width="120"
  187. v-if="
  188. isShow('跨膜压') &&
  189. monitors[0] &&
  190. monitors[0]['transmembrane_pressure_type'] != 2
  191. "
  192. >
  193. <template slot-scope="scope">
  194. {{
  195. scope.row.transmembrane_pressure
  196. ? scope.row.transmembrane_pressure
  197. : "/"
  198. }}
  199. </template>
  200. </el-table-column>
  201. <el-table-column
  202. prop="ultrafiltration_volume"
  203. align="center"
  204. label="超滤量(ml)"
  205. width="110"
  206. v-if="
  207. isShow('超滤量') &&
  208. (template_id == 6 ||
  209. template_id == 9 ||
  210. template_id == 10 ||
  211. template_id == 11 ||
  212. template_id == 12 ||
  213. template_id == 13 ||
  214. template_id == 17 ||
  215. template_id == 18 ||
  216. template_id == 19 ||
  217. template_id == 20 ||
  218. template_id == 21 ||
  219. template_id == 22 ||
  220. template_id == 23 ||
  221. template_id == 24 ||
  222. template_id == 26 ||
  223. template_id == 27 ||
  224. template_id == 29 ||
  225. template_id == 30 ||
  226. template_id == 31 ||
  227. template_id == 32 ||
  228. template_id == 34 ||
  229. template_id == 35 ||
  230. template_id == 36 ||
  231. template_id == 38 ||
  232. template_id == 39 ||
  233. template_id == 40 ||
  234. template_id == 41 ||
  235. template_id == 43 ||
  236. template_id == 44 ||
  237. template_id == 46 ||
  238. template_id == 47 ||
  239. template_id == 48 ||
  240. template_id == 51 ||
  241. template_id == 53 ||
  242. template_id == 54 ||
  243. template_id == 56 ||
  244. template_id == 60 ||
  245. template_id == 65 ||
  246. org_id == 10210 ||
  247. org_id == 9555
  248. || org_id == 10432
  249. || org_id == 10445
  250. || org_id == 10410 ||
  251. org_id == 10495 ||
  252. org_id == 10375 ||
  253. org_id == 10485 ||
  254. org_id == 10375 ||
  255. org_id == 10480 ||
  256. org_id == 10551 ||
  257. org_id == 10599 ||
  258. org_id == 10597 ||
  259. org_id == 10599) &&
  260. org_id!=10387
  261. "
  262. >
  263. <template slot-scope="scope">
  264. <span v-if="org_id == 10440 || org_id == 9671 || org_id ==10206">
  265. {{
  266. scope.row.ultrafiltration_volume
  267. ? scope.row.ultrafiltration_volume
  268. : "0"
  269. }}
  270. </span>
  271. <span v-if="org_id != 10440 && org_id!=9671 && org_id!=10206">
  272. {{
  273. scope.row.ultrafiltration_volume
  274. ? scope.row.ultrafiltration_volume
  275. : ""
  276. }}
  277. </span>
  278. </template>
  279. </el-table-column>
  280. <el-table-column
  281. prop="ultrafiltration_volume"
  282. align="center"
  283. label="超滤量(L)"
  284. width="110"
  285. v-if="
  286. isShow('超滤量') &&
  287. (template_id != 6 &&
  288. template_id != 9 &&
  289. template_id != 10 &&
  290. template_id != 11 &&
  291. template_id != 12 &&
  292. template_id != 13 &&
  293. template_id != 17 &&
  294. template_id != 18 &&
  295. template_id != 19 &&
  296. template_id != 20 &&
  297. template_id != 21 &&
  298. template_id != 22 &&
  299. template_id != 23 &&
  300. template_id != 24 &&
  301. template_id != 26 &&
  302. template_id != 27 &&
  303. template_id != 29 &&
  304. template_id != 30 &&
  305. template_id != 31 &&
  306. template_id != 32 &&
  307. template_id != 34 &&
  308. template_id != 35 &&
  309. template_id != 36 &&
  310. template_id != 38 &&
  311. template_id != 39 &&
  312. template_id != 40 &&
  313. template_id != 41 &&
  314. template_id != 43 &&
  315. template_id != 44 &&
  316. template_id != 46 &&
  317. template_id != 47 &&
  318. template_id != 48 &&
  319. template_id != 51 &&
  320. template_id != 53 &&
  321. template_id != 54 &&
  322. template_id != 56 &&
  323. template_id != 60 &&
  324. template_id != 65 &&
  325. org_id!= 10210 &&
  326. org_id != 9555
  327. && org_id!=10432 && org_id!=10445
  328. && org_id!=10410 && org_id!=10495 &&
  329. org_id!=10485 && org_id!=10395 && org_id!=10375
  330. && org_id!=10480 && org_id!=10551 && org_id!=10597 && org_id!=10599)
  331. || org_id == 10387
  332. "
  333. >
  334. <template slot-scope="scope">
  335. {{
  336. scope.row.ultrafiltration_volume
  337. ? scope.row.ultrafiltration_volume
  338. : ""
  339. }}
  340. </template>
  341. </el-table-column>
  342. <el-table-column
  343. prop="displacement_flow_quantity"
  344. align="center"
  345. label="超滤率(ml/h)"
  346. width="100"
  347. v-if="
  348. isShow('超滤率') &&
  349. (template_id == 6 ||
  350. template_id == 10 ||
  351. template_id == 11 ||
  352. template_id == 12 ||
  353. template_id == 13 ||
  354. template_id == 17 ||
  355. template_id == 18 ||
  356. template_id == 19 ||
  357. template_id == 20 ||
  358. template_id == 21 ||
  359. template_id == 22 ||
  360. template_id == 23 ||
  361. template_id == 24 ||
  362. template_id == 26 ||
  363. template_id == 29 ||
  364. template_id == 30 ||
  365. template_id == 31 ||
  366. template_id == 34 ||
  367. template_id == 35 ||
  368. template_id == 38 ||
  369. template_id == 41 ||
  370. template_id == 43 ||
  371. template_id == 44 ||
  372. template_id == 46 ||
  373. template_id == 48 ||
  374. template_id == 53 ||
  375. template_id == 54 ||
  376. template_id == 56 ||
  377. template_id == 47 ||
  378. template_id == 60 ||
  379. template_id == 65 ||
  380. org_id == 10432 ||
  381. org_id == 10445 ||
  382. org_id == 10410 ||
  383. org_id == 10495 ||
  384. org_id == 10395
  385. || org_id == 10485 || org_id == 10375 || org_id ==10480 || org_id ==10551 || org_id ==10597 || org_id ==10599)
  386. && org_id!=10387
  387. "
  388. >
  389. <template slot-scope="scope">
  390. {{
  391. scope.row.ultrafiltration_rate
  392. ? scope.row.ultrafiltration_rate
  393. : ""
  394. }}
  395. </template>
  396. </el-table-column>
  397. <el-table-column
  398. prop="displacement_flow_quantity"
  399. align="center"
  400. label="超滤率(L/h)"
  401. width="100"
  402. v-if="
  403. isShow('超滤率') &&
  404. (template_id != 6 &&
  405. template_id != 10 &&
  406. template_id != 11 &&
  407. template_id != 12 &&
  408. template_id != 13 &&
  409. template_id != 17 &&
  410. template_id != 18 &&
  411. template_id != 19 &&
  412. template_id != 20 &&
  413. template_id != 21 &&
  414. template_id != 22 &&
  415. template_id != 23 &&
  416. template_id != 24 &&
  417. template_id != 26 &&
  418. template_id != 29 &&
  419. template_id != 30 &&
  420. template_id != 31 &&
  421. template_id != 34 &&
  422. template_id != 35 &&
  423. template_id != 38 &&
  424. template_id != 41 &&
  425. template_id != 43 &&
  426. template_id != 44 &&
  427. template_id != 46 &&
  428. template_id != 53 &&
  429. template_id != 54 &&
  430. template_id != 56 &&
  431. template_id != 48 &&
  432. template_id != 47 &&
  433. template_id != 60 &&
  434. template_id != 65 &&
  435. org_id!=10432 &&
  436. org_id!=10445 &&
  437. org_id!=10410 && org_id!=10495
  438. && org_id!=10485 && org_id!=10395 && org_id!=10375 && org_id!=10480 && org_id!=10551 && org_id!=10597 && org_id!=10599 ) ||
  439. org_id == 10387
  440. "
  441. >
  442. <template slot-scope="scope">
  443. {{
  444. scope.row.ultrafiltration_rate
  445. ? scope.row.ultrafiltration_rate
  446. : ""
  447. }}
  448. </template>
  449. </el-table-column>
  450. <el-table-column
  451. prop="sodium_concentration"
  452. align="center"
  453. label="钠浓度(mmol/L)"
  454. width="126"
  455. v-if="isShow('钠浓度')"
  456. >
  457. <template slot-scope="scope">
  458. {{
  459. scope.row.sodium_concentration
  460. ? scope.row.sodium_concentration
  461. : ""
  462. }}
  463. </template>
  464. </el-table-column>
  465. <el-table-column
  466. prop="dialysate_temperature"
  467. align="center"
  468. label="透析液温度(℃)"
  469. width="120"
  470. v-if="isShow('透析液温度')"
  471. >
  472. <template slot-scope="scope">
  473. {{
  474. scope.row.dialysate_temperature
  475. ? scope.row.dialysate_temperature
  476. : ""
  477. }}
  478. </template>
  479. </el-table-column>
  480. <el-table-column
  481. prop="replacement_rate"
  482. align="center"
  483. label="置换率(ml/min)"
  484. width="120"
  485. v-if="
  486. isShow('置换率') &&
  487. (template_id == 6 ||
  488. template_id == 10 ||
  489. template_id == 11 ||
  490. template_id == 20 ||
  491. template_id == 26 ||
  492. template_id == 29 ||
  493. template_id == 48 ||
  494. template_id == 53 ||
  495. template_id == 54 ||
  496. template_id == 56 ||
  497. org_id ==10432 ||
  498. org_id ==10445 ||
  499. org_id ==10410 ||
  500. org_id == 10395
  501. )
  502. "
  503. >
  504. <template slot-scope="scope">
  505. {{ scope.row.replacement_rate ? scope.row.replacement_rate : "" }}
  506. </template>
  507. </el-table-column>
  508. <el-table-column
  509. prop="replacement_rate"
  510. align="center"
  511. label="置换率(L/h)"
  512. width="120"
  513. v-if="
  514. isShow('置换率') &&
  515. template_id != 6 &&
  516. template_id != 10 &&
  517. template_id != 11 &&
  518. template_id != 20 &&
  519. template_id != 26 &&
  520. template_id != 29 &&
  521. template_id != 48 &&
  522. template_id != 53 &&
  523. template_id != 54 &&
  524. template_id != 56 &&
  525. org_id !=10432 &&
  526. org_id !=10445 &&
  527. org_id!=10395 &&
  528. org_id !=10410
  529. "
  530. >
  531. <template slot-scope="scope">
  532. {{ scope.row.replacement_rate ? scope.row.replacement_rate : "" }}
  533. </template>
  534. </el-table-column>
  535. <el-table-column
  536. prop="displacement_quantity"
  537. align="center"
  538. label="置换量(ml/h)"
  539. width="100"
  540. v-if="isShow('置换量') && (template_id == 43 || template_id == 48)"
  541. >
  542. <template slot-scope="scope">
  543. {{
  544. scope.row.displacement_quantity
  545. ? scope.row.displacement_quantity
  546. : ""
  547. }}
  548. </template>
  549. </el-table-column>
  550. <el-table-column
  551. prop="displacement_quantity"
  552. align="center"
  553. label="置换量(ml)"
  554. width="100"
  555. v-if="
  556. isShow('置换量') &&
  557. ((template_id == 6 &&
  558. org_id != 9919 &&
  559. org_id != 10191 &&
  560. org_id!=10478 &&
  561. org_id!=10551 &&
  562. template_id != 43 &&
  563. template_id != 47 &&
  564. org_id!=10558 &&
  565. org_id!=10517) ||
  566. org_id == 9779 ||
  567. template_id == 11 ||
  568. template_id == 20 ||
  569. template_id == 26 ||
  570. template_id == 29 ||
  571. template_id == 53 ||
  572. template_id == 54 ||
  573. template_id == 56 ||
  574. template_id == 48 ||
  575. org_id == 10340 ||
  576. org_id == 10432 ||
  577. org_id == 10445 ||
  578. org_id == 10395)
  579. "
  580. >
  581. <template slot-scope="scope">
  582. {{
  583. scope.row.displacement_quantity
  584. ? scope.row.displacement_quantity
  585. : ""
  586. }}
  587. </template>
  588. </el-table-column>
  589. <el-table-column
  590. prop="displacement_quantity"
  591. align="center"
  592. label="置换量(L)"
  593. width="100"
  594. v-if="
  595. isShow('置换量') &&
  596. (template_id != 6 || org_id == 9919 || org_id == 10191 || org_id == 10478 || org_id == 10551 || org_id ==10558 || org_id ==10517) &&
  597. template_id != 9779 &&
  598. template_id != 11 &&
  599. template_id != 20 &&
  600. template_id != 26 &&
  601. template_id != 29 &&
  602. template_id != 43 &&
  603. template_id != 53 &&
  604. template_id != 54 &&
  605. template_id != 56 &&
  606. template_id != 48 &&
  607. org_id !=10340 &&
  608. org_id !=10432 &&
  609. org_id !=10445 &&
  610. org_id!=10395
  611. "
  612. >
  613. <template slot-scope="scope">
  614. {{
  615. scope.row.displacement_quantity
  616. ? scope.row.displacement_quantity
  617. : ""
  618. }}
  619. </template>
  620. </el-table-column>
  621. <el-table-column
  622. prop="displacement_quantity"
  623. align="center"
  624. label="SpO₂(%)"
  625. width="100"
  626. v-if="
  627. isShow('SpO₂') &&
  628. template_id != 6 &&
  629. template_id != 10 &&
  630. template_id != 11
  631. "
  632. >
  633. <template slot-scope="scope">
  634. {{
  635. scope.row.blood_oxygen_saturation
  636. ? scope.row.blood_oxygen_saturation
  637. : "/"
  638. }}
  639. </template>
  640. </el-table-column>
  641. <el-table-column
  642. prop="displacement_flow_quantity"
  643. align="center"
  644. label="电导度(mS/m)"
  645. width="100"
  646. v-if="isShow('电导度')"
  647. >
  648. <template slot-scope="scope">
  649. {{ scope.row.conductivity ? scope.row.conductivity : "" }}
  650. </template>
  651. </el-table-column>
  652. <el-table-column
  653. prop="displacement_flow_quantity"
  654. align="center"
  655. label="置换液流量(ml/h)"
  656. width="100"
  657. v-if="isShow('置换液流量') && template_id != 27 && template_id != 60"
  658. >
  659. <template slot-scope="scope">
  660. {{
  661. scope.row.displacement_flow_quantity
  662. ? scope.row.displacement_flow_quantity
  663. : ""
  664. }}
  665. </template>
  666. </el-table-column>
  667. <el-table-column
  668. prop="displacement_flow_quantity"
  669. align="center"
  670. label="置换液流量(ml/min)"
  671. width="100"
  672. v-if="isShow('置换液流量') && (template_id == 27 || template_id == 60)"
  673. >
  674. <template slot-scope="scope">
  675. {{
  676. scope.row.displacement_flow_quantity
  677. ? scope.row.displacement_flow_quantity
  678. : ""
  679. }}
  680. </template>
  681. </el-table-column>
  682. <el-table-column
  683. prop="displacement_flow_quantity"
  684. align="center"
  685. label="透析液流量(ml/h)"
  686. width="100"
  687. v-if="isShow('透析液流量')"
  688. >
  689. <template slot-scope="scope">
  690. {{ scope.row.dialysate_flow ? scope.row.dialysate_flow : "" }}
  691. </template>
  692. </el-table-column>
  693. <el-table-column
  694. prop="heparin"
  695. align="center"
  696. label="肝素用量余量(ml)"
  697. width="140"
  698. v-if="isShow('肝素用量余量')"
  699. >
  700. </el-table-column>
  701. <el-table-column
  702. prop="heparin_amount"
  703. align="center"
  704. label="肝素量(mg)"
  705. width="140"
  706. v-if="isShow('肝素量')"
  707. >
  708. </el-table-column>
  709. <el-table-column
  710. prop="heparin"
  711. align="center"
  712. label="抗凝剂"
  713. width="140"
  714. v-if="isShow('抗凝剂')"
  715. >
  716. <template slot-scope="scope">
  717. <span v-if="scope.row.monitor_anticoagulant == 1">无肝素</span>
  718. <span v-if="scope.row.monitor_anticoagulant == 2">普通肝素</span>
  719. <span v-if="scope.row.monitor_anticoagulant == 3"
  720. >低分子肝素</span
  721. >
  722. <span v-if="scope.row.monitor_anticoagulant == 4">阿加曲班</span>
  723. <span v-if="scope.row.monitor_anticoagulant == 5">枸橼酸钠</span>
  724. <span v-if="scope.row.monitor_anticoagulant == 6"
  725. >低分子肝素钙</span
  726. >
  727. <span v-if="scope.row.monitor_anticoagulant == 7"
  728. >低分子肝素钠</span
  729. >
  730. <span v-if="scope.row.monitor_anticoagulant == 8">依诺肝素</span>
  731. <span v-if="scope.row.monitor_anticoagulant == 9">达肝素</span>
  732. <span v-if="scope.row.monitor_anticoagulant == 12">无抗凝剂</span>
  733. <span v-if="scope.row.monitor_anticoagulant == 13">那屈肝素钙</span>
  734. <span v-if="scope.row.monitor_anticoagulant_value != ''"
  735. >({{
  736. scope.row.monitor_anticoagulant_value
  737. ? scope.row.monitor_anticoagulant_value
  738. : ""
  739. }})</span
  740. >
  741. </template>
  742. </el-table-column>
  743. <el-table-column
  744. prop="heparin"
  745. align="center"
  746. label="血压监测部位"
  747. width="140"
  748. v-if="isShow('血压监测部位')"
  749. >
  750. <template slot-scope="scope">
  751. {{ getBloodPressure(scope.row.blood_pressure_monitoring_site) }}
  752. </template>
  753. </el-table-column>
  754. <el-table-column
  755. prop="heparin"
  756. align="center"
  757. label="并发症"
  758. width="140"
  759. v-if="isShow('并发症')"
  760. >
  761. <template slot-scope="scope">
  762. {{ getComplication(scope.row.complication) }}
  763. </template>
  764. </el-table-column>
  765. <el-table-column
  766. prop="displacement_flow_quantity"
  767. align="center"
  768. label="累计血容量(ml)"
  769. width="100"
  770. v-if="isShow('累计血容量') && template_id != 41 && org_id != 9538 && org_id != 9671 && org_id != 10340 "
  771. >
  772. <template slot-scope="scope">
  773. {{ scope.row.accumulated_blood_volume }}
  774. </template>
  775. </el-table-column>
  776. <el-table-column
  777. prop="displacement_flow_quantity"
  778. align="center"
  779. label="累计血容量(L)"
  780. width="100"
  781. v-if="isShow('累计血容量') && (template_id == 41 || org_id == 9538) && org_id!=10340 && org_id!=9671"
  782. >
  783. <template slot-scope="scope">
  784. {{ scope.row.accumulated_blood_volume }}
  785. </template>
  786. </el-table-column>
  787. <el-table-column
  788. prop="heparin"
  789. align="center"
  790. label="血容量(L)"
  791. width="140"
  792. v-if="isShow('血容量')"
  793. >
  794. <template slot-scope="scope">
  795. {{ scope.row.accumulated_blood_volume }}
  796. </template>
  797. </el-table-column>
  798. <el-table-column
  799. prop="heparin"
  800. align="center"
  801. label="血温监测"
  802. width="140"
  803. v-if="isShow('血温监测')"
  804. >
  805. <template slot-scope="scope">
  806. {{ scope.row.blood_temperature }}
  807. </template>
  808. </el-table-column>
  809. <el-table-column
  810. prop="heparin"
  811. align="center"
  812. label="尿素监测"
  813. width="140"
  814. v-if="isShow('尿素监测')"
  815. >
  816. <template slot-scope="scope">
  817. {{ scope.row.urea_monitoring }}
  818. </template>
  819. </el-table-column>
  820. <el-table-column
  821. prop="heparin"
  822. align="center"
  823. label="血浓量"
  824. width="140"
  825. v-if="isShow('血浓量')"
  826. >
  827. <template slot-scope="scope">
  828. {{ scope.row.blood_thickness }}
  829. </template>
  830. </el-table-column>
  831. <el-table-column
  832. prop="heparin"
  833. align="center"
  834. label="血压监测"
  835. width="140"
  836. v-if="isShow('血压监测')"
  837. >
  838. <template slot-scope="scope">
  839. {{ scope.row.blood_monitor }}
  840. </template>
  841. </el-table-column>
  842. <el-table-column
  843. prop="heparin"
  844. align="center"
  845. label="肝素量(mg)"
  846. width="140"
  847. v-if="isShow('肝素量')"
  848. >
  849. <template slot-scope="scope">
  850. {{ scope.row.heparin_amount }}
  851. </template>
  852. </el-table-column>
  853. <el-table-column
  854. prop="heparin"
  855. align="center"
  856. label="脱水(L)"
  857. width="140"
  858. v-if="isShow('脱水')"
  859. >
  860. <template slot-scope="scope">
  861. {{ scope.row.dehydration }}
  862. </template>
  863. </el-table-column>
  864. <el-table-column
  865. prop="heparin"
  866. align="center"
  867. label="置换液速度(ml/h)"
  868. width="140"
  869. v-if="isShow('置换液速度')"
  870. >
  871. <template slot-scope="scope">
  872. {{ scope.row.replacement_speed }}
  873. </template>
  874. </el-table-column>
  875. <el-table-column
  876. prop="heparin"
  877. align="center"
  878. label="碳酸氢钠用量(ml)"
  879. width="140"
  880. v-if="isShow('碳酸氢钠用量')"
  881. >
  882. <template slot-scope="scope">
  883. {{ scope.row.dicarbonate }}
  884. </template>
  885. </el-table-column>
  886. <el-table-column
  887. prop="heparin"
  888. align="center"
  889. label="滤前压(mmHg)"
  890. width="140"
  891. v-if="isShow('滤前压')"
  892. >
  893. <template slot-scope="scope">
  894. {{ scope.row.filter_pressure }}
  895. </template>
  896. </el-table-column>
  897. <el-table-column
  898. prop="heparin"
  899. align="center"
  900. label="KT/V"
  901. width="140"
  902. v-if="
  903. isShow('KT/V') &&
  904. (org_id == 9987 || org_id == 10215 || org_id == 9800 || org_id == 9598 || org_id ==10517)
  905. "
  906. >
  907. <template slot-scope="scope">
  908. {{ scope.row.ktv ? scope.row.ktv : "" }}
  909. </template>
  910. </el-table-column>
  911. <el-table-column
  912. align="center"
  913. label="病情变化"
  914. width="130"
  915. v-if="isShow('病情变化')"
  916. >
  917. <template slot-scope="scope">
  918. {{scope.row.symptom}}
  919. <span v-if="(scope.$index == monitors.length - 1) && (org_id == 0 || org_id == 9671 || org_id == 10340)">累计血容量:{{scope.row.accumulated_blood_volume }}L</span>
  920. </template>
  921. </el-table-column>
  922. <el-table-column
  923. prop="dispose"
  924. align="center"
  925. label="处理"
  926. width="130"
  927. v-if="isShow('处理')"
  928. >
  929. </el-table-column>
  930. <el-table-column
  931. prop="result"
  932. align="center"
  933. label="结果"
  934. width="130"
  935. v-if="isShow('结果')"
  936. >
  937. </el-table-column>
  938. </el-table>
  939. </div>
  940. <!--<div v-show="edit">-->
  941. <el-form v-show="edit" ref="form" :model="form" label-width="130px">
  942. <el-row :gutter="20">
  943. <el-col :span="8" v-if="isShow('监测时间')">
  944. <el-form-item label="监测时间:" :prop="isName('监测时间')"
  945. :rules="isCheckmust('监测时间')">
  946. <!-- {{ monitor_date_str }}
  947. <el-time-picker v-model="form.monitoring_time" :clearable="false" arrow-control :picker-options="{format: 'HH:mm'}" prefix-icon="" value-format="HH:mm" style="width: 60%;">
  948. </el-time-picker> -->
  949. <el-date-picker
  950. v-model="form.operate_time"
  951. type="datetime"
  952. prefix-icon=""
  953. style="width: 100%"
  954. format="yyyy-MM-dd HH:mm"
  955. value-format="timestamp"
  956. ></el-date-picker>
  957. </el-form-item>
  958. </el-col>
  959. <el-col :span="8" v-if="isShow('体温')">
  960. <el-form-item label="体温(℃):" :prop="isName('体温')"
  961. :rules="isCheckmust('体温')">
  962. <el-input v-model="form.temperature"></el-input>
  963. </el-form-item>
  964. </el-col>
  965. <el-col :span="8" v-if="isShow('收缩压')">
  966. <el-form-item label="收缩压(mmHg):" :prop="isName('收缩压')"
  967. :rules="isCheckmust('收缩压')">
  968. <el-input v-model="form.systolic_bp"></el-input>
  969. </el-form-item>
  970. </el-col>
  971. <el-col :span="8" v-if="isShow('舒张压')">
  972. <el-form-item label="舒张压(mmHg):" :prop="isName('舒张压')"
  973. :rules="isCheckmust('舒张压')">
  974. <el-input v-model="form.diastolic_bp"></el-input>
  975. </el-form-item>
  976. </el-col>
  977. <el-col :span="8" v-if="isShow('脉搏')">
  978. <el-form-item label="脉搏(次/分):" :prop="isName('脉搏')"
  979. :rules="isCheckmust('脉搏')">
  980. <el-input v-model="form.pulse_frequency"></el-input>
  981. </el-form-item>
  982. </el-col>
  983. <el-col :span="8" v-if="isShow('呼吸频率')">
  984. <el-form-item label="呼吸频率(次/分):" :prop="isName('呼吸频率')"
  985. :rules="isCheckmust('呼吸频率')">
  986. <el-input v-model="form.breathing_rated"></el-input>
  987. </el-form-item>
  988. </el-col>
  989. <el-col :span="8" v-if="isShow('静脉压')">
  990. <el-form-item
  991. v-if="form.venous_pressure_type == 2"
  992. label="静脉压(kpa):"
  993. :prop="isName('静脉压')"
  994. :rules="isCheckmust('静脉压')"
  995. >
  996. <el-input
  997. style="width: 140px"
  998. v-model="form.venous_pressure"
  999. ></el-input>
  1000. <el-button
  1001. size="mini"
  1002. type="primary"
  1003. @click="venousPressureChangeOne"
  1004. >切换</el-button
  1005. >
  1006. </el-form-item>
  1007. <el-form-item v-else label="静脉压(mmHg):" :prop="isName('静脉压')"
  1008. :rules="isCheckmust('静脉压')">
  1009. <el-input
  1010. style="width: 140px"
  1011. v-model="form.venous_pressure"
  1012. ></el-input>
  1013. <el-button
  1014. size="mini"
  1015. type="primary"
  1016. @click="venousPressureChangeOne"
  1017. >切换</el-button
  1018. >
  1019. </el-form-item>
  1020. </el-col>
  1021. <el-col :span="8" v-if="isShow('动脉压')">
  1022. <el-form-item
  1023. v-if="form.arterial_pressure_type == 2"
  1024. label="动脉压(kpa):"
  1025. :prop="isName('动脉压')"
  1026. :rules="isCheckmust('动脉压')"
  1027. >
  1028. <el-input
  1029. style="width: 140px"
  1030. v-model="form.arterial_pressure"
  1031. ></el-input>
  1032. <el-button
  1033. size="mini"
  1034. type="primary"
  1035. @click="venousPressureChangeThree"
  1036. >切换</el-button
  1037. >
  1038. </el-form-item>
  1039. <el-form-item v-else label="动脉压(mmHg):" :prop="isName('动脉压')"
  1040. :rules="isCheckmust('动脉压')">
  1041. <el-input
  1042. style="width: 140px"
  1043. v-model="form.arterial_pressure"
  1044. ></el-input>
  1045. <el-button
  1046. size="mini"
  1047. type="primary"
  1048. @click="venousPressureChangeThree"
  1049. >切换</el-button
  1050. >
  1051. </el-form-item>
  1052. </el-col>
  1053. <el-col :span="8" v-if="isShow('血流量')">
  1054. <el-form-item label="血流量(ml/min):" :prop="isName('血流量')"
  1055. :rules="isCheckmust('血流量')">
  1056. <el-input v-model="form.blood_flow_volume"></el-input>
  1057. </el-form-item>
  1058. </el-col>
  1059. <el-col :span="8" v-if="isShow('跨膜压')">
  1060. <el-form-item
  1061. v-if="form.transmembrane_pressure_type == 2"
  1062. label="跨膜压(kpa):"
  1063. :prop="isName('跨膜压')"
  1064. :rules="isCheckmust('跨膜压')"
  1065. >
  1066. <el-input
  1067. style="width: 140px"
  1068. v-model="form.transmembrane_pressure"
  1069. ></el-input>
  1070. <el-button
  1071. size="mini"
  1072. type="primary"
  1073. @click="venousPressureChangeTwo"
  1074. >切换</el-button
  1075. >
  1076. </el-form-item>
  1077. <el-form-item v-else label="跨膜压(mmHg):" :prop="isName('跨膜压')"
  1078. :rules="isCheckmust('跨膜压')">
  1079. <el-input
  1080. style="width: 140px"
  1081. v-model="form.transmembrane_pressure"
  1082. ></el-input>
  1083. <el-button
  1084. size="mini"
  1085. type="primary"
  1086. @click="venousPressureChangeTwo"
  1087. >切换</el-button
  1088. >
  1089. </el-form-item>
  1090. </el-col>
  1091. <el-col
  1092. :span="8"
  1093. v-if="
  1094. isShow('超滤率') &&
  1095. (template_id == 6 ||
  1096. template_id == 10 ||
  1097. template_id == 11 ||
  1098. template_id == 12 ||
  1099. template_id == 13 ||
  1100. template_id == 17 ||
  1101. template_id == 18 ||
  1102. template_id == 19 ||
  1103. template_id == 20 ||
  1104. template_id == 21 ||
  1105. template_id == 22 ||
  1106. template_id == 23 ||
  1107. template_id == 24 ||
  1108. template_id == 26 ||
  1109. template_id == 29 ||
  1110. template_id == 30 ||
  1111. template_id == 31 ||
  1112. template_id == 34 ||
  1113. template_id == 35 ||
  1114. template_id == 38 ||
  1115. template_id == 41 ||
  1116. template_id == 43 ||
  1117. template_id == 44 ||
  1118. template_id == 46 ||
  1119. template_id == 48 ||
  1120. template_id == 53 ||
  1121. template_id == 54 ||
  1122. template_id == 56 ||
  1123. template_id == 47 ||
  1124. template_id == 60 ||
  1125. template_id == 65 ||
  1126. org_id== 10432 ||
  1127. org_id== 10445 ||
  1128. org_id== 10410 ||
  1129. org_id == 10485 || org_id == 10375 || org_id == 10480 || org_id == 10551) &&
  1130. org_id!=10387
  1131. "
  1132. >
  1133. <el-form-item label="超滤率(ml/h)" :prop="isName('超滤率')"
  1134. :rules="isCheckmust('超滤率')">
  1135. <el-input v-model="form.ultrafiltration_rate"></el-input>
  1136. </el-form-item>
  1137. </el-col>
  1138. <el-col
  1139. :span="8"
  1140. v-if="
  1141. isShow('超滤率') &&
  1142. (template_id != 6 &&
  1143. template_id != 10 &&
  1144. template_id != 11 &&
  1145. template_id != 12 &&
  1146. template_id != 13 &&
  1147. template_id != 17 &&
  1148. template_id != 18 &&
  1149. template_id != 19 &&
  1150. template_id != 20 &&
  1151. template_id != 21 &&
  1152. template_id != 22 &&
  1153. template_id != 23 &&
  1154. template_id != 24 &&
  1155. template_id != 26 &&
  1156. template_id != 29 &&
  1157. template_id != 30 &&
  1158. template_id != 31 &&
  1159. template_id != 34 &&
  1160. template_id != 35 &&
  1161. template_id != 38 &&
  1162. template_id != 41 &&
  1163. template_id != 43 &&
  1164. template_id != 44 &&
  1165. template_id != 46 &&
  1166. template_id != 48 &&
  1167. template_id != 53 &&
  1168. template_id != 54 &&
  1169. template_id != 56 &&
  1170. template_id != 47 &&
  1171. template_id != 60 &&
  1172. template_id != 65 &&
  1173. org_id!=10432 &&
  1174. org_id!=10445 &&
  1175. org_id!=10410 &&
  1176. org_id!=10485 &&
  1177. org_id!=10375 && org_id!=10480 && org_id!=10551)
  1178. || org_id == 10387
  1179. "
  1180. >
  1181. <el-form-item label="超滤率(L/h)" :prop="isName('超滤率')"
  1182. :rules="isCheckmust('超滤率')">
  1183. <el-input v-model="form.ultrafiltration_rate"></el-input>
  1184. </el-form-item>
  1185. </el-col>
  1186. <el-col
  1187. :span="8"
  1188. v-if="
  1189. isShow('超滤量') &&
  1190. (template_id == 6 ||
  1191. template_id == 9 ||
  1192. template_id == 10 ||
  1193. template_id == 11 ||
  1194. template_id == 12 ||
  1195. template_id == 13 ||
  1196. template_id == 17 ||
  1197. template_id == 18 ||
  1198. template_id == 19 ||
  1199. template_id == 20 ||
  1200. template_id == 21 ||
  1201. template_id == 22 ||
  1202. template_id == 23 ||
  1203. template_id == 24 ||
  1204. template_id == 26 ||
  1205. template_id == 27 ||
  1206. template_id == 29 ||
  1207. template_id == 30 ||
  1208. template_id == 31 ||
  1209. template_id == 32 ||
  1210. template_id == 34 ||
  1211. template_id == 35 ||
  1212. template_id == 36 ||
  1213. template_id == 38 ||
  1214. template_id == 41 ||
  1215. template_id == 43 ||
  1216. template_id == 44 ||
  1217. template_id == 46 ||
  1218. template_id == 47 ||
  1219. template_id == 48 ||
  1220. template_id == 51 ||
  1221. template_id == 53 ||
  1222. template_id == 54 ||
  1223. template_id == 56 ||
  1224. template_id == 60 ||
  1225. template_id == 65 ||
  1226. org_id == 10210 ||
  1227. org_id == 9555 ||
  1228. org_id == 10340 ||
  1229. org_id == 10432 ||
  1230. org_id == 10445 ||
  1231. org_id == 10410 ||
  1232. org_id == 10495 ||
  1233. org_id == 10485 ||
  1234. org_id == 10395 ||
  1235. org_id == 10375 ||
  1236. org_id == 10480 ||
  1237. org_id == 10551 ||
  1238. org_id == 10597||
  1239. org_id == 10599)
  1240. && org_id!=10387
  1241. "
  1242. >
  1243. <el-form-item label="超滤量(ml):" :prop="isName('超滤量')"
  1244. :rules="isCheckmust('超滤量')">
  1245. <el-input v-model="form.ultrafiltration_volume"></el-input>
  1246. </el-form-item>
  1247. </el-col>
  1248. <el-col
  1249. :span="8"
  1250. v-if="
  1251. isShow('超滤量') &&
  1252. (template_id != 6 &&
  1253. template_id != 9 &&
  1254. template_id != 10 &&
  1255. template_id != 11 &&
  1256. template_id != 12 &&
  1257. template_id != 13 &&
  1258. template_id != 17 &&
  1259. template_id != 18 &&
  1260. template_id != 19 &&
  1261. template_id != 20 &&
  1262. template_id != 21 &&
  1263. template_id != 22 &&
  1264. template_id != 23 &&
  1265. template_id != 24 &&
  1266. template_id != 26 &&
  1267. template_id != 27 &&
  1268. template_id != 29 &&
  1269. template_id != 30 &&
  1270. template_id != 31 &&
  1271. template_id != 32 &&
  1272. template_id != 34 &&
  1273. template_id != 35 &&
  1274. template_id != 36 &&
  1275. template_id != 38 &&
  1276. template_id != 41 &&
  1277. template_id != 43 &&
  1278. template_id != 44 &&
  1279. template_id != 46 &&
  1280. template_id != 47 &&
  1281. template_id != 51 &&
  1282. template_id == 48 &&
  1283. template_id == 53 &&
  1284. template_id == 54 &&
  1285. template_id == 56 &&
  1286. template_id == 60 &&
  1287. template_id == 65 &&
  1288. org_id != 10210 &&
  1289. org_id != 10340 &&
  1290. org_id != 9555 &&
  1291. org_id!=10432 &&
  1292. org_id!=10445 &&
  1293. org_id!=10410 &&
  1294. org_id!=10495 &&
  1295. org_id!=10485 &&
  1296. org_id!=10395 &&
  1297. org_id!=10375 &&
  1298. org_id!=10480 &&
  1299. org_id!=10551 &&
  1300. org_id!=10597 &&
  1301. org_id!=10599
  1302. )
  1303. || org_id == 10387
  1304. "
  1305. >
  1306. <el-form-item label="超滤量(L):" :prop="isName('超滤量')"
  1307. :rules="isCheckmust('超滤量')">
  1308. <el-input v-model="form.ultrafiltration_volume"></el-input>
  1309. </el-form-item>
  1310. </el-col>
  1311. <el-col :span="8" v-if="isShow('钠浓度')">
  1312. <el-form-item label="钠浓度(mmol/L):" :prop="isName('钠浓度')"
  1313. :rules="isCheckmust('钠浓度')">
  1314. <el-input v-model="form.sodium_concentration"></el-input>
  1315. </el-form-item>
  1316. </el-col>
  1317. <!-- </el-row>
  1318. <el-row :gutter="20"> -->
  1319. <el-col :span="8" v-if="isShow('透析液温度')">
  1320. <el-form-item label="透析液温度(℃):" :prop="isName('透析液温度')"
  1321. :rules="isCheckmust('透析液温度')">
  1322. <el-input v-model="form.dialysate_temperature"></el-input>
  1323. </el-form-item>
  1324. </el-col>
  1325. <el-col
  1326. :span="8"
  1327. v-if="
  1328. (isShow('置换率') &&
  1329. template_id != 6 &&
  1330. template_id != 10 &&
  1331. template_id != 11 &&
  1332. template_id != 20 &&
  1333. template_id != 26 &&
  1334. template_id != 29 &&
  1335. template_id != 46 &&
  1336. template_id != 48 &&
  1337. template_id != 54 &&
  1338. template_id != 56 &&
  1339. template_id != 53 &&
  1340. org_id!=10432 &&
  1341. org_id!=10445 &&
  1342. org_id!=10410 &&
  1343. org_id!=10395)
  1344. || org_id ==10558
  1345. "
  1346. >
  1347. <el-form-item label="置换率(L/h):" :prop="isName('置换率')"
  1348. :rules="isCheckmust('置换率')">
  1349. <el-input v-model="form.replacement_rate"></el-input>
  1350. </el-form-item>
  1351. </el-col>
  1352. <el-col
  1353. :span="8"
  1354. v-if="
  1355. isShow('置换率') &&
  1356. (template_id == 6 ||
  1357. template_id == 10 ||
  1358. template_id == 11 ||
  1359. template_id == 20 ||
  1360. template_id == 26 ||
  1361. template_id == 29 ||
  1362. template_id == 46 ||
  1363. template_id == 53 ||
  1364. template_id == 54 ||
  1365. template_id == 56 ||
  1366. template_id == 48 ||
  1367. org_id==10432 ||
  1368. org_id!=10445 ||
  1369. org_id!=10410 ||
  1370. org_id!=10395) && org_id !=10558
  1371. "
  1372. >
  1373. <el-form-item label="置换率(ml/min):" :prop="isName('置换率')"
  1374. :rules="isCheckmust('置换率')">
  1375. <el-input v-model="form.replacement_rate"></el-input>
  1376. </el-form-item>
  1377. </el-col>
  1378. <el-col :span="8" v-if="isShow('置换量') && template_id == 43">
  1379. <el-form-item label="置换量(ml/h):" :prop="isName('置换量')"
  1380. :rules="isCheckmust('置换量')">
  1381. <el-input v-model="form.displacement_quantity"></el-input>
  1382. </el-form-item>
  1383. </el-col>
  1384. <el-col
  1385. :span="8"
  1386. v-if="
  1387. isShow('置换量') &&
  1388. (template_id != 6 || org_id == 9919 || org_id == 10191 || org_id ==10551 || org_id ==10558 || org_id ==10346) &&
  1389. org_id != 9779 &&
  1390. template_id != 11 &&
  1391. template_id != 20 &&
  1392. template_id != 26 &&
  1393. template_id != 29 &&
  1394. template_id != 43 &&
  1395. template_id != 46 &&
  1396. template_id != 53 &&
  1397. template_id != 54 &&
  1398. template_id != 56 &&
  1399. template_id != 48 &&
  1400. org_id!=10340 &&
  1401. org_id!=10432 &&
  1402. org_id!=10445 &&
  1403. org_id!=10395
  1404. "
  1405. >
  1406. <el-form-item label="置换量(L):" :prop="isName('置换量')"
  1407. :rules="isCheckmust('置换量')">
  1408. <el-input v-model="form.displacement_quantity"></el-input>
  1409. </el-form-item>
  1410. </el-col>
  1411. <el-col
  1412. :span="8"
  1413. v-if="
  1414. isShow('置换量') &&
  1415. ((template_id == 6 &&
  1416. org_id != 9919 &&
  1417. org_id != 10191 &&
  1418. org_id != 10551 &&
  1419. template_id != 43 && org_id!=10558 && org_id!=10346) ||
  1420. org_id == 9779 ||
  1421. template_id == 11 ||
  1422. template_id == 20 ||
  1423. template_id == 26 ||
  1424. template_id == 29 ||
  1425. template_id == 46 ||
  1426. template_id == 53 ||
  1427. template_id == 54 ||
  1428. template_id == 56 ||
  1429. template_id == 48 ||
  1430. org_id!=10340 ||
  1431. org_id ==10432 ||
  1432. org_id ==10445 ||
  1433. org_id == 10395)
  1434. "
  1435. >
  1436. <el-form-item label="置换量(ml):" :prop="isName('置换量')"
  1437. :rules="isCheckmust('置换量')">
  1438. <el-input v-model="form.displacement_quantity"></el-input>
  1439. </el-form-item>
  1440. </el-col>
  1441. <el-col :span="8" v-if="isShow('电导度')">
  1442. <el-form-item label="电导度(mS/m):" :prop="isName('电导度')"
  1443. :rules="isCheckmust('电导度')">
  1444. <el-input v-model="form.conductivity"></el-input>
  1445. </el-form-item>
  1446. </el-col>
  1447. <el-col :span="8" v-if="isShow('置换液流量') && template_id != 27 && template_id != 60">
  1448. <el-form-item label="置换液流量(ml/h):" :prop="isName('置换液流量')"
  1449. :rules="isCheckmust('置换液流量')">
  1450. <el-input v-model="form.displacement_flow_quantity"></el-input>
  1451. </el-form-item>
  1452. </el-col>
  1453. <el-col :span="8" v-if="isShow('置换液流量') && (template_id ==27 || template_id == 60)">
  1454. <el-form-item label="置换液流量(ml/min):" :prop="isName('置换液流量')"
  1455. :rules="isCheckmust('置换液流量')">
  1456. <el-input v-model="form.displacement_flow_quantity"></el-input>
  1457. </el-form-item>
  1458. </el-col>
  1459. <el-col :span="8" v-if="isShow('透析液流量')">
  1460. <el-form-item label="透析液流量(ml/h):" :prop="isName('透析液流量')"
  1461. :rules="isCheckmust('透析液流量')">
  1462. <el-input v-model="form.dialysate_flow"></el-input>
  1463. </el-form-item>
  1464. </el-col>
  1465. <el-col :span="8" v-if="isShow('SpO₂')">
  1466. <el-form-item label="SpO₂(%):" :prop="isName('SpO₂')"
  1467. :rules="isCheckmust('SpO₂')">
  1468. <el-input v-model="form.blood_oxygen_saturation"></el-input>
  1469. </el-form-item>
  1470. </el-col>
  1471. <el-col :span="8" v-if="isShow('血糖')">
  1472. <el-form-item label="血糖(mmol/L):" :prop="isName('血糖')"
  1473. :rules="isCheckmust('血糖')">
  1474. <el-input v-model="form.blood_sugar"></el-input>
  1475. </el-form-item>
  1476. </el-col>
  1477. <el-col :span="8" v-if="isShow('肝素用量余量')">
  1478. <el-form-item label="肝素用量余量(ml):" :prop="isName('肝素用量余量')"
  1479. :rules="isCheckmust('肝素用量余量')">
  1480. <el-input v-model="form.heparin"></el-input>
  1481. </el-form-item>
  1482. </el-col>
  1483. <el-col :span="8" v-if="isShow('肝素量')">
  1484. <el-form-item label="肝素量(mg):" :prop="isName('肝素量')"
  1485. :rules="isCheckmust('肝素量')">
  1486. <el-input v-model="form.heparin_amount"></el-input>
  1487. </el-form-item>
  1488. </el-col>
  1489. <el-col :span="8" v-if="isShow('抗凝剂')">
  1490. <el-form-item label="抗凝剂:" :prop="isName('抗凝剂')"
  1491. :rules="isCheckmust('抗凝剂')">
  1492. <div style="display: flex">
  1493. <el-select
  1494. v-model="form.monitor_anticoagulant"
  1495. placeholder="请选择"
  1496. style="width: 50%"
  1497. >
  1498. <el-option
  1499. v-for="(item, index) in anticoagulantsConfit"
  1500. :label="item.name"
  1501. :key="index + 'e'"
  1502. :value="item.id"
  1503. ></el-option>
  1504. </el-select>
  1505. <el-input
  1506. v-model="form.monitor_anticoagulant_value"
  1507. style="width: 49%; margin-left: 10px"
  1508. ></el-input>
  1509. </div>
  1510. </el-form-item>
  1511. </el-col>
  1512. <el-col :span="24" v-if="isShow('拒测血压')">
  1513. <el-form-item label="拒测血压:" :prop="isName('拒测血压')">
  1514. <el-select v-model="form.is_pressure" placeholder="请选择">
  1515. <el-option
  1516. v-for="item in pressureList"
  1517. :key="item.id"
  1518. :label="item.name"
  1519. :value="item.name">
  1520. </el-option>
  1521. </el-select>
  1522. </el-form-item>
  1523. </el-col>
  1524. <el-col :span="8" v-if="isShow('血压监测部位')">
  1525. <el-form-item label="血压监测部位:" :prop="isName('血压监测部位')"
  1526. :rules="isCheckmust('血压监测部位')">
  1527. <div style="display: flex">
  1528. <el-select
  1529. v-model="form.blood_pressure_monitoring_site"
  1530. placeholder="请选择"
  1531. style="width: 50%"
  1532. >
  1533. <el-option
  1534. v-for="(item, index) in bloodPressureMmonitoringSite"
  1535. :label="item.name"
  1536. :key="index + 'e'"
  1537. :value="item.id"
  1538. ></el-option>
  1539. </el-select>
  1540. </div>
  1541. </el-form-item>
  1542. </el-col>
  1543. <el-col :span="8" v-if="isShow('并发症')">
  1544. <el-form-item label="并发症" :prop="isName('并发症')"
  1545. :rules="isCheckmust('并发症')">
  1546. <div style="display: flex">
  1547. <el-select
  1548. v-model="form.complication"
  1549. placeholder="请选择"
  1550. style="width: 50%"
  1551. >
  1552. <el-option
  1553. v-for="(item, index) in complicationList"
  1554. :label="item.name"
  1555. :key="index + 'e'"
  1556. :value="item.id"
  1557. ></el-option>
  1558. </el-select>
  1559. </div>
  1560. </el-form-item>
  1561. </el-col>
  1562. <el-col :span="8" v-if="isShow('累计血容量') && (template_id == 41 || org_id == 9671 || org_id == 9538 || org_id == 10340)">
  1563. <el-form-item label="累计血容量(L):" :prop="isName('累计血容量')"
  1564. :rules="isCheckmust('累计血容量')">
  1565. <el-input v-model="form.accumulated_blood_volume"></el-input>
  1566. </el-form-item>
  1567. </el-col>
  1568. <el-col :span="8" v-if="isShow('累计血容量') && (template_id != 41 && template_id !=9671 && org_id!=9538 && org_id!=10340)">
  1569. <el-form-item label="累计血容量(ml):" :prop="isName('累计血容量')"
  1570. :rules="isCheckmust('累计血容量')">
  1571. <el-input v-model="form.accumulated_blood_volume"></el-input>
  1572. </el-form-item>
  1573. </el-col>
  1574. <el-col :span="8" v-if="isShow('血容量')">
  1575. <el-form-item label="血容量(L):" :prop="isName('血容量')"
  1576. :rules="isCheckmust('血容量')">
  1577. <el-input v-model="form.accumulated_blood_volume"></el-input>
  1578. </el-form-item>
  1579. </el-col>
  1580. <el-col :span="8" v-if="isShow('血温监测')">
  1581. <el-form-item label="血温监测" :prop="isName('血温监测')"
  1582. :rules="isCheckmust('血温监测')">
  1583. <el-input v-model="form.blood_temperature"></el-input>
  1584. </el-form-item>
  1585. </el-col>
  1586. <el-col :span="8" v-if="isShow('尿素监测')">
  1587. <el-form-item label="尿素监测" :prop="isName('尿素监测')"
  1588. :rules="isCheckmust('尿素监测')">
  1589. <el-input v-model="form.urea_monitoring"></el-input>
  1590. </el-form-item>
  1591. </el-col>
  1592. <el-col :span="8" v-if="isShow('血浓量')">
  1593. <el-form-item label="血浓量" :prop="isName('血浓量')"
  1594. :rules="isCheckmust('血浓量')">
  1595. <el-input v-model="form.blood_thickness"></el-input>
  1596. </el-form-item>
  1597. </el-col>
  1598. <el-col :span="8" v-if="isShow('血压监测')">
  1599. <el-form-item label="血压监测" :prop="isName('血压监测')"
  1600. :rules="isCheckmust('血压监测')">
  1601. <el-input v-model="form.blood_monitor"></el-input>
  1602. </el-form-item>
  1603. </el-col>
  1604. <el-col :span="8" v-if="isShow('脱水')">
  1605. <el-form-item label="脱水(L):" :prop="isName('脱水')"
  1606. :rules="isCheckmust('脱水')">
  1607. <el-input v-model="form.dehydration"></el-input>
  1608. </el-form-item>
  1609. </el-col>
  1610. <el-col :span="8" v-if="isShow('置换液速度')">
  1611. <el-form-item label="置换液速度(ml/h):" :prop="isName('置换液速度')"
  1612. :rules="isCheckmust('置换液速度')">
  1613. <el-input v-model="form.replacement_speed"></el-input>
  1614. </el-form-item>
  1615. </el-col>
  1616. <el-col :span="8" v-if="isShow('碳酸氢钠用量')">
  1617. <el-form-item label="碳酸氢钠用量(ml):" :prop="isName('碳酸氢钠用量')"
  1618. :rules="isCheckmust('碳酸氢钠用量')">
  1619. <el-input v-model="form.dicarbonate"></el-input>
  1620. </el-form-item>
  1621. </el-col>
  1622. <el-col :span="8" v-if="isShow('滤前压')">
  1623. <el-form-item label="滤前压(mmHg):">
  1624. <el-input v-model="form.filter_pressure"></el-input>
  1625. </el-form-item>
  1626. </el-col>
  1627. <!-- </el-row>
  1628. <el-row :gutter="20"> -->
  1629. <el-col :span="24" v-if="isShow('KT/V')">
  1630. <el-form-item label="KT/V(在线):" :prop="isName('KT/V')"
  1631. :rules="isCheckmust('KT/V')">
  1632. <el-input type="textarea" :rows="4" v-model="form.ktv"></el-input>
  1633. </el-form-item>
  1634. </el-col>
  1635. <el-col :span="24" v-if="isShow('URR')">
  1636. <el-form-item label="URR:" :prop="isName('URR')"
  1637. :rules="isCheckmust('URR')">
  1638. <el-input type="textarea" :rows="4" v-model="form.urr"></el-input>
  1639. </el-form-item>
  1640. </el-col>
  1641. <!-- </el-row>
  1642. <el-row :gutter="20"> -->
  1643. <el-col :span="24" v-if="isShow('病情变化')">
  1644. <el-form-item label="病情变化:" :prop="isName('病情变化')"
  1645. :rules="isCheckmust('病情变化')">
  1646. <el-select
  1647. v-model="symptom_selecteds"
  1648. style="width: 100%"
  1649. :multiple="true"
  1650. collapse-tags
  1651. @change="symptomSelectorChange"
  1652. >
  1653. <el-option
  1654. v-for="(symptom, index) in symptom_options"
  1655. :key="index"
  1656. :label="symptom.name"
  1657. :value="symptom.name"
  1658. ></el-option>
  1659. </el-select>
  1660. </el-form-item>
  1661. </el-col>
  1662. <!-- </el-row>
  1663. <el-row :gutter="20"> -->
  1664. <el-col :span="24" v-if="isShow('病情变化')">
  1665. <el-form-item :prop="isName('病情变化')"
  1666. :rules="isCheckmust('病情变化')">
  1667. <el-input
  1668. type="textarea"
  1669. :rows="4"
  1670. v-model="form.symptom"
  1671. @blur="symptomTextareaBlur"
  1672. ></el-input>
  1673. </el-form-item>
  1674. </el-col>
  1675. <!-- </el-row>
  1676. <el-row :gutter="20"> -->
  1677. <el-col :span="24" v-if="isShow('处理')">
  1678. <el-form-item label="处理:" :prop="isName('处理')"
  1679. :rules="isCheckmust('处理')">
  1680. <el-select
  1681. v-model="dispose_selecteds"
  1682. style="width: 100%"
  1683. :multiple="true"
  1684. collapse-tags
  1685. @change="disposeSelectorChange"
  1686. >
  1687. <el-option
  1688. v-for="(dispose, index) in dispose_options"
  1689. :key="index"
  1690. :label="dispose.name"
  1691. :value="dispose.name"
  1692. ></el-option>
  1693. </el-select>
  1694. </el-form-item>
  1695. </el-col>
  1696. <!-- </el-row>
  1697. <el-row :gutter="20"> -->
  1698. <el-col :span="24" v-if="isShow('处理')">
  1699. <el-form-item :prop="isName('处理')"
  1700. :rules="isCheckmust('处理')">
  1701. <el-input
  1702. type="textarea"
  1703. :rows="4"
  1704. v-model="form.dispose"
  1705. @blur="disposeTextareaBlur"
  1706. ></el-input>
  1707. <!-- @blur="disposeTextareaBlur" -->
  1708. </el-form-item>
  1709. </el-col>
  1710. <!-- </el-row>
  1711. <el-row :gutter="20"> -->
  1712. <el-col :span="24" v-if="isShow('结果')">
  1713. <el-form-item label="结果:" :prop="isName('结果')"
  1714. :rules="isCheckmust('结果')">
  1715. <el-select
  1716. v-model="result_selecteds"
  1717. style="width: 100%"
  1718. :multiple="true"
  1719. collapse-tags
  1720. @change="resultSelectorChange"
  1721. >
  1722. <el-option
  1723. v-for="(result, index) in result_options"
  1724. :key="index"
  1725. :label="result.name"
  1726. :value="result.name"
  1727. ></el-option>
  1728. </el-select>
  1729. </el-form-item>
  1730. </el-col>
  1731. <!-- </el-row>
  1732. <el-row :gutter="20"> -->
  1733. <el-col :span="24" v-if="isShow('结果')">
  1734. <el-form-item :prop="isName('结果')"
  1735. :rules="isCheckmust('结果')">
  1736. <el-input
  1737. type="textarea"
  1738. :rows="4"
  1739. v-model="form.result"
  1740. @blur="resultTextareaBlur"
  1741. ></el-input>
  1742. </el-form-item>
  1743. </el-col>
  1744. </el-row>
  1745. </el-form>
  1746. <div slot="footer" class="dialog-footer" v-show="edit">
  1747. <el-button @click="cancelEditAction">取 消</el-button>
  1748. <el-button :loading="loading" type="primary" @click="submitAction('form')">保 存</el-button>
  1749. </div>
  1750. <!--</div>-->
  1751. </el-dialog>
  1752. <el-dialog
  1753. title="提示"
  1754. :visible.sync="infoDialogVisible"
  1755. width="30%">
  1756. <span>
  1757. <el-form>
  1758. <el-row>
  1759. <span>申请日期:</span>
  1760. <span>
  1761. <el-date-picker
  1762. type="datetime"
  1763. format="yyyy-MM-dd HH:mm"
  1764. value-format="yyyy-MM-dd HH:mm"
  1765. placeholder="选择时间"
  1766. v-model="selected_date"
  1767. ></el-date-picker>
  1768. </span>
  1769. </el-row>
  1770. <el-row>
  1771. <span>备注:</span>
  1772. <span>
  1773. <el-input v-model="remark" style="width:200px"></el-input>
  1774. </span>
  1775. </el-row>
  1776. </el-form>
  1777. </span>
  1778. <span slot="footer" class="dialog-footer">
  1779. <el-button @click="infoDialogVisible = false">取 消</el-button>
  1780. <el-button type="primary" @click="saveInformation">确 定</el-button>
  1781. </span>
  1782. </el-dialog>
  1783. </div>
  1784. </template>
  1785. <script>
  1786. import { parseTime } from "@/utils";
  1787. import { getDataConfig } from "@/utils/data";
  1788. import {
  1789. editMonitor,
  1790. postDelMonitorInfo,
  1791. getTodayMonitor,
  1792. } from "@/api/dialysis_record";
  1793. import store from "@/store";
  1794. import { saveInformation } from '@/api/dialysis'
  1795. import request from "@/utils/request";
  1796. export default {
  1797. name: "MonitorDialog",
  1798. data() {
  1799. return {
  1800. loading: false,
  1801. is_has_create: true,
  1802. is_has_modify: true,
  1803. is_has_modify_other: true,
  1804. is_has_del: true,
  1805. is_has_del_other: true,
  1806. visible: false,
  1807. edit: false,
  1808. current_row_class: "current-box-class",
  1809. creator: 0,
  1810. patient_id: 0,
  1811. schedule_date: 0,
  1812. template_id: 0,
  1813. isAdd: false,
  1814. // monitoring_date: 0,
  1815. form: {
  1816. id: 0,
  1817. monitoring_date: 0, // 监测日期
  1818. // operate_date: 0, // 实际测量日期
  1819. // monitoring_time: "", // 监测时间 HH:mm
  1820. operate_time: 0,
  1821. systolic_bp: "", // 收缩压
  1822. diastolic_bp: "", // 舒张压
  1823. pulse_frequency: "", // 心率
  1824. temperature: "", // 体温
  1825. breathing_rated: "", // 呼吸频率
  1826. blood_flow_volume: "", // 血流量
  1827. venous_pressure: "", // 静脉压
  1828. venous_pressure_type: 1, // 静脉压
  1829. transmembrane_pressure: "", // 跨膜压
  1830. transmembrane_pressure_type: 1, // 跨膜压
  1831. ultrafiltration_volume: "", // c
  1832. ultrafiltration_rate: "", // 超滤率
  1833. arterial_pressure: "", // 动脉压
  1834. arterial_pressure_type: 1, // 动脉压
  1835. sodium_concentration: "", // 钠浓度
  1836. dialysate_temperature: "", // 透析液温度
  1837. replacement_rate: "", // 置换率
  1838. displacement_quantity: "", // 置换量
  1839. conductivity: "", // 电导度
  1840. displacement_flow_quantity: "", // 置换液流量
  1841. dialysate_flow: "", // 透析液流量
  1842. heparin: "", // 肝素用量余量
  1843. ktv: "", // KT/V
  1844. symptom: "", // 病情变化
  1845. dispose: "", // 处理
  1846. result: "", // 结果,
  1847. blood_oxygen_saturation: "",
  1848. urr: "",
  1849. blood_sugar: "", //血糖
  1850. monitor_anticoagulant: "",
  1851. monitor_anticoagulant_value: "",
  1852. blood_pressure_monitoring_site: "",
  1853. complication: "",
  1854. accumulated_blood_volume: "",
  1855. blood_temperature: "",
  1856. urea_monitoring: "",
  1857. blood_thickness: "",
  1858. blood_monitor: "",
  1859. heparin_amount: "", //肝素量
  1860. dehydration: "",
  1861. filter_pressure:"",
  1862. replacement_speed:"",
  1863. dicarbonate:"",
  1864. is_pressure:"",
  1865. },
  1866. table_current_row: null,
  1867. symptom_selecteds: [],
  1868. symptom_options: getDataConfig("hemodialysis", "symptoms"),
  1869. dispose_selecteds: [],
  1870. dispose_options: getDataConfig("hemodialysis", "deals"),
  1871. result_selecteds: [],
  1872. result_options: getDataConfig("hemodialysis", "results"),
  1873. valueOne: 0,
  1874. valueTwo: 0,
  1875. valueThree: 0,
  1876. anticoagulantsConfit: {},
  1877. bloodPressureMmonitoringSite: [],
  1878. complicationList: [],
  1879. infoDialogVisible:false,
  1880. selected_date:"",
  1881. remark:"",
  1882. pressureList:[
  1883. {id:1,name:"是"},
  1884. {id:2,name:"否"}
  1885. ]
  1886. };
  1887. },
  1888. props: {
  1889. monitors: {
  1890. type: Array,
  1891. },
  1892. patient: {
  1893. type: Object,
  1894. },
  1895. },
  1896. computed: {
  1897. monitor_date_str: function () {
  1898. return parseTime(this.form.monitoring_date, "{y}-{m}-{d}");
  1899. },
  1900. },
  1901. created() {
  1902. this.template_id = this.$store.getters.xt_user.template_info.template_id;
  1903. this.org_id = this.$store.getters.xt_user.template_info.org_id;
  1904. var date = this.$route.query.date;
  1905. var patient_id = this.$route.query.patient_id;
  1906. this.patient_id = patient_id ? patient_id : this.patient.id;
  1907. console.log("this.patient_id", this.patient_id);
  1908. this.schedule_date = date
  1909. ? date
  1910. : new Date(new Date().toLocaleDateString()).getTime() / 1000;
  1911. this.form.monitoring_date = date
  1912. ? date
  1913. : new Date(new Date().toLocaleDateString()).getTime() / 1000;
  1914. // this.form.operate_date = parseInt((new Date()).getTime() / 1000)
  1915. // this.form.monitoring_time = parseTime(new Date(), "{h}:{i}")
  1916. this.form.operate_time = new Date().getTime();
  1917. var symptoms = getDataConfig("hemodialysis", "symptoms");
  1918. this.anticoagulantsConfit = this.$store.getters.anticoagulants_confit;
  1919. //console.log("抗凝剂",this.anticoagulantsConfit)
  1920. this.bloodPressureMmonitoringSite = getDataConfig(
  1921. "hemodialysis",
  1922. "blood_pressure_monitoring_site"
  1923. );
  1924. this.complicationList = getDataConfig("hemodialysis", "complication");
  1925. },
  1926. methods: {
  1927. isName(name) {
  1928. let filedList = store.getters.xt_user.fileds;
  1929. for (let i = 0; i < filedList.length; i++) {
  1930. if (filedList[i].module == 4 && filedList[i].filed_name_cn == name) {
  1931. return filedList[i].filed_name;
  1932. }
  1933. }
  1934. },
  1935. isCheckmust(name) {
  1936. let filedList = store.getters.xt_user.fileds;
  1937. for (let i = 0; i < filedList.length; i++) {
  1938. if (
  1939. filedList[i].module == 4
  1940. &&filedList[i].filed_name_cn == name
  1941. &&filedList[i].is_write == 1
  1942. ) {
  1943. // console.log(filedList[i].is_write,'false')
  1944. // console.log(name,filedList[i].filed_name_cn,'难道不一样吗')
  1945. return [{ required: true ,message:`请输入${name}` }];
  1946. }
  1947. // else {
  1948. // console.log(name,filedList[i].filed_name_cn,'难道不一样吗')
  1949. // // console.log(filedList[i].is_write,'true')
  1950. // return [{ required:false}];
  1951. // }
  1952. }
  1953. },
  1954. venousPressureChange(type) {
  1955. if (type == 1) {
  1956. this.form.venous_pressure = Math.ceil(
  1957. Math.round(this.form.venous_pressure * 7.5)
  1958. );
  1959. } else if (type == 2) {
  1960. this.form.transmembrane_pressure = Math.ceil(
  1961. Math.round(this.form.transmembrane_pressure * 7.5)
  1962. );
  1963. } else {
  1964. this.form.arterial_pressure = Math.ceil(
  1965. Math.round(this.form.arterial_pressure * 7.5)
  1966. );
  1967. }
  1968. },
  1969. venousPressureChangeOne() {
  1970. if (this.form.venous_pressure_type == 1) {
  1971. this.form.venous_pressure_type = 2;
  1972. } else {
  1973. this.form.venous_pressure_type = 1;
  1974. }
  1975. // if (this.valueOne == 0) {
  1976. // this.form.venous_pressure = Math.ceil(
  1977. // Math.round(this.form.venous_pressure * 7.5)
  1978. // )
  1979. // this.valueOne = 1
  1980. // return false
  1981. // }
  1982. // if (this.valueOne == 1) {
  1983. // this.form.venous_pressure = Math.ceil(
  1984. // Math.round(this.form.venous_pressure / 7.5)
  1985. // )
  1986. // this.valueOne = 0
  1987. // return false
  1988. // }
  1989. },
  1990. venousPressureChangeThree() {
  1991. if (this.form.arterial_pressure_type == 1) {
  1992. this.form.arterial_pressure_type = 2;
  1993. } else {
  1994. this.form.arterial_pressure_type = 1;
  1995. }
  1996. // if (this.valueThree == 0) {
  1997. // this.form.arterial_pressure = Math.ceil(
  1998. // Math.round(this.form.arterial_pressure * 7.5)
  1999. // )
  2000. // this.valueThree = 1
  2001. // return false
  2002. // }
  2003. // if (this.valueThree == 1) {
  2004. // this.form.arterial_pressure = Math.ceil(
  2005. // Math.round(this.form.arterial_pressure / 7.5)
  2006. // )
  2007. // this.valueThree = 0
  2008. // return false
  2009. // }
  2010. },
  2011. venousPressureChangeTwo() {
  2012. if (this.form.transmembrane_pressure_type == 1) {
  2013. this.form.transmembrane_pressure_type = 2;
  2014. } else {
  2015. this.form.transmembrane_pressure_type = 1;
  2016. }
  2017. // if (this.valueTwo == 0) {
  2018. // this.form.transmembrane_pressure = Math.ceil(
  2019. // Math.round(this.form.transmembrane_pressure * 7.5)
  2020. // )
  2021. // this.valueTwo = 1
  2022. // return false
  2023. // }
  2024. // if (this.valueTwo == 1) {
  2025. // this.form.transmembrane_pressure = Math.ceil(
  2026. // Math.round(this.form.transmembrane_pressure / 7.5)
  2027. // )
  2028. // this.valueTwo = 0
  2029. // return false
  2030. // }
  2031. },
  2032. isShow(name) {
  2033. var filedList = store.getters.xt_user.fileds;
  2034. for (let i = 0; i < filedList.length; i++) {
  2035. if (
  2036. filedList[i].module == 4 &&
  2037. filedList[i].filed_name_cn == name &&
  2038. filedList[i].is_show == 1
  2039. ) {
  2040. return true;
  2041. }
  2042. }
  2043. return false;
  2044. },
  2045. reset: function () {
  2046. this.cancelEditAction();
  2047. },
  2048. show() {
  2049. this.getPermission();
  2050. this.visible = true;
  2051. },
  2052. hide() {
  2053. this.visible = false;
  2054. },
  2055. getMonitorDate: function (monitor) {
  2056. return parseTime(monitor.operate_time, "{y}-{m}-{d} {h}:{i}");
  2057. },
  2058. newRecordAction: function () {
  2059. console.log("111111111")
  2060. this.setEditMonitor(null);
  2061. this.$refs.table.setCurrentRow(null);
  2062. console.log(this.dispose_options,'oop')
  2063. if (this.monitors.length == 0) {
  2064. this.disposeTextareaBlur();
  2065. }
  2066. this.edit = true;
  2067. this.isAdd = true;
  2068. this.getLastRecordTody();
  2069. },
  2070. getLastRecordTody() {
  2071. const params = {
  2072. patient_id: this.patient_id,
  2073. };
  2074. getTodayMonitor(params).then((rs) => {
  2075. console.log("机构ID", this.org_id);
  2076. var resp = rs.data.data;
  2077. this.form.operate_time = resp.monitor.operate_time
  2078. ? (resp.monitor.operate_time + 3600) * 1000
  2079. : Date.parse(new Date());
  2080. this.form.temperature = ""
  2081. // this.last_monitor_record.pulse_frequency;
  2082. // this.form.breathing_rated = resp.monitor.breathing_rated ? resp.monitor.breathing_rated : '';
  2083. this.form.systolic_bp = ""; // this.last_monitor_record.systolic_blood_pressure;
  2084. this.form.diastolic_bp = ""; // this.last_monitor_record.diastolic_blood_pressure;
  2085. this.form.blood_flow_volume = resp.monitor.blood_flow_volume ? resp.monitor.blood_flow_volume: "";
  2086. // 静脉压
  2087. if (this.org_id == 10060 || this.org_id == 10387) {
  2088. this.form.venous_pressure = resp.monitor.venous_pressure;
  2089. }else if(this.org_id == 9671 || this.org_id == 9675 || this.org_id == 10340 || this.org_id == 10469 || this.org_id == 10471 ){
  2090. this.form.venous_pressure = 80
  2091. } else {
  2092. this.form.venous_pressure = ""; // this.last_monitor_record.venous_pressure;
  2093. }
  2094. if(this.org_id == 10440){
  2095. this.form.pulse_frequency = 80
  2096. }else{
  2097. this.form.pulse_frequency = ""
  2098. }
  2099. this.form.venous_pressure_type = resp.monitor.venous_pressure_type? resp.monitor.venous_pressure_type: 1;
  2100. if(this.org_id == 9671 || this.org_id == 9675 || this.org_id == 10340 || this.org_id == 10387){
  2101. this.form.arterial_pressure = resp.monitor.arterial_pressure? resp.monitor.arterial_pressure: "-100"; // this.last_monitor_record.arterial_pressure;
  2102. }else{
  2103. this.form.arterial_pressure = resp.monitor.arterial_pressure? resp.monitor.arterial_pressure: ""
  2104. }
  2105. this.form.arterial_pressure_type = resp.monitor.arterial_pressure_type
  2106. ? resp.monitor.arterial_pressure_type
  2107. : 1;
  2108. if (this.org_id == 10060 || this.org_id == 10387) {
  2109. this.form.transmembrane_pressure = resp.monitor.transmembrane_pressure;
  2110. }else if(this.org_id == 9671 || this.org_id == 9675 || this.org_id == 10340){
  2111. this.form.transmembrane_pressure = 60
  2112. } else {
  2113. this.form.transmembrane_pressure = ""; // this.last_monitor_record.transmembrane_pressure;
  2114. }
  2115. if (this.org_id == 10318) {
  2116. this.form.breathing_rated = resp.monitor.breathing_rate;
  2117. }else if(this.org_id == 9671){
  2118. this.form.breathing_rated = "20"
  2119. }else if(this.org_id == 10340){
  2120. this.form.breathing_rated = "20"
  2121. } else {
  2122. this.form.breathing_rated = "";
  2123. }
  2124. this.form.transmembrane_pressure_type = resp.monitor
  2125. .transmembrane_pressure_type
  2126. ? resp.monitor.transmembrane_pressure_type
  2127. : 1;
  2128. this.form.ultrafiltration_rate = resp.monitor.ultrafiltration_rate
  2129. ? resp.monitor.ultrafiltration_rate
  2130. : "";
  2131. this.form.ultrafiltration_volume = resp.monitor.ultrafiltration_volume
  2132. ? resp.monitor.ultrafiltration_volume
  2133. : "";
  2134. this.form.sodium_concentration = resp.monitor.sodium_concentration
  2135. ? resp.monitor.sodium_concentration
  2136. : "";
  2137. this.form.dialysate_temperature = resp.monitor.dialysate_temperature
  2138. ? resp.monitor.dialysate_temperature
  2139. : "";
  2140. if(this.org_id == 9675 || this.org_id == 9671 || this.org_id == 10340 || this.org_id == 10469 || this.org_id == 10471){
  2141. this.form.temperature = "36.5"
  2142. }else{
  2143. this.form.temperature = resp.monitor.temperature ? resp.monitor.temperature: "";
  2144. }
  2145. this.form.replacement_rate = resp.monitor.replacement_rate
  2146. ? resp.monitor.replacement_rate
  2147. : "";
  2148. this.form.heparin = resp.monitor.heparin ? resp.monitor.heparin : "";
  2149. this.form.dialysate_flow = resp.monitor.dialysate_flow
  2150. ? resp.monitor.dialysate_flow
  2151. : "";
  2152. this.form.displacement_quantity = resp.monitor.displacement_quantity
  2153. ? resp.monitor.displacement_quantity
  2154. : ""; // this.last_monitor_record.displacement_quantity;
  2155. this.form.conductivity = "";
  2156. this.form.displacement_flow_quantity = resp.monitor
  2157. .displacement_flow_quantity
  2158. ? resp.monitor.displacement_flow_quantity
  2159. : "";
  2160. this.form.ktv = resp.monitor.ktv ? resp.monitor.ktv : ""; // this.last_monitor_record.ktv;
  2161. this.form.symptom = resp.monitor.symptom ? resp.monitor.symptom : ""; // this.last_monitor_record.symptom;
  2162. // this.form.dispose = resp.monitor.dispose ? resp.monitor.dispose : ""; // this.last_monitor_record.dispose;
  2163. this.form.result = resp.monitor.result ? resp.monitor.result : ""; // this.last_monitor_record.result;
  2164. this.form.blood_oxygen_saturation = resp.monitor.blood_oxygen_saturation? resp.monitor.blood_oxygen_saturation: "";
  2165. //针对长沙南雅医院
  2166. if(this.org_id == 9671 || this.org_id == 10340 || this.org_id == 9675){
  2167. this.form.blood_oxygen_saturation = "/"
  2168. }
  2169. this.form.urr = resp.monitor.urr ? resp.monitor.urr : "";
  2170. this.form.blood_sugar = resp.monitor.blood_sugar
  2171. ? resp.monitor.blood_sugar
  2172. : "";
  2173. this.form.sodium_concentration = resp.monitor.sodium_concentration
  2174. ? resp.monitor.sodium_concentration
  2175. : "";
  2176. if(this.org_id == 9671 || this.org_id == 9675 || this.org_id == 10340){
  2177. this.form.conductivity = 14
  2178. }else{
  2179. this.form.conductivity = resp.monitor.conductivity? resp.monitor.conductivity: "";
  2180. }
  2181. this.form.monitor_anticoagulant = resp.monitor.monitor_anticoagulant
  2182. ? resp.monitor.monitor_anticoagulant
  2183. : "";
  2184. this.form.monitor_anticoagulant_value = resp.monitor
  2185. .monitor_anticoagulant_value
  2186. ? resp.monitor.monitor_anticoagulant_value
  2187. : "";
  2188. this.form.accumulated_blood_volume = resp.monitor
  2189. .accumulated_blood_volume
  2190. ? resp.monitor.accumulated_blood_volume
  2191. : "";
  2192. this.form.blood_temperature = resp.monitor.blood_temperature
  2193. ? resp.monitor.blood_temperature
  2194. : "";
  2195. this.form.urea_monitoring = resp.monitor.urea_monitoring
  2196. ? resp.monitor.urea_monitoring
  2197. : "";
  2198. this.form.blood_thickness = resp.monitor.blood_thickness
  2199. ? resp.monitor.blood_thickness
  2200. : "";
  2201. this.form.blood_monitor = resp.monitor.blood_monitor
  2202. ? resp.monitor.blood_monitor
  2203. : "";
  2204. this.form.dehydration = resp.monitor.dehydration
  2205. ? resp.monitor.dehydration
  2206. : "";
  2207. this.form.heparin_amount = resp.monitor.heparin_amount
  2208. ? resp.monitor.heparin_amount
  2209. : "";
  2210. if(this.org_id == 9671 || this.org_id == 9675 || this.org_id == 10340){
  2211. this.form.dialysate_temperature = 36.5
  2212. }
  2213. });
  2214. },
  2215. modifyRecordAction: function () {
  2216. if (this.table_current_row == null) {
  2217. this.$message.error("请选择一条监测记录");
  2218. return;
  2219. }
  2220. this.creator = this.table_current_row.creator;
  2221. console.log("22222222222")
  2222. this.setEditMonitor(this.table_current_row);
  2223. this.$refs.table.setCurrentRow(null);
  2224. this.edit = true;
  2225. this.isAdd = false;
  2226. },
  2227. cancelEditAction: function () {
  2228. console.log("3333333333")
  2229. this.setEditMonitor(null);
  2230. this.$refs.table.setCurrentRow(null);
  2231. this.edit = false;
  2232. },
  2233. tableCurrentRowChange: function (currentRow) {
  2234. this.table_current_row = currentRow;
  2235. // console.log("tableCurrentRowChange", currentRow)
  2236. },
  2237. setEditMonitor: function (monitor) {
  2238. console.log("monitor23223322332", monitor);
  2239. if (monitor == null || monitor == undefined) {
  2240. this.form.id = 0;
  2241. // this.form.operate_date = parseInt((new Date()).getTime() / 1000)
  2242. // this.form.monitoring_time = parseTime(new Date(), "{h}:{i}")
  2243. this.form.operate_time = new Date().getTime();
  2244. this.form.systolic_bp = "";
  2245. this.form.diastolic_bp = "";
  2246. this.form.pulse_frequency = "";
  2247. this.form.breathing_rated = "";
  2248. this.form.blood_flow_volume = "";
  2249. this.form.temperature = "";
  2250. this.form.venous_pressure = "";
  2251. this.form.venous_pressure_type = 1;
  2252. this.form.transmembrane_pressure = "";
  2253. this.form.transmembrane_pressure_type = 1;
  2254. if(this.org_id == 9671 || this.org_id == 10440){
  2255. this.form.ultrafiltration_volume = 0
  2256. }
  2257. if(this.org_id != 9671 && this.org_id != 10440){
  2258. this.form.ultrafiltration_volume = "";
  2259. }
  2260. this.form.ultrafiltration_rate = "";
  2261. this.form.arterial_pressure = "";
  2262. this.form.arterial_pressure_type = 1;
  2263. this.form.sodium_concentration = "";
  2264. this.form.dialysate_temperature = "";
  2265. this.form.replacement_rate = "";
  2266. this.form.displacement_quantity = "";
  2267. this.form.conductivity = "";
  2268. this.form.displacement_flow_quantity = "";
  2269. this.form.heparin = "";
  2270. this.form.dialysate_flow = "";
  2271. this.form.ktv = "";
  2272. this.form.symptom = "";
  2273. this.form.dispose = "";
  2274. this.form.result = "";
  2275. this.symptom_selecteds = [];
  2276. this.dispose_selecteds = [];
  2277. this.result_selecteds = [];
  2278. this.form.urr = "";
  2279. this.form.blood_sugar = "";
  2280. this.form.monitor_anticoagulant = "";
  2281. this.form.monitor_anticoagulant_value = "";
  2282. this.form.accumulated_blood_volume = "";
  2283. this.form.blood_temperature = "";
  2284. this.form.urea_monitoring = "";
  2285. this.form.blood_thickness = "";
  2286. this.form.blood_monitor = "";
  2287. this.form.dehydration = "";
  2288. this.form.heparin_amount = "";
  2289. this.form.filter_pressure =""
  2290. } else {
  2291. (this.form.id = monitor.id),
  2292. // this.form.operate_date = monitor.operate_date
  2293. // this.form.monitoring_time = monitor.monitoring_time
  2294. (this.form.operate_time = monitor.operate_time * 1000);
  2295. this.form.systolic_bp = monitor.systolic_blood_pressure
  2296. ? monitor.systolic_blood_pressure
  2297. : "";
  2298. this.form.temperature = monitor.temperature ? monitor.temperature : "";
  2299. this.form.diastolic_bp = monitor.diastolic_blood_pressure
  2300. ? monitor.diastolic_blood_pressure
  2301. : "";
  2302. this.form.pulse_frequency = monitor.pulse_frequency
  2303. ? monitor.pulse_frequency
  2304. : "";
  2305. this.form.breathing_rated = monitor.breathing_rate
  2306. ? monitor.breathing_rate
  2307. : "";
  2308. this.form.blood_flow_volume = monitor.blood_flow_volume
  2309. ? monitor.blood_flow_volume
  2310. : "";
  2311. this.form.venous_pressure = monitor.venous_pressure
  2312. ? monitor.venous_pressure
  2313. : "";
  2314. this.form.venous_pressure_type = monitor.venous_pressure_type
  2315. ? monitor.venous_pressure_type
  2316. : "";
  2317. this.form.transmembrane_pressure = monitor.transmembrane_pressure
  2318. ? monitor.transmembrane_pressure
  2319. : "";
  2320. this.form.transmembrane_pressure_type =
  2321. monitor.transmembrane_pressure_type
  2322. ? monitor.transmembrane_pressure_type
  2323. : "";
  2324. if(this.org_id == 9671 || this.org_id == 10440){
  2325. this.form.ultrafiltration_volume = monitor.ultrafiltration_volume
  2326. ? monitor.ultrafiltration_volume
  2327. : "0";
  2328. }
  2329. if(this.org_id != 9671 && this.org_id !=10440){
  2330. this.form.ultrafiltration_volume = monitor.ultrafiltration_volume
  2331. ? monitor.ultrafiltration_volume
  2332. : "";
  2333. }
  2334. this.form.ultrafiltration_rate = monitor.ultrafiltration_rate
  2335. ? monitor.ultrafiltration_rate
  2336. : "";
  2337. if(this.org_id == 9671 || this.org_id == 9675 || this.org_id == 10340){
  2338. this.form.arterial_pressure = monitor.arterial_pressure
  2339. ? monitor.arterial_pressure
  2340. : "-100";
  2341. }else{
  2342. this.form.arterial_pressure = monitor.arterial_pressure
  2343. ? monitor.arterial_pressure
  2344. : "";
  2345. }
  2346. this.form.arterial_pressure_type = monitor.arterial_pressure_type
  2347. ? monitor.arterial_pressure_type
  2348. : "";
  2349. this.form.sodium_concentration = monitor.sodium_concentration
  2350. ? monitor.sodium_concentration
  2351. : "";
  2352. this.form.dialysate_temperature = monitor.dialysate_temperature
  2353. ? monitor.dialysate_temperature
  2354. : "";
  2355. this.form.replacement_rate = monitor.replacement_rate
  2356. ? monitor.replacement_rate
  2357. : "";
  2358. this.form.displacement_quantity = monitor.displacement_quantity
  2359. ? monitor.displacement_quantity
  2360. : "";
  2361. this.form.conductivity = monitor.conductivity
  2362. ? monitor.conductivity
  2363. : "";
  2364. this.form.displacement_flow_quantity =
  2365. monitor.displacement_flow_quantity
  2366. ? monitor.displacement_flow_quantity
  2367. : "";
  2368. this.form.heparin = monitor.heparin ? monitor.heparin : "";
  2369. this.form.dialysate_flow = monitor.dialysate_flow
  2370. ? monitor.dialysate_flow
  2371. : "";
  2372. this.form.ktv = monitor.ktv ? monitor.ktv : "";
  2373. this.form.symptom = monitor.symptom;
  2374. this.form.dispose = monitor.dispose;
  2375. this.form.result = monitor.result;
  2376. this.form.blood_oxygen_saturation = monitor.blood_oxygen_saturation?monitor.blood_oxygen_saturation:"/"
  2377. this.form.urr = monitor.urr ? monitor.urr : "";
  2378. this.form.blood_sugar = monitor.blood_sugar ? monitor.blood_sugar : "";
  2379. this.form.monitor_anticoagulant = monitor.monitor_anticoagulant
  2380. ? monitor.monitor_anticoagulant
  2381. : "";
  2382. this.form.monitor_anticoagulant_value =
  2383. monitor.monitor_anticoagulant_value
  2384. ? monitor.monitor_anticoagulant_value
  2385. : "";
  2386. this.form.accumulated_blood_volume = monitor.accumulated_blood_volume
  2387. ? monitor.accumulated_blood_volume
  2388. : "";
  2389. this.form.blood_temperature = monitor.blood_temperature
  2390. ? monitor.blood_temperature
  2391. : "";
  2392. this.form.urea_monitoring = monitor.urea_monitoring
  2393. ? monitor.urea_monitoring
  2394. : "";
  2395. this.form.blood_thickness = monitor.blood_thickness
  2396. ? monitor.blood_thickness
  2397. : "";
  2398. this.form.blood_monitor = monitor.blood_monitor
  2399. ? monitor.blood_monitor
  2400. : "";
  2401. this.form.dehydration = monitor.dehydration ? monitor.dehydration : "";
  2402. this.form.heparin_amount = monitor.heparin_amount
  2403. ? monitor.heparin_amount
  2404. : "";
  2405. this.form.filter_pressure = monitor.filter_pressure
  2406. ? monitor.filter_pressure
  2407. : "";
  2408. this.form.replacement_speed = monitor.replacement_speed?monitor.replacement_speed:""
  2409. this.form.dicarbonate = monitor.dicarbonate?monitor.dicarbonate:""
  2410. this.form.is_pressure = monitor.is_pressure
  2411. // 设置三个下拉框的值,直接调用事件偷懒
  2412. this.symptomTextareaBlur();
  2413. this.disposeTextareaBlur();
  2414. this.resultTextareaBlur();
  2415. }
  2416. },
  2417. submitAction: function (form) {
  2418. // TODO loading
  2419. this.$refs[form].validate((valid) => {
  2420. if (valid) {
  2421. this.loading = true
  2422. console.log("aaaa")
  2423. var is_new = this.form.id;
  2424. this.form.operate_time = parseInt(this.form.operate_time / 1000);
  2425. this.form.systolic_bp =
  2426. parseFloat(this.form.systolic_bp) == NaN
  2427. ? 0
  2428. : parseFloat(this.form.systolic_bp);
  2429. this.form.diastolic_bp =
  2430. parseFloat(this.form.diastolic_bp) == NaN
  2431. ? 0
  2432. : parseFloat(this.form.diastolic_bp);
  2433. this.form.temperature =
  2434. parseFloat(this.form.temperature) == NaN
  2435. ? 0
  2436. : parseFloat(this.form.temperature);
  2437. this.form.pulse_frequency =
  2438. parseFloat(this.form.pulse_frequency) == NaN ? 0: parseFloat(this.form.pulse_frequency);
  2439. this.form.breathing_rated = this.form.breathing_rated
  2440. this.form.blood_flow_volume =
  2441. parseFloat(this.form.blood_flow_volume) == NaN
  2442. ? 0
  2443. : parseFloat(this.form.blood_flow_volume);
  2444. this.form.venous_pressure =
  2445. parseFloat(this.form.venous_pressure) == NaN
  2446. ? 0
  2447. : parseFloat(this.form.venous_pressure);
  2448. this.form.venous_pressure_type =
  2449. parseFloat(this.form.venous_pressure_type) == NaN
  2450. ? 1
  2451. : parseFloat(this.form.venous_pressure_type);
  2452. this.form.transmembrane_pressure =
  2453. parseFloat(this.form.transmembrane_pressure) == NaN
  2454. ? 0
  2455. : parseFloat(this.form.transmembrane_pressure);
  2456. this.form.transmembrane_pressure_type =
  2457. parseFloat(this.form.transmembrane_pressure_type) == NaN
  2458. ? 1
  2459. : parseFloat(this.form.transmembrane_pressure_type);
  2460. this.form.ultrafiltration_volume =
  2461. parseFloat(this.form.ultrafiltration_volume) == NaN
  2462. ? 0
  2463. : parseFloat(this.form.ultrafiltration_volume);
  2464. this.form.ultrafiltration_rate =
  2465. parseFloat(this.form.ultrafiltration_rate) == NaN
  2466. ? 0
  2467. : parseFloat(this.form.ultrafiltration_rate);
  2468. this.form.arterial_pressure =
  2469. parseFloat(this.form.arterial_pressure) == NaN
  2470. ? 0
  2471. : parseFloat(this.form.arterial_pressure);
  2472. this.form.arterial_pressure_type =
  2473. parseFloat(this.form.arterial_pressure_type) == NaN
  2474. ? 1
  2475. : parseFloat(this.form.arterial_pressure_type);
  2476. this.form.sodium_concentration =
  2477. parseFloat(this.form.sodium_concentration) == NaN
  2478. ? 0
  2479. : parseFloat(this.form.sodium_concentration);
  2480. this.form.dialysate_temperature =
  2481. parseFloat(this.form.dialysate_temperature) == NaN
  2482. ? 0
  2483. : parseFloat(this.form.dialysate_temperature);
  2484. this.form.replacement_rate =
  2485. parseFloat(this.form.replacement_rate) == NaN
  2486. ? 0
  2487. : parseFloat(this.form.replacement_rate);
  2488. this.form.displacement_quantity =
  2489. parseFloat(this.form.displacement_quantity) == NaN
  2490. ? 0
  2491. : parseFloat(this.form.displacement_quantity);
  2492. this.form.conductivity =
  2493. parseFloat(this.form.conductivity) == NaN
  2494. ? 0
  2495. : parseFloat(this.form.conductivity);
  2496. this.form.displacement_flow_quantity =
  2497. parseFloat(this.form.displacement_flow_quantity) == NaN
  2498. ? 0
  2499. : parseFloat(this.form.displacement_flow_quantity);
  2500. this.form.heparin =
  2501. parseFloat(this.form.heparin) == NaN
  2502. ? 0
  2503. : parseFloat(this.form.heparin);
  2504. this.form.dialysate_flow =
  2505. parseFloat(this.form.dialysate_flow) == NaN
  2506. ? 0
  2507. : parseFloat(this.form.dialysate_flow);
  2508. this.form.ktv =
  2509. parseFloat(this.form.ktv) == NaN ? 0 : parseFloat(this.form.ktv);
  2510. this.form.monitoring_date = parseInt(this.form.monitoring_date);
  2511. this.form.urr = this.form.urr;
  2512. this.form.blood_sugar =
  2513. parseFloat(this.form.blood_sugar) == NaN
  2514. ? 0
  2515. : parseFloat(this.form.blood_sugar);
  2516. this.form.monitor_anticoagulant = parseInt(
  2517. this.form.monitor_anticoagulant
  2518. );
  2519. this.form.monitor_anticoagulant_value =
  2520. this.form.monitor_anticoagulant_value;
  2521. this.form.blood_pressure_monitoring_site = parseInt(
  2522. this.form.blood_pressure_monitoring_site
  2523. );
  2524. this.form.complication = parseInt(this.form.complication);
  2525. this.form.blood_temperature =
  2526. parseFloat(this.form.blood_temperature) == NaN
  2527. ? 0
  2528. : parseFloat(this.form.blood_temperature);
  2529. this.form.accumulated_blood_volume =
  2530. parseFloat(this.form.accumulated_blood_volume) == NaN
  2531. ? 0
  2532. : parseFloat(this.form.accumulated_blood_volume);
  2533. this.form.urea_monitoring =
  2534. parseFloat(this.form.urea_monitoring) == NaN
  2535. ? 0
  2536. : parseFloat(this.form.urea_monitoring);
  2537. this.form.blood_thickness =
  2538. parseFloat(this.form.blood_thickness) == NaN
  2539. ? 0
  2540. : parseFloat(this.form.blood_thickness);
  2541. this.form.blood_monitor =
  2542. parseFloat(this.form.blood_monitor) == NaN
  2543. ? 0
  2544. : parseFloat(this.form.blood_monitor);
  2545. this.form.heparin_amount =
  2546. parseFloat(this.form.heparin_amount) == NaN
  2547. ? 0
  2548. : parseFloat(this.form.heparin_amount);
  2549. this.form.dehydration =
  2550. parseFloat(this.form.dehydration) == NaN
  2551. ? 0
  2552. : parseFloat(this.form.dehydration);
  2553. this.form.filter_pressure = this.form.filter_pressure?this.form.filter_pressure:""
  2554. this.form.replacement_speed =
  2555. parseFloat(this.form.replacement_speed) == NaN
  2556. ? 0
  2557. : parseFloat(this.form.replacement_speed);
  2558. this.form.dicarbonate =parseFloat(this.form.dicarbonate) == NaN ? 0: parseFloat(this.form.dicarbonate);
  2559. this.form.is_pressure = this.form.is_pressure
  2560. let mode = "1";
  2561. if (this.form.id > 0) {
  2562. mode = "2";
  2563. if (
  2564. this.creator > 0 &&
  2565. this.creator != this.$store.getters.xt_user.user.id
  2566. ) {
  2567. mode = "3";
  2568. }
  2569. }
  2570. editMonitor(this.patient_id, this.schedule_date, this.form, mode).then(
  2571. (rs) => {
  2572. var resp = rs.data;
  2573. if (resp.state == 1) {
  2574. var monitor = resp.data.monitor;
  2575. if (this.isAdd) {
  2576. this.monitors.unshift(monitor);
  2577. this.monitors.sort((a, b) => b.operate_time - a.operate_time);
  2578. this.monitors.reverse();
  2579. } else {
  2580. for (let index = 0; index < this.monitors.length; index++) {
  2581. const m = this.monitors[index];
  2582. if (m.id == monitor.id) {
  2583. for (const key in monitor) {
  2584. m[key] = monitor[key];
  2585. }
  2586. break;
  2587. }
  2588. }
  2589. }
  2590. this.reset();
  2591. } else {
  2592. this.form.systolic_bp =
  2593. parseFloat(this.form.systolic_bp) == NaN
  2594. ? 0
  2595. : parseFloat(this.form.systolic_bp);
  2596. this.form.diastolic_bp =
  2597. parseFloat(this.form.diastolic_bp) == NaN
  2598. ? 0
  2599. : parseFloat(this.form.diastolic_bp);
  2600. this.form.temperature =
  2601. parseFloat(this.form.temperature) == NaN
  2602. ? 0
  2603. : parseFloat(this.form.temperature);
  2604. this.form.pulse_frequency =parseFloat(this.form.pulse_frequency) == NaN? 0 : parseFloat(this.form.pulse_frequency);
  2605. this.form.breathing_rated = this.form.breathing_rated
  2606. this.form.blood_flow_volume =
  2607. parseFloat(this.form.blood_flow_volume) == NaN
  2608. ? 0
  2609. : parseFloat(this.form.blood_flow_volume);
  2610. this.form.venous_pressure =
  2611. parseFloat(this.form.venous_pressure) == NaN
  2612. ? 0
  2613. : parseFloat(this.form.venous_pressure);
  2614. this.form.venous_pressure_type =
  2615. parseFloat(this.form.venous_pressure_type) == NaN
  2616. ? 1
  2617. : parseFloat(this.form.venous_pressure_type);
  2618. this.form.transmembrane_pressure =
  2619. parseFloat(this.form.transmembrane_pressure) == NaN
  2620. ? 0
  2621. : parseFloat(this.form.transmembrane_pressure);
  2622. this.form.transmembrane_pressure_type =
  2623. parseFloat(this.form.transmembrane_pressure_type) == NaN
  2624. ? 1
  2625. : parseFloat(this.form.transmembrane_pressure_type);
  2626. this.form.ultrafiltration_volume =
  2627. parseFloat(this.form.ultrafiltration_volume) == NaN
  2628. ? 0
  2629. : parseFloat(this.form.ultrafiltration_volume);
  2630. this.form.ultrafiltration_rate =
  2631. parseFloat(this.form.ultrafiltration_rate) == NaN
  2632. ? 0
  2633. : parseFloat(this.form.ultrafiltration_rate);
  2634. this.form.arterial_pressure =
  2635. parseFloat(this.form.arterial_pressure) == NaN
  2636. ? 0
  2637. : parseFloat(this.form.arterial_pressure);
  2638. this.form.arterial_pressure_type =
  2639. parseFloat(this.form.arterial_pressure_type) == NaN
  2640. ? 1
  2641. : parseFloat(this.form.arterial_pressure_type);
  2642. this.form.sodium_concentration =
  2643. parseFloat(this.form.sodium_concentration) == NaN
  2644. ? 0
  2645. : parseFloat(this.form.sodium_concentration);
  2646. this.form.dialysate_temperature =
  2647. parseFloat(this.form.dialysate_temperature) == NaN
  2648. ? 0
  2649. : parseFloat(this.form.dialysate_temperature);
  2650. this.form.replacement_rate =
  2651. parseFloat(this.form.replacement_rate) == NaN
  2652. ? 0
  2653. : parseFloat(this.form.replacement_rate);
  2654. this.form.displacement_quantity =
  2655. parseFloat(this.form.displacement_quantity) == NaN
  2656. ? 0
  2657. : parseFloat(this.form.displacement_quantity);
  2658. this.form.conductivity =
  2659. parseFloat(this.form.conductivity) == NaN
  2660. ? 0
  2661. : parseFloat(this.form.conductivity);
  2662. this.form.displacement_flow_quantity =
  2663. parseFloat(this.form.displacement_flow_quantity) == NaN
  2664. ? 0
  2665. : parseFloat(this.form.displacement_flow_quantity);
  2666. this.form.heparin =
  2667. parseFloat(this.form.heparin) == NaN
  2668. ? 0
  2669. : parseFloat(this.form.heparin);
  2670. this.form.dialysate_flow =
  2671. parseFloat(this.form.dialysate_flow) == NaN
  2672. ? 0
  2673. : parseFloat(this.form.dialysate_flow);
  2674. this.form.ktv =
  2675. parseFloat(this.form.ktv) == NaN ? 0 : parseFloat(this.form.ktv);
  2676. this.form.urr = this.form.urr;
  2677. this.form.blood_sugar =
  2678. parseFloat(this.form.blood_sugar) == NaN
  2679. ? 0
  2680. : parseFloat(this.form.blood_sugar);
  2681. this.form.monitor_anticoagulant = parseInt(
  2682. this.form.monitor_anticoagulant
  2683. );
  2684. this.form.monitor_anticoagulant_value =
  2685. this.form.monitor_anticoagulant_value;
  2686. this.form.blood_pressure_monitoring_site =
  2687. this.form.blood_pressure_monitoring_site;
  2688. this.form.complication = this.form.complication;
  2689. this.form.blood_temperature =
  2690. parseFloat(this.form.blood_temperature) == NaN
  2691. ? 0
  2692. : parseFloat(this.form.blood_temperature);
  2693. this.form.accumulated_blood_volume =
  2694. parseFloat(this.form.accumulated_blood_volume) == NaN
  2695. ? 0
  2696. : parseFloat(this.form.accumulated_blood_volume);
  2697. this.form.urea_monitoring =
  2698. parseFloat(this.form.urea_monitoring) == NaN
  2699. ? 0
  2700. : parseFloat(this.form.urea_monitoring);
  2701. this.form.blood_thickness =
  2702. parseFloat(this.form.blood_thickness) == NaN
  2703. ? 0
  2704. : parseFloat(this.form.blood_thickness);
  2705. this.form.blood_monitor =
  2706. parseFloat(this.form.blood_monitor) == NaN
  2707. ? 0
  2708. : parseFloat(this.form.blood_monitor);
  2709. this.form.dehydration =
  2710. parseFloat(this.form.dehydration) == NaN
  2711. ? 0
  2712. : parseFloat(this.form.dehydration);
  2713. this.form.heparin_amount =
  2714. parseFloat(this.form.heparin_amount) == NaN
  2715. ? 0
  2716. : parseFloat(this.form.heparin_amount);
  2717. this.$message.error(resp.msg);
  2718. if(resp.code == 600000008){
  2719. this.infoDialogVisible = true
  2720. }
  2721. }
  2722. }
  2723. );
  2724. this.loading = false
  2725. } else {
  2726. console.log('error submit!!');
  2727. return false;
  2728. }
  2729. });
  2730. },
  2731. symptomTextareaBlur: function () {
  2732. if (this.form.symptom.length > 0) {
  2733. this.symptom_selecteds = this.form.symptom.split(",");
  2734. } else {
  2735. this.symptom_selecteds = [];
  2736. }
  2737. },
  2738. symptomSelectorChange: function () {
  2739. if (this.symptom_selecteds.length > 0) {
  2740. this.form.symptom = this.symptom_selecteds.join(",") + ",";
  2741. } else {
  2742. this.form.symptom = "";
  2743. }
  2744. },
  2745. disposeTextareaBlur: function () {
  2746. if (this.form.dispose.length > 0) {
  2747. this.dispose_selecteds = this.form.dispose.split(",");
  2748. } else {
  2749. this.dispose_selecteds = [];
  2750. }
  2751. },
  2752. disposeSelectorChange: function () {
  2753. if (this.dispose_selecteds.length > 0) {
  2754. this.form.dispose = this.dispose_selecteds.join(",") + ",";
  2755. } else {
  2756. this.form.dispose = "";
  2757. }
  2758. },
  2759. resultTextareaBlur: function () {
  2760. if (this.form.result.length > 0) {
  2761. this.result_selecteds = this.form.result.split(",");
  2762. } else {
  2763. this.result_selecteds = [];
  2764. }
  2765. },
  2766. setRecords(records) {
  2767. this.monitors = records;
  2768. },
  2769. resultSelectorChange: function () {
  2770. if (this.result_selecteds.length > 0) {
  2771. this.form.result = this.result_selecteds.join(",") + ",";
  2772. } else {
  2773. this.form.result = "";
  2774. }
  2775. },
  2776. deleteRecordAction: function () {
  2777. if (this.table_current_row == null) {
  2778. this.$message.error("请选择一条监测记录");
  2779. return;
  2780. }
  2781. this.$confirm("删除记录", "是否删除该监测记录", {
  2782. confirmButtonText: "确定",
  2783. cancelButtonText: "取消",
  2784. type: "warning",
  2785. })
  2786. .then(() => {
  2787. let mode = "4";
  2788. if (
  2789. this.table_current_row.creator > 0 &&
  2790. this.table_current_row.creator !=
  2791. this.$store.getters.xt_user.user.id
  2792. ) {
  2793. mode = "5";
  2794. }
  2795. const params = {
  2796. patient_id: this.patient_id,
  2797. record_id: this.table_current_row.id,
  2798. mode: mode,
  2799. };
  2800. postDelMonitorInfo(params).then((response) => {
  2801. if (response.data.state == 0) {
  2802. this.$message.error(response.data.msg);
  2803. return false;
  2804. } else {
  2805. const record_id = response.data.data.record_id;
  2806. for (let i = 0; i < this.monitors.length; i++) {
  2807. if (this.monitors[i].id == record_id) {
  2808. this.monitors.splice(i, 1);
  2809. }
  2810. }
  2811. this.$message.success("删除成功");
  2812. if(response.data.code =600000008){
  2813. this.infoDialogVisible = true
  2814. }
  2815. }
  2816. });
  2817. })
  2818. .catch(() => {});
  2819. },
  2820. getPermission() {
  2821. request
  2822. .get("/api/func_per/get", {
  2823. params: {
  2824. create_url: "/api/dislysis/monitor/edit?mode=1",
  2825. modify_url: "/api/dislysis/monitor/edit?mode=2",
  2826. modify_other_url: "/api/dislysis/monitor/edit?mode=3",
  2827. del_url: "/api/dialysis/monitor/del?mode=4",
  2828. del_other_url: "/api/dialysis/monitor/del?mode=5",
  2829. module: 7,
  2830. },
  2831. })
  2832. .then((res) => {
  2833. console.log(res);
  2834. if (res.data.state == 0) {
  2835. this.hasPermission = false;
  2836. } else if (res.data.state == 1) {
  2837. this.is_has_create = res.data.data.is_has_create;
  2838. this.is_has_exce = res.data.data.is_has_exce;
  2839. this.is_has_check = res.data.data.is_has_check;
  2840. this.is_has_modify = res.data.data.is_has_modify;
  2841. this.is_has_modify_other = res.data.data.is_has_modify_other;
  2842. this.is_has_modify_exce = res.data.data.is_has_modify_exce;
  2843. this.is_has_del = res.data.data.is_has_del;
  2844. this.is_has_del_other = res.data.data.is_has_del_other;
  2845. }
  2846. });
  2847. },
  2848. getBloodPressure(id) {
  2849. var name = "";
  2850. for (let i = 0; i < this.bloodPressureMmonitoringSite.length; i++) {
  2851. if (id == this.bloodPressureMmonitoringSite[i].id) {
  2852. name = this.bloodPressureMmonitoringSite[i].name;
  2853. }
  2854. }
  2855. return name;
  2856. },
  2857. getComplication(id) {
  2858. var name = "";
  2859. for (let i = 0; i < this.complicationList.length; i++) {
  2860. if (id == this.complicationList[i].id) {
  2861. name = this.complicationList[i].name;
  2862. }
  2863. }
  2864. return name;
  2865. },
  2866. saveInformation(){
  2867. var params = {
  2868. selected_date:this.selected_date,
  2869. patient_id:this.$route.query.patient_id,
  2870. record_date:this.$route.query.date,
  2871. module:7,
  2872. remark:this.remark,
  2873. }
  2874. saveInformation(params).then(response=>{
  2875. if(response.data.state == 1){
  2876. var information = response.data.data.information
  2877. this.$message.success("提交成功!")
  2878. this.infoDialogVisible = false
  2879. }
  2880. })
  2881. }
  2882. },
  2883. watch: {
  2884. patient: {
  2885. handler(newVal) {
  2886. this.patient_id = newVal.id;
  2887. },
  2888. deep: true,
  2889. },
  2890. },
  2891. };
  2892. </script>
  2893. <style style="stylesheet/scss" lang="scss" scoped>
  2894. .grid {
  2895. padding: 10px 0 20px 0;
  2896. .list {
  2897. ul {
  2898. @include display-flex;
  2899. @include align-items-center;
  2900. @include text-align;
  2901. @include justify-content-around;
  2902. cursor: pointer;
  2903. li {
  2904. font-size: 12px;
  2905. color: #5d6b7a;
  2906. margin-top: 20px;
  2907. p {
  2908. height: 30px;
  2909. line-height: 30px;
  2910. color: #34495e;
  2911. font-size: 14px;
  2912. }
  2913. img {
  2914. width: 50px;
  2915. height: 50px;
  2916. }
  2917. }
  2918. }
  2919. }
  2920. }
  2921. .txsj {
  2922. text-align: center;
  2923. margin-bottom: 20px;
  2924. }
  2925. .current-box-class::-webkit-scrollbar {
  2926. height: 20px; /*滚动条高度*/
  2927. }
  2928. </style>
  2929. <style style="stylesheet/scss" lang="scss">
  2930. .dialog_box .current-box-class .current-row > td {
  2931. background: #6fb5fa;
  2932. // color: #000;
  2933. /* font-size: 12px; */
  2934. }
  2935. .dialog_box .current-box-class .current-row:hover > td {
  2936. background: #6fb5fa;
  2937. // color: white;
  2938. /* font-size: 12px; */
  2939. }
  2940. .el-table__body-wrapper::-webkit-scrollbar {
  2941. height: 20px;
  2942. }
  2943. .dialog_box .current-box-class .current-row {
  2944. background: #87ceff;
  2945. }
  2946. .dialog_box tr:hover > td {
  2947. background-color: #ecf5ff !important;
  2948. color: #3a8ee6;
  2949. }
  2950. .dialog_box tr > td:hover {
  2951. background-color: #409eff !important;
  2952. color: #fff !important;
  2953. }
  2954. </style>