血透系统pad前端

assessmentAfter.vue 23KB

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