assessmentAfter.vue 21KB

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