血透系统pad前端

assessmentAfter.vue 23KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647
  1. <template>
  2. <div class="plate-box">
  3. <h2 class="title"><span class="line"></span>
  4. <p>{{title}}</p><span class="line"></span></h2>
  5. <div class="plate ">
  6. <ul>
  7. <li v-if="isShow('透后体重')">
  8. <label for="thtz">透后体重 : </label>
  9. <span class="content" id="thtz">{{weight_after?weight_after:''}}</span>
  10. <span class="unit">{{weight_after?'kg':''}}</span>
  11. </li>
  12. <li v-if="isShow('收缩压')">
  13. <label for="ssy">收缩压 : </label>
  14. <span class="content" id="ssy">{{systolic_blood_pressure?systolic_blood_pressure:''}}</span>
  15. <span class="unit">{{systolic_blood_pressure?'mmHg':''}}</span>
  16. </li>
  17. <li v-if="isShow('实际超滤量')">
  18. <label for="sjcll">实际超滤量: </label>
  19. <span class="content" id="sjcll">{{actual_ultrafiltration?actual_ultrafiltration:''}}</span>
  20. <span v-if="template_id == 6" class="unit">{{actual_ultrafiltration?'ml':''}}</span>
  21. <span v-else class="unit">{{actual_ultrafiltration?'L':''}}</span>
  22. </li>
  23. <li v-if="isShow('透析器凝血')">
  24. <label for="nx">透析器凝血 : </label>
  25. <span class="content" id="nx">{{cruor}}</span>
  26. </li>
  27. <li v-if="isShow('内瘘')">
  28. <label for="nw">内瘘 : </label>
  29. <span id="nw" class="content">{{internal_fistula}}</span>
  30. </li>
  31. <li v-if="isShow('导管')">
  32. <label for="dg">导管 : </label>
  33. <span id="dg" class="content">{{catheter}}</span>
  34. </li>
  35. <li v-if="isShow('穿刺处血肿')">
  36. <label for="jccxz">穿刺处血肿 : </label>
  37. <span id="jccxz" class="content">{{puncture_point_haematoma_name}}</span>
  38. </li>
  39. <li v-if="patient_gose==3&&isShow('科室')">
  40. <label for="ks">科室 : </label>
  41. <span id="ks" class="content">{{inpatient_department}}</span>
  42. </li>
  43. <li v-if="isShow('体温')">
  44. <label for="tw">体温 : </label>
  45. <span class="content" id="tw">{{temperature?temperature:''}}</span>
  46. <span class="unit">{{temperature?'℃':''}}</span>
  47. </li>
  48. <li v-if="isShow('呼吸频率')">
  49. <label for="ml">呼吸频率 : </label>
  50. <span id="ml" class="content">{{breathing_rate?breathing_rate:''}}</span>
  51. <span class="unit">{{breathing_rate?'次/min':''}}</span>
  52. </li>
  53. <li v-if="isShow('脉搏')">
  54. <label for="ml">脉搏 : </label>
  55. <span id="ml" class="content">{{pulse_frequency?pulse_frequency:''}}</span>
  56. <span class="unit">{{pulse_frequency?'次/分':''}}</span>
  57. </li>
  58. <li v-if="isShow('血管通路操作')">
  59. <label for="xgtlcz">血管通路操作: </label>
  60. <span id="xgtlcz" class="content">{{blood_access_opera}}</span>
  61. </li>
  62. <!-- </ul>
  63. <ul> -->
  64. <li v-if="isShow('体重减少')">
  65. <label for="tzjs">体重减少 : </label>
  66. <span class="content" id="tzjs">{{weight_loss?weight_loss:''}}</span>
  67. <span class="unit">{{weight_loss?'kg':''}}</span>
  68. </li>
  69. <li v-if="isShow('舒张压')">
  70. <label for="szy">舒张压 : </label>
  71. <span id="szy" class="content">{{diastolic_blood_pressure?diastolic_blood_pressure:''}}</span>
  72. <span class="unit">{{diastolic_blood_pressure?'mmHg':''}}</span>
  73. </li>
  74. <li v-if="isShow('实际置换量')">
  75. <label for="sjzhl">实际置换量 : </label>
  76. <span id="sjzhl" class="content">{{actual_displacement?actual_displacement:''}}</span>
  77. <span class="unit">{{actual_displacement?'ml':''}}</span>
  78. </li>
  79. <li v-if="isShow('透后症状')">
  80. <label for="thzz">透后症状 : </label>
  81. <span id="thzz" class="content">{{symptom_after_dialysis}}</span>
  82. </li>
  83. <li v-if="isShow('血管通路部位')">
  84. <label for="xgtl">血管通路部位 : </label>
  85. <span id="xgtl" class="content">{{blood_access_part}}</span>
  86. </li>
  87. <li v-if="isShow('并发症')">
  88. <label for="bfz">并发症: </label>
  89. <span id="bfz" class="content">{{complication}}</span>
  90. </li>
  91. <li v-if="isShow('压迫后内瘘震颤')">
  92. <label for="yph">压迫后内瘘震颤: </label>
  93. <span id="yph" class="content">{{internal_fistula_tremor_ac_name}}</span>
  94. </li>
  95. <li v-if="patient_gose==3&&isShow('交待病房护士/患者/陪人观察内容')">
  96. <label for="jdbf">交待病房护士/患者/陪人观察内容 : </label>
  97. <span class="content" id="jdbf">{{observation_content}}</span>
  98. </li>
  99. <li v-if="isShow('实际治疗时长')">
  100. <label for="sjzl">实际治疗时长 : </label>
  101. <span id="sjzl" class="content">{{actual_treatment_hour}}时{{actual_treatment_minute}}分</span>
  102. </li>
  103. <li v-if="isShow('透析中入量')">
  104. <label for="txzrl">透析中入量: </label>
  105. <span id="txzrl" class="content">{{dialysis_intakes_feed?dialysis_intakes_feed:''}}{{getUnit(this.record.dialysis_intakes_unit)}}</span>
  106. </li>
  107. <li v-if="isShow('患者去向')">
  108. <label for="hzqx">患者去向: </label>
  109. <span id="hzqx" class="content">{{patient_gose_name}}</span>
  110. </li>
  111. <li v-if="patient_gose==3&&isShow('其他观察内容')">
  112. <label for="qtgcnr">其他观察内容 : </label>
  113. <span id="qtgcnr" class="content">{{observation_content_other}}</span>
  114. </li>
  115. <li v-if="isShow('拔针后穿刺点渗血')">
  116. <label for="bzh">拔针后穿刺点渗血: </label>
  117. <span id="bzh" class="content">{{puncture_point_oozing_blood_name}}</span>
  118. </li>
  119. <!-- </ul>
  120. <ul > -->
  121. <li v-if="isShow('透析过程')">
  122. <label for="tw">透析过程 : </label>
  123. <span class="content" id="tw" v-if="this.record.dialysis_process == 1">完成</span>
  124. <span class="content" id="tw" v-if="this.record.dialysis_process == 2">提前{{in_advance_minute}}min</span>
  125. </li>
  126. <li v-if="this.record.dialysis_process == 2&&isShow('透析过程提前原因')">
  127. <label for="tw">透析过程提前原因 : </label>
  128. <span class="content" id="tw">{{in_advance_reason}}</span>
  129. </li>
  130. <li v-if="isShow('内瘘管拔针后压迫止血时间')">
  131. <label for="ml">内瘘管拔针后压迫止血时间 : </label>
  132. <span id="ml" class="content" v-if="hemostasis_minute">{{hemostasis_minute}}min</span>
  133. <span id="ml" class="content" v-else>-min</span>
  134. </li>
  135. <li v-if="isShow('内瘘管拔针后压迫止血操作')">
  136. <label for="ml">内瘘管拔针后压迫止血操作 : </label>
  137. <span id="ml" class="content">{{getOpera(this.record.hemostasis_opera)}}</span>
  138. </li>
  139. <li v-if="isShow('内瘘震颤和血管杂音')">
  140. <label for="sjzl">内瘘震颤和血管杂音 : </label>
  141. <span id="sjzl" class="content">{{getTremorNoise(this.record.tremor_noise)}}</span>
  142. </li>
  143. <li v-if="isShow('失衡综合症')">
  144. <label for="txzrl">失衡综合症: </label>
  145. <span id="txzrl" class="content">{{getDisequilibriumSyndrome(this.record.disequilibrium_syndrome)}}</span>
  146. </li>
  147. <li v-if="this.record.disequilibrium_syndrome == 2&&isShow('失衡综合症症状')">
  148. <label for="txzrl">失衡综合症症状: </label>
  149. <span id="txzrl" class="content">{{this.record.disequilibrium_syndrome_option}}</span>
  150. </li>
  151. <li v-if="isShow('动脉管道')">
  152. <label for="xgtlcz">动脉管道: </label>
  153. <span id="xgtlcz" class="content">{{getArterialTubeName(this.record.arterial_tube)}}</span>
  154. </li>
  155. <li v-if="isShow('静脉管道')">
  156. <label for="bzh">静脉管道: </label>
  157. <span id="bzh" class="content">{{getIntravenousTubeName(this.record.intravenous_tube)}}</span>
  158. </li>
  159. <li v-if="isShow('透析器')">
  160. <label for="hzqx">透析器: </label>
  161. <span id="hzqx" class="content">{{getDialyzer(this.record.dialyzer)}}</span>
  162. </li>
  163. <li v-if="isShow('透析期间进食')">
  164. <label for="bzh">透析期间进食: </label>
  165. <span id="bzh" class="content">{{eat_name}}</span>
  166. </li>
  167. </ul>
  168. </div>
  169. <div class="note">备注 : <span>{{remark}}</span></div>
  170. </div>
  171. </template>
  172. <script>
  173. export default {
  174. name: 'DialysisPrescription',
  175. data () {
  176. return {
  177. title: '透后评估 ',
  178. template_id: 0
  179. // note: "无明显异常",
  180. // doctor: "刘小军 医生",
  181. // info1: [
  182. // { value: "1", label: "透后体重 : ", content: "55", unit: "kg" },
  183. // { value: "2", label: "收缩压 : ", content: "174", unit: "mmHg" },
  184. // { value: "3", label: "实际超滤量: ", content: "20", unit: "ml" },
  185. // { value: "4", label: "疑血 : ", content: "无震颤", unit: "" },
  186. // { value: "5", label: "", content: "", unit: "" }
  187. // ],
  188. // info2: [
  189. // { value: "1", label: "体重减少 : ", content: "3", unit: "kg" },
  190. // { value: "2", label: "舒张压 : ", content: "200", unit: "mmHg" },
  191. // { value: "3", label: "实际置换量 : ", content: "20", unit: "ml" },
  192. // { value: "3", label: "透后症状 : ", content: "无症状", unit: "" },
  193. // { value: "4", label: "导管 : ", content: "导管堵塞", unit: "" }
  194. // ],
  195. // info3: [
  196. // { value: "1", label: "体温 : ", content: "14", unit: "℃" },
  197. // { value: "2", label: "心率 : ", content: "2", unit: "次/分" },
  198. // { value: "3", label: "实际治疗时长 : ", content: "4时4分", unit: "" },
  199. // { value: "4", label: "透析中入量: ", content: "一般", unit: "" },
  200. // { value: "4", label: "并发症: ", content: "痔疮出血", unit: "" }
  201. // ]
  202. }
  203. },
  204. props: {
  205. record: {
  206. type: Object
  207. }
  208. },
  209. created () {
  210. this.template_id = this.$store.getters.user.template_info.template_id
  211. },
  212. computed: {
  213. weight_after: function () {
  214. if (this.record == null || this.record.id == '') {
  215. return '-'
  216. }
  217. return this.record.weight_after
  218. },
  219. systolic_blood_pressure: function () {
  220. if (this.record == null || this.record.id == '') {
  221. return '-'
  222. }
  223. return this.record.systolic_blood_pressure
  224. },
  225. actual_ultrafiltration: function () {
  226. if (this.record == null || this.record.id == '') {
  227. return '-'
  228. }
  229. return this.record.actual_ultrafiltration
  230. },
  231. cruor: function () {
  232. if (this.record == null || this.record.id == '') {
  233. return '-'
  234. }
  235. return this.record.cruor
  236. },
  237. internal_fistula: function () {
  238. if (this.record == null || this.record.id == '') {
  239. return '-'
  240. }
  241. return this.record.internal_fistula
  242. },
  243. weight_loss: function () {
  244. if (this.record == null || this.record.id == '') {
  245. return '-'
  246. }
  247. return this.record.weight_loss
  248. },
  249. inpatient_department: function () {
  250. if (this.record == null || this.record.id == '') {
  251. return '-'
  252. }
  253. return this.record.inpatient_department
  254. },
  255. patient_gose: function () {
  256. if (this.record == null || this.record.id == '') {
  257. return 0
  258. }
  259. return this.record.patient_gose
  260. },
  261. diastolic_blood_pressure: function () {
  262. if (this.record == null || this.record.id == '') {
  263. return '-'
  264. }
  265. return this.record.diastolic_blood_pressure
  266. },
  267. actual_displacement: function () {
  268. if (this.record == null || this.record.id == '') {
  269. return '-'
  270. }
  271. return this.record.actual_displacement
  272. },
  273. symptom_after_dialysis: function () {
  274. if (this.record == null || this.record.id == '') {
  275. return '-'
  276. }
  277. return this.record.symptom_after_dialysis
  278. },
  279. blood_access_part: function () {
  280. if (this.record == null || this.record.id == '') {
  281. return '-'
  282. }
  283. let vascular_access = this.$store.getters.vascular_access
  284. let valen = vascular_access.length
  285. let name = '-'
  286. for (let index = 0; index < valen; index++) {
  287. if (vascular_access[index].id == this.record.blood_access_part_id) {
  288. name = vascular_access[index].name
  289. break
  290. }
  291. }
  292. return name
  293. },
  294. puncture_point_oozing_blood_name: function () {
  295. if (this.record == null || this.record.id == '') {
  296. return '-'
  297. }
  298. switch (this.record.puncture_point_oozing_blood) {
  299. case 1:
  300. return '有'
  301. break
  302. case 2:
  303. return '无'
  304. break
  305. default:
  306. return '-'
  307. break
  308. }
  309. },
  310. eat_name: function () {
  311. if (this.record == null || this.record.id == '') {
  312. return '-'
  313. }
  314. switch (this.record.is_eat) {
  315. case 1:
  316. return '有'
  317. break
  318. case 2:
  319. return '无'
  320. break
  321. default:
  322. return '-'
  323. break
  324. }
  325. },
  326. patient_gose_name: function () {
  327. if (this.record == null || this.record.id == '') {
  328. return '-'
  329. }
  330. switch (this.record.patient_gose) {
  331. case 1:
  332. return '离院'
  333. break
  334. case 2:
  335. return '留观'
  336. break
  337. case 3:
  338. return '住院'
  339. break
  340. default:
  341. return '-'
  342. break
  343. }
  344. },
  345. blood_access_opera: function () {
  346. if (this.record == null || this.record.id == '') {
  347. return '-'
  348. }
  349. let vascular_access = this.$store.getters.vascular_access_desc
  350. let valen = vascular_access.length
  351. let name = '-'
  352. for (let index = 0; index < valen; index++) {
  353. if (vascular_access[index].id == this.record.blood_access_part_opera_id) {
  354. name = vascular_access[index].name
  355. break
  356. }
  357. }
  358. return name
  359. },
  360. catheter: function () {
  361. if (this.record == null || this.record.id == '') {
  362. return '-'
  363. }
  364. return this.record.catheter
  365. },
  366. puncture_point_haematoma_name: function () {
  367. if (this.record == null || this.record.id == '') {
  368. return '-'
  369. }
  370. switch (this.record.puncture_point_haematoma) {
  371. case 1:
  372. return '有'
  373. break
  374. case 2:
  375. return '无'
  376. break
  377. default:
  378. return '-'
  379. break
  380. }
  381. },
  382. breathing_rate: function () {
  383. if (this.record == null || this.record.id == '') {
  384. return '-'
  385. }
  386. return this.record.breathing_rate
  387. },
  388. temperature: function () {
  389. if (this.record == null || this.record.id == '') {
  390. return '-'
  391. }
  392. return this.record.temperature
  393. },
  394. pulse_frequency: function () {
  395. if (this.record == null || this.record.id == '') {
  396. return '-'
  397. }
  398. return this.record.pulse_frequency
  399. },
  400. actual_treatment_hour: function () {
  401. if (this.record == null || this.record.id == '') {
  402. return '-'
  403. }
  404. return this.record.actual_treatment_hour
  405. },
  406. actual_treatment_minute: function () {
  407. if (this.record == null || this.record.id == '') {
  408. return '-'
  409. }
  410. return this.record.actual_treatment_minute
  411. },
  412. dialysis_intakes_feed: function () {
  413. if (this.record == null || this.record.id == '') {
  414. return '-'
  415. }
  416. return this.record.dialysis_intakes
  417. },
  418. observation_content_other: function () {
  419. if (this.record == null || this.record.id == '') {
  420. return '-'
  421. }
  422. return this.record.observation_content_other
  423. },
  424. observation_content: function () {
  425. if (this.record == null || this.record.id == '') {
  426. return '-'
  427. }
  428. return this.record.observation_content
  429. },
  430. complication: function () {
  431. if (this.record == null || this.record.id == '') {
  432. return '-'
  433. }
  434. return this.record.complication
  435. },
  436. internal_fistula_tremor_ac_name: function () {
  437. if (this.record == null || this.record.id == '') {
  438. return '-'
  439. }
  440. switch (this.record.internal_fistula_tremor_ac) {
  441. case 1:
  442. return '存在'
  443. break
  444. case 2:
  445. return '减弱'
  446. break
  447. case 3:
  448. return '无'
  449. break
  450. default:
  451. return '-'
  452. break
  453. }
  454. },
  455. remark: function () {
  456. if (this.record == null || this.record.id == '') {
  457. return ''
  458. }
  459. return this.record.remark
  460. },
  461. in_advance_minute: function () {
  462. if (this.record == null || this.record.id == '') {
  463. return ''
  464. }
  465. return this.record.in_advance_minute
  466. },
  467. in_advance_reason: function () {
  468. if (this.record == null || this.record.id == '') {
  469. return ''
  470. }
  471. return this.record.in_advance_reason + ',' + this.record.in_advance_reason_other
  472. },
  473. hemostasis_minute: function () {
  474. if (this.record == null || this.record.id == '') {
  475. return ''
  476. }
  477. return this.record.hemostasis_minute
  478. },
  479. in_advance_reason_other: function () {
  480. if (this.record == null || this.record.id == '') {
  481. return ''
  482. }
  483. return this.record.in_advance_reason_other
  484. }
  485. },
  486. methods: {
  487. isShow (name) {
  488. var filedList = this.$store.getters.user.fileds
  489. for (let i = 0; i < filedList.length; i++) {
  490. if (filedList[i].module == 5 && filedList[i].filed_name_cn == name && filedList[i].is_show == 1) {
  491. return true
  492. }
  493. }
  494. return false
  495. },
  496. getOpera: function (id) {
  497. var hemostasis_opera = this.$store.getters.hemostasis_opera
  498. var hemostasisOperaName = ''
  499. for (let i = 0; i < hemostasis_opera.length; i++) {
  500. if (hemostasis_opera[i].id == id) {
  501. hemostasisOperaName = hemostasis_opera[i].name
  502. }
  503. }
  504. return hemostasisOperaName
  505. },
  506. getTremorNoise: function (id) {
  507. var tremor_noise = this.$store.getters.tremor_noise
  508. var tremorNoiseName = ''
  509. for (let i = 0; i < tremor_noise.length; i++) {
  510. if (tremor_noise[i].id == id) {
  511. tremorNoiseName = tremor_noise[i].name
  512. }
  513. }
  514. return tremorNoiseName
  515. },
  516. getDisequilibriumSyndrome: function (id) {
  517. var disequilibrium_syndrome = this.$store.getters.disequilibrium_syndrome
  518. var disequilibriumSyndromeName = ''
  519. for (let i = 0; i < disequilibrium_syndrome.length; i++) {
  520. if (disequilibrium_syndrome[i].id == id) {
  521. disequilibriumSyndromeName = disequilibrium_syndrome[i].name
  522. }
  523. }
  524. return disequilibriumSyndromeName
  525. },
  526. getDisequilibriumSyndromeOptionName: function (id) {
  527. var disequilibrium_syndrome_option = this.$store.getters.disequilibrium_syndrome_option
  528. var disequilibriumSyndromeOptionName = ''
  529. for (let i = 0; i < disequilibrium_syndrome_option.length; i++) {
  530. if (disequilibrium_syndrome_option[i].id == id) {
  531. disequilibriumSyndromeOptionName = disequilibrium_syndrome_option[i].name
  532. }
  533. }
  534. return disequilibriumSyndromeOptionName
  535. },
  536. getArterialTubeName: function (id) {
  537. var arterial_tube = this.$store.getters.arterial_tube
  538. var arterialTubeName = ''
  539. for (let i = 0; i < arterial_tube.length; i++) {
  540. if (arterial_tube[i].id == id) {
  541. arterialTubeName = arterial_tube[i].name
  542. }
  543. }
  544. return arterialTubeName
  545. },
  546. getIntravenousTubeName: function (id) {
  547. var intravenous_tube = this.$store.getters.intravenous_tube
  548. var intravenousTubeName = ''
  549. for (let i = 0; i < intravenous_tube.length; i++) {
  550. if (intravenous_tube[i].id == id) {
  551. intravenousTubeName = intravenous_tube[i].name
  552. }
  553. }
  554. return intravenousTubeName
  555. },
  556. getDialyzer: function (id) {
  557. var dialyzer = this.$store.getters.dialyzer
  558. var dialyzerName = ''
  559. for (let i = 0; i < dialyzer.length; i++) {
  560. if (dialyzer[i].id == id) {
  561. dialyzerName = dialyzer[i].name
  562. }
  563. }
  564. return dialyzerName
  565. },
  566. getUnit: function (val) {
  567. switch (this.record.dialysis_intakes_unit) {
  568. case 1:
  569. return 'g'
  570. break
  571. case 2:
  572. return 'ml'
  573. break
  574. default:
  575. return '-'
  576. break
  577. }
  578. },
  579. // setRecord(record) {
  580. // if (record == null) {
  581. // this.info1[0].content = ""
  582. // this.info1[1].content = ""
  583. // this.info1[2].content = ""
  584. // this.info1[3].content = ""
  585. // this.info1[4].content = ""
  586. // this.info2[0].content = ""
  587. // this.info2[1].content = ""
  588. // this.info2[2].content = ""
  589. // this.info2[3].content = ""
  590. // this.info2[4].content = ""
  591. // this.info3[0].content = ""
  592. // this.info3[1].content = ""
  593. // this.info3[2].content = ""
  594. // this.info3[3].content = ""
  595. // this.info3[4].content = ""
  596. // this.note = ""
  597. // } else {
  598. // this.info1[0].content = record.weight_after
  599. // this.info1[1].content = record.systolic_blood_pressure
  600. // this.info1[2].content = record.actual_ultrafiltration
  601. // this.info1[3].content = record.cruor
  602. // // this.info1[4].content = record.systolic_blood_pressure
  603. // this.info2[0].content = record.weight_loss
  604. // this.info2[1].content = record.diastolic_blood_pressure
  605. // this.info2[2].content = record.actual_displacement
  606. // this.info2[3].content = record.symptom_after_dialysis
  607. // this.info2[4].content = record.catheter
  608. // this.info3[0].content = record.temperature
  609. // this.info3[1].content = record.pulse_frequency
  610. // this.info3[2].content = record.actual_treatment_hour
  611. // this.info3[3].content = record.dialysis_intakes_feed
  612. // this.info3[4].content = record.complication
  613. // this.note = record.remark
  614. // }
  615. // }
  616. },
  617. }
  618. </script>
  619. <style rel="stylesheet/scss" lang="scss" scoped>
  620. </style>