assessmentBefore.vue 22KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692
  1. <template>
  2. <div class="plate-box">
  3. <h2 class="title">
  4. <span class="line"></span>
  5. <p>{{ title }}</p>
  6. <span class="line"></span>
  7. </h2>
  8. <div class="plate ">
  9. <ul>
  10. <li v-if="isShow('透前称重')">
  11. <label>透前称重 : </label>
  12. <span class="content">{{ weight_before ? weight_before : "" }}</span>
  13. <span class="unit">{{ weight_before ? "kg" : "" }}</span>
  14. </li>
  15. <li v-if="this.$store.getters.user.template_info.template_id == 6">
  16. <label>透前净体重 : </label>
  17. <span
  18. class="content">{{ weight_before ? parseFloat(weight_before - additional_weight).toFixed(1) : "" }}</span>
  19. <span class="unit">{{ weight_before ? "kg" : "" }}</span>
  20. </li>
  21. <li v-if="isShow('收缩压')">
  22. <label>收缩压 : </label>
  23. <span class="content">{{
  24. systolic_blood_pressure ? systolic_blood_pressure : ""
  25. }}</span>
  26. <span class="unit">{{ systolic_blood_pressure ? "mmHg" : "" }}</span>
  27. </li>
  28. <li v-if="isShow('舒张压')">
  29. <label>舒张压 : </label>
  30. <span class="content">{{
  31. diastolic_blood_pressure ? diastolic_blood_pressure : ""
  32. }}</span>
  33. <span class="unit">{{ diastolic_blood_pressure ? "mmHg" : "" }}</span>
  34. </li>
  35. <li v-if="isShow('前次透析后')">
  36. <label>前次透析后: </label>
  37. <span class="content">{{ last_post_dialysis }}</span>
  38. <span class="unit"></span>
  39. </li>
  40. <li v-if="isShow('导管打折')">
  41. <label>导管打折 : </label>
  42. <span class="content" v-if="this.record.catheter_bend == 1">{{ '有' }}</span>
  43. <span class="content" v-if="this.record.catheter_bend == 2">{{ '无' }}</span>
  44. <span class="unit"></span>
  45. </li>
  46. <li v-if="isShow('导管')">
  47. <label>导管 : </label>
  48. <span class="content">{{ catheter }}</span>
  49. <span class="unit"></span>
  50. </li>
  51. <li v-if="isShow('衣物重')">
  52. <label>衣物重 : </label>
  53. <span class="content">{{
  54. additional_weight ? additional_weight : ""
  55. }}</span>
  56. <span class="unit">{{ additional_weight ? "kg" : "" }}</span>
  57. </li>
  58. <li v-if="isShow('干体重')">
  59. <label>干体重 : </label>
  60. <span class="content">{{ dry_weight ? dry_weight : "" }}</span>
  61. <span class="unit">{{ dry_weight ? "kg" : "" }}</span>
  62. </li>
  63. <li v-if="isShow('透析期间')">
  64. <label>透析期间 : </label>
  65. <span class="content">{{ dialysis_interphase }}</span>
  66. <span class="unit"></span>
  67. </li>
  68. <!-- </ul>
  69. <ul> -->
  70. <li v-if="isShow('体温')">
  71. <label>体温 : </label>
  72. <span class="content">{{ temperature ? temperature : "" }}</span>
  73. <span class="unit">{{ temperature ? "℃" : "" }}</span>
  74. </li>
  75. <li v-if="isShow('脉搏')">
  76. <label>脉搏 : </label>
  77. <span class="content">{{
  78. pulse_frequency ? pulse_frequency : ""
  79. }}</span>
  80. <span class="unit">{{ pulse_frequency ? "次/分" : "" }}</span>
  81. </li>
  82. <li v-if="isShow('呼吸频率')">
  83. <label>呼吸频率 : </label>
  84. <span class="content">{{
  85. breathing_rate ? breathing_rate : ""
  86. }}</span>
  87. <span class="unit">{{ breathing_rate ? "次/分" : "" }}</span>
  88. </li>
  89. <li v-if="isShow('透析前症状')">
  90. <label>透析前症状 : </label>
  91. <span class="content">{{ symptom_before_dialysis }}</span>
  92. <span class="unit"></span>
  93. </li>
  94. <li v-if="isShow('出血')">
  95. <label>出血:</label>
  96. <span class="content">{{
  97. is_hemorrhage ? hemorrhage + ";" + hemorrhage_other : "无"
  98. }}</span>
  99. <span class="unit"> </span>
  100. </li>
  101. <li v-if="isShow('并发症')">
  102. <label>并发症: </label>
  103. <span class="content">{{ complication }}</span>
  104. <span class="unit"></span>
  105. </li>
  106. <li v-if="isShow('内瘘')">
  107. <label>内瘘: </label>
  108. <span class="content">{{ internal_fistula }}</span>
  109. <span class="unit"></span>
  110. </li>
  111. <!-- </ul>
  112. <ul> -->
  113. <li v-if="isShow('透析机型号')">
  114. <label>透析机型号: </label>
  115. <span class="content">{{ machine_type ? machine_type : "" }}</span>
  116. <span class="unit"></span>
  117. </li>
  118. <li v-if="isShow('透析频次')">
  119. <label>透析频次: </label>
  120. <span class="content">{{
  121. dialysis_count ? dialysis_count : ""
  122. }}</span>
  123. <span class="unit">{{ dialysis_count ? "次/周" : "" }}</span>
  124. </li>
  125. <li v-if="isShow('血管通路(内瘘)')">
  126. <label>血管通路(内瘘) : </label>
  127. <span class="content">{{ blood_access_internal_fistula }}</span>
  128. </li>
  129. <li v-if="isShow('血管杂音')">
  130. <label>血管杂音 : </label>
  131. <span class="content">{{
  132. getBloodAccessNoise(this.record.blood_access_noise)
  133. }}</span>
  134. </li>
  135. <li v-if="isShow('穿刺针')">
  136. <label>穿刺针 : </label>
  137. <span class="content">{{ this.record.puncture_needle }}</span>
  138. </li>
  139. <li v-if="isShow('穿刺方式')">
  140. <label>穿刺方式 : </label>
  141. <span class="content">{{ getWay(this.record.puncture_way) }}</span>
  142. </li>
  143. <li v-if="isShow('中心静脉置管')">
  144. <label>中心静脉置管:</label>
  145. <span class="content">{{
  146. getVenousCatheterization(this.record.venous_catheterization)
  147. }}</span>
  148. <span class="unit"> </span>
  149. </li>
  150. <!--
  151. </ul>
  152. <ul > -->
  153. <li v-if="isShow('位置')">
  154. <label>位置:</label>
  155. <span class="content">{{
  156. getVenousCatheterizationPart(
  157. this.record.venous_catheterization_part
  158. )
  159. }}</span>
  160. <span class="content">{{ venous_catheterization_part_other }}</span>
  161. </li>
  162. <li v-if="isShow('中心静脉导管')">
  163. <label>中心静脉导管: </label>
  164. <span class="content">{{ this.record.ductus_arantii }}</span>
  165. </li>
  166. <li v-if="isShow('导管其他')">
  167. <label>导管其他:</label>
  168. <span class="content">{{ ductus_arantii_other }}</span>
  169. <span class="unit"> </span>
  170. </li>
  171. <li v-if="isShow('急诊')">
  172. <label>急诊: </label>
  173. <span class="content">{{
  174. getEmergencyTreatment(this.record.emergency_treatment)
  175. }}</span>
  176. <span class="content">{{ emergency_treatment_other }}</span>
  177. </li>
  178. <li v-if="isShow('感染')">
  179. <label>感染:</label>
  180. <span class="content">{{
  181. this.record.is_infect == 1 ? "无" : "有"
  182. }}</span>
  183. <span class="unit"> </span>
  184. </li>
  185. <li v-if="isShow('其他感染情况')">
  186. <label>其他感染情况:</label>
  187. <span class="content">{{ infect_other }}</span>
  188. <span class="unit"> </span>
  189. </li>
  190. <li v-if="isShow('外露')">
  191. <label>外露:</label>
  192. <span class="content">{{
  193. this.record.exposed ? this.record.exposed : ""
  194. }}</span>
  195. <span class="unit">cm</span>
  196. </li>
  197. <li v-if="isShow('皮肤')">
  198. <label>皮肤:</label>
  199. <span class="content">{{ getSkin(this.record.skin) }}</span>
  200. <span class="unit"></span>
  201. </li>
  202. <li v-if="isShow('其他皮肤情况')">
  203. <label>其他皮肤情况:</label>
  204. <span class="content">{{ skin_other }}</span>
  205. <span class="unit"> </span>
  206. </li>
  207. <li v-if="isShow('血管通路操作')">
  208. <label>血管通路操作:</label>
  209. <span class="content">{{ getBloodAccessOpera(this.record.blood_access_part_opera_id) }}</span>
  210. <span class="unit"> </span>
  211. </li>
  212. <li v-if="isShow('体液过多症状')">
  213. <label>体液过多症状:</label>
  214. <span class="content">{{ getHumorExcessiv(this.record.humor_excessive_symptom) }}</span>
  215. <span class="unit"> </span>
  216. </li>
  217. <li v-if="isShow('血管通路操作')">
  218. <label>血管通路操作:</label>
  219. <span class="content">{{ getBloodAccessOpera(this.record.blood_access_part_opera_id) }}</span>
  220. <span class="unit"> </span>
  221. </li>
  222. <li v-if="isShow('血管通路皮肤情况')">
  223. <label>血管通路皮肤情况: </label>
  224. <span class="content">{{ internal_fistula_skin }}</span>
  225. <span class="unit"></span>
  226. </li>
  227. </ul>
  228. </div>
  229. <div class="note">
  230. 备注 : <span>{{ remark }}</span>
  231. </div>
  232. </div>
  233. </template>
  234. <script>
  235. import { getDataConfig } from '@/utils/data'
  236. export default {
  237. name: 'assessmentBefore',
  238. data () {
  239. return {
  240. title: '透前评估 ',
  241. template_id: 0
  242. }
  243. },
  244. props: {
  245. record: {
  246. type: Object
  247. },
  248. dry_weights: {
  249. type: Object
  250. }
  251. },
  252. created () {
  253. this.template_id = this.$store.getters.user.template_info.template_id
  254. },
  255. computed: {
  256. internal_fistula_skin: function () {
  257. if (this.record.id == 0) {
  258. return '-'
  259. }
  260. return this.record.internal_fistula_skin
  261. },
  262. machine_type: function () {
  263. if (this.record == null || this.record.id == '') {
  264. return ''
  265. }
  266. return this.record.machine_type
  267. },
  268. weight_before: function () {
  269. if (this.record == null || this.record.id == '') {
  270. return '-'
  271. }
  272. return this.record.weight_before
  273. },
  274. additional_weight: function () {
  275. if (this.record == null || this.record.id == '') {
  276. return '-'
  277. }
  278. return this.record.additional_weight
  279. },
  280. systolic_blood_pressure: function () {
  281. if (this.record == null || this.record.id == '') {
  282. return '-'
  283. }
  284. return this.record.systolic_blood_pressure
  285. },
  286. last_post_dialysis: function () {
  287. if (this.record == null || this.record.id == '') {
  288. return '-'
  289. }
  290. return this.record.last_post_dialysis
  291. },
  292. dry_weight: function () {
  293. if (this.$store.getters.user.template_info.template_id == 6) {
  294. if (this.dry_weights != null && this.dry_weights.id > 0) {
  295. return this.dry_weights.dry_weight
  296. } else {
  297. if (this.record == null || this.record.id == '') {
  298. return '-'
  299. }
  300. return this.record.dry_weight
  301. }
  302. } else {
  303. if (this.record == null || this.record.id == '') {
  304. return '-'
  305. }
  306. return this.record.dry_weight
  307. }
  308. },
  309. diastolic_blood_pressure: function () {
  310. if (this.record == null || this.record.id == '') {
  311. return '-'
  312. }
  313. return this.record.diastolic_blood_pressure
  314. },
  315. dialysis_interphase: function () {
  316. if (this.record == null || this.record.id == '') {
  317. return '-'
  318. }
  319. return this.record.dialysis_interphase
  320. },
  321. catheter: function () {
  322. if (this.record == null || this.record.id == '') {
  323. return '-'
  324. }
  325. return this.record.catheter
  326. },
  327. temperature: function () {
  328. if (this.record == null || this.record.id == '') {
  329. return '-'
  330. }
  331. return this.record.temperature
  332. },
  333. pulse_frequency: function () {
  334. if (this.record == null || this.record.id == '') {
  335. return '-'
  336. }
  337. return this.record.pulse_frequency
  338. },
  339. breathing_rate: function () {
  340. if (this.record == null || this.record.id == '') {
  341. return '-'
  342. }
  343. return this.record.breathing_rate
  344. },
  345. symptom_before_dialysis: function () {
  346. if (this.record == null || this.record.id == '') {
  347. return '-'
  348. }
  349. return this.record.symptom_before_dialysis
  350. },
  351. complication: function () {
  352. if (this.record == null || this.record.id == '') {
  353. return '-'
  354. }
  355. return this.record.complication
  356. },
  357. internal_fistula: function () {
  358. console.log(this.record)
  359. if (this.record == null || this.record.id == '') {
  360. return '-'
  361. } else {
  362. return this.record.internal_fistula
  363. // if (this.record != null && this.record.id != undefined && this.record.id > 0) {
  364. // var internal_fistula_list = getDataConfig(
  365. // "hemodialysis",
  366. // "internal_fistula"
  367. // );
  368. // var value = ""
  369. // if (this.record.internal_fistula.length > 0) {
  370. // var internal_fistula_value_arr = this.record.internal_fistula.split(",")
  371. // for (let a = 0; a < internal_fistula_value_arr.length; a++) {
  372. // for (let i = 0; i < internal_fistula_list.length; i++) {
  373. // console.log(internal_fistula_list[i].name)
  374. // if (internal_fistula_value_arr[a] == internal_fistula_list[i].name) {
  375. // if (value.length == 0) {
  376. // value = internal_fistula_value_arr[a]
  377. // } else {
  378. // value = value + "," + internal_fistula_value_arr[a]
  379. // }
  380. // }
  381. // }
  382. // }
  383. // }
  384. // return value;
  385. // }else{
  386. // return "-";
  387. //
  388. // }
  389. }
  390. },
  391. is_hemorrhage: function () {
  392. if (this.record == null || this.record.id == '') {
  393. return false
  394. }
  395. return this.record.is_hemorrhage == 1
  396. },
  397. hemorrhage: function () {
  398. if (this.record == null || this.record.id == '') {
  399. return '-'
  400. }
  401. return this.record.hemorrhage
  402. },
  403. hemorrhage_other: function () {
  404. if (this.record == null || this.record.id == '') {
  405. return '-'
  406. }
  407. return this.record.hemorrhage_other
  408. },
  409. remark: function () {
  410. if (this.record == null || this.record.id == '') {
  411. return ''
  412. }
  413. return this.record.remark
  414. },
  415. dialysis_count: function () {
  416. if (this.record == null || this.record.id == '') {
  417. return '-'
  418. }
  419. return this.record.dialysis_count
  420. },
  421. internal_fistula_other: function () {
  422. if (this.record == null || this.record.id == '') {
  423. return '-'
  424. }
  425. return this.record.internal_fistula_other
  426. },
  427. venous_catheterization_part_other: function () {
  428. if (this.record == null || this.record.id == '') {
  429. return '-'
  430. }
  431. return this.record.venous_catheterization_part_other
  432. },
  433. emergency_treatment_other: function () {
  434. if (this.record == null || this.record.id == '') {
  435. return '-'
  436. }
  437. return this.record.emergency_treatment_other
  438. },
  439. blood_access_internal_fistula: function () {
  440. var name1 = ''
  441. var name2 = ''
  442. if (this.record == null || this.record.id == '') {
  443. return '-'
  444. }
  445. if (this.record.blood_access_internal_fistula == undefined) {
  446. name1 = ''
  447. } else {
  448. name1 = this.record.blood_access_internal_fistula + ','
  449. }
  450. if (this.record.internal_fistula_other == undefined) {
  451. name2 = ''
  452. } else {
  453. name2 = this.record.internal_fistula_other
  454. }
  455. return name1 + name2
  456. },
  457. infect_other: function () {
  458. if (this.record == null || this.record.id == '') {
  459. return '-'
  460. }
  461. return this.record.infect_other
  462. },
  463. skin_other: function () {
  464. if (this.record == null || this.record.id == '') {
  465. return '-'
  466. }
  467. return this.record.skin_other
  468. },
  469. ductus_arantii_other: function () {
  470. if (this.record == null || this.record.id == '') {
  471. return '-'
  472. }
  473. return this.record.ductus_arantii_other
  474. }
  475. },
  476. methods: {
  477. getBloodAccessPart: function (id) {
  478. var BloodAccessPart = getDataConfig('hemodialysis', 'vascular_access')
  479. var BloodAccessPartName = ''
  480. for (let i = 0; i < BloodAccessPart.length; i++) {
  481. if (BloodAccessPart[i].id == id) {
  482. BloodAccessPartName = BloodAccessPart[i].name
  483. }
  484. }
  485. return BloodAccessPartName
  486. },
  487. getHumorExcessiv: function (id) {
  488. var humor_excessive_symptom_array = getDataConfig('hemodialysis', 'humor_excessive_symptom')
  489. var humor_excessive_symptom_Name = ''
  490. for (let i = 0; i < humor_excessive_symptom_array.length; i++) {
  491. if (humor_excessive_symptom_array[i].id == id) {
  492. humor_excessive_symptom_Name = humor_excessive_symptom_array[i].name
  493. }
  494. }
  495. return humor_excessive_symptom_Name
  496. },
  497. getBloodAccessOpera: function (id) {
  498. var BloodAccessOpera = getDataConfig(
  499. 'hemodialysis',
  500. 'vascular_access_desc'
  501. )
  502. var BloodAccessOperaName = ''
  503. for (let i = 0; i < BloodAccessOpera.length; i++) {
  504. if (BloodAccessOpera[i].id == id) {
  505. BloodAccessOperaName = BloodAccessOpera[i].name
  506. }
  507. }
  508. return BloodAccessOperaName
  509. },
  510. isShow (name) {
  511. var filedList = this.$store.getters.user.fileds
  512. for (let i = 0; i < filedList.length; i++) {
  513. if (
  514. filedList[i].module == 3 &&
  515. filedList[i].filed_name_cn == name &&
  516. filedList[i].is_show == 1
  517. ) {
  518. return true
  519. }
  520. }
  521. return false
  522. },
  523. getBloodAccessInternalFistula: function (id) {
  524. var BloodAccessInternalFistulaOptions = this.$store.getters
  525. .blood_access_internal_fistula
  526. var BloodAccessInternalFistulaName = ''
  527. for (let i = 0; i < BloodAccessInternalFistulaOptions.length; i++) {
  528. if (BloodAccessInternalFistulaOptions[i].id == id) {
  529. BloodAccessInternalFistulaName =
  530. BloodAccessInternalFistulaOptions[i].name
  531. }
  532. }
  533. return BloodAccessInternalFistulaName
  534. },
  535. getBloodAccessNoise: function (id) {
  536. var BloodAccessNoiseOptions = this.$store.getters.blood_access_noise
  537. var BloodAccessNoiseName = ''
  538. for (let i = 0; i < BloodAccessNoiseOptions.length; i++) {
  539. if (BloodAccessNoiseOptions[i].id == id) {
  540. BloodAccessNoiseName = BloodAccessNoiseOptions[i].name
  541. }
  542. }
  543. return BloodAccessNoiseName
  544. },
  545. getVenousCatheterization: function (id) {
  546. var VenousCatheterizationOptions = this.$store.getters
  547. .venous_catheterization
  548. var VenousCatheterizationName = ''
  549. for (let i = 0; i < VenousCatheterizationOptions.length; i++) {
  550. if (VenousCatheterizationOptions[i].id == id) {
  551. VenousCatheterizationName = VenousCatheterizationOptions[i].name
  552. }
  553. }
  554. return VenousCatheterizationName
  555. },
  556. getWay: function (id) {
  557. var PunctureWayOptions = getDataConfig('hemodialysis', 'puncture_method')
  558. var PunctureWayOptionsName = ''
  559. for (let i = 0; i < PunctureWayOptions.length; i++) {
  560. if (PunctureWayOptions[i].id == id) {
  561. PunctureWayOptionsName = PunctureWayOptions[i].name
  562. }
  563. }
  564. return PunctureWayOptionsName
  565. },
  566. getVenousCatheterizationPart: function (id) {
  567. var venousCatheterizationPartOptions = this.$store.getters
  568. .venous_catheterization_part
  569. var venousCatheterizationPartName = ''
  570. for (let i = 0; i < venousCatheterizationPartOptions.length; i++) {
  571. if (venousCatheterizationPartOptions[i].id == id) {
  572. venousCatheterizationPartName =
  573. venousCatheterizationPartOptions[i].name
  574. }
  575. }
  576. return venousCatheterizationPartName
  577. },
  578. getDuctusArantii: function (id) {
  579. var ductusArantiiOptions = this.$store.getters.ductus_arantii
  580. var ductusArantiiOptionsName = ''
  581. for (let i = 0; i < ductusArantiiOptions.length; i++) {
  582. if (ductusArantiiOptions[i].id == id) {
  583. ductusArantiiOptionsName = ductusArantiiOptions[i].name
  584. }
  585. }
  586. return ductusArantiiOptionsName
  587. },
  588. getEmergencyTreatment: function (id) {
  589. var emergencyTreatmentOptions = this.$store.getters.emergency_treatment
  590. var emergencyTreatmentName = ''
  591. for (let i = 0; i < emergencyTreatmentOptions.length; i++) {
  592. if (emergencyTreatmentOptions[i].id == id) {
  593. emergencyTreatmentName = emergencyTreatmentOptions[i].name
  594. }
  595. }
  596. return emergencyTreatmentName
  597. },
  598. getSkin: function (id) {
  599. var skinOptions = this.$store.getters.skin
  600. var skinName = ''
  601. for (let i = 0; i < skinOptions.length; i++) {
  602. if (skinOptions[i].id == id) {
  603. skinName = skinOptions[i].name
  604. }
  605. }
  606. return skinName
  607. }
  608. // setRecord(record) {
  609. // if (record == null) {
  610. // this.info1[0].content = "0"
  611. // this.info1[1].content = "0"
  612. // this.info1[2].content = "0"
  613. // // this.info1[3].content = ""
  614. // this.info2[0].content = "0"
  615. // this.info2[1].content = "0"
  616. // this.info2[2].content = ""
  617. // this.info2[3].content = ""
  618. // this.info3[0].content = "0"
  619. // this.info3[1].content = "0"
  620. // this.info3[2].content = ""
  621. // this.info3[3].content = ""
  622. // this.note = ""
  623. // } else {
  624. // this.info1[0].content = record.weight_before
  625. // this.info1[1].content = record.systolic_blood_pressure
  626. // this.info1[2].content = record.last_post_dialysis
  627. // // this.info1[3].content = ""
  628. // this.info2[0].content = record.additional_weight
  629. // this.info2[1].content = record.diastolic_blood_pressure
  630. // this.info2[2].content = record.dialysis_interphase
  631. // this.info2[3].content = record.catheter
  632. // this.info3[0].content = record.temperature
  633. // this.info3[1].content = record.breathing_rate
  634. // this.info3[2].content = record.symptom_before_dialysis
  635. // this.info3[3].content = record.complication
  636. // this.note = record.remark
  637. // }
  638. // }
  639. }
  640. }
  641. </script>
  642. <style rel="stylesheet/scss" lang="scss" scoped>
  643. </style>