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

NavIgation.vue 18KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777
  1. <template>
  2. <div>
  3. <div class="grid">
  4. <div class="list">
  5. <ul>
  6. <li @click="showPrescription">
  7. <img src="@/assets/record/1.png" />
  8. <p>透析处方</p>
  9. </li>
  10. <li @click="showAccepts">
  11. <img src="@/assets/record/2.png" />
  12. <p>接诊评估</p>
  13. </li>
  14. <li @click="showAssessmentBefore">
  15. <img src="@/assets/record/3.png" />
  16. <p>透前评估</p>
  17. </li>
  18. <li @click="showDoctorAdviceDialog" class="newOrdersAdvice">
  19. <img src="@/assets/record/4.png" />
  20. <div>
  21. <p>临时医嘱</p>
  22. <span class="redpoint" v-if="getUnReadNum()">{{getUnReadNum()}}</span>
  23. </div>
  24. </li>
  25. <li @click="showDoubleCheck">
  26. <img src="@/assets/record/5.png" />
  27. <p>双人核对</p>
  28. </li>
  29. </ul>
  30. </div>
  31. <div class="list">
  32. <ul>
  33. <li @click="showComputerDialog">
  34. <img src="@/assets/record/6.png" />
  35. <p>透析上机</p>
  36. </li>
  37. <li @click="showMonitorDialog">
  38. <img src="@/assets/record/7.png" />
  39. <p>透析监测</p>
  40. </li>
  41. <li @click="showFinishDialog">
  42. <img src="@/assets/record/8.png" />
  43. <p>透析下机</p>
  44. </li>
  45. <li @click="showAssessmentAfterDialog">
  46. <img src="@/assets/record/9.png" />
  47. <p>透后评估</p>
  48. </li>
  49. <li @click="showrTeatmentSummary">
  50. <img src="@/assets/record/10.png" />
  51. <p>治疗小结</p>
  52. </li>
  53. </ul>
  54. </div>
  55. </div>
  56. <div class="middleLine"></div>
  57. <dialysis-prescription-dialog
  58. title="透析处方"
  59. ref="prescription"
  60. :patient="patient"
  61. :prescription="prescription"
  62. :solution="solution"
  63. @advice="adviceFunc"
  64. :niprocart_info="niprocart_info"
  65. :jms_info="jms_info"
  66. :fistula_needle_set_info="fistula_needle_set_info"
  67. :fistula_needle_set_16_info="fistula_needle_set_16_info"
  68. :hemoperfusion_info="hemoperfusion_info"
  69. :dialyser_sterilised_info="dialyser_sterilised_info"
  70. :filtryzer_info="filtryzer_info"
  71. :dialyzers_info="dialyzers_info"
  72. :injector_info="injector_info"
  73. :bloodlines_info="bloodlines_info"
  74. :tubingHemodialysis_info="tubingHemodialysis_info"
  75. :safe_package_info="safe_package_info"
  76. :aliquid_info="aliquid_info"
  77. :config="config"
  78. :admin_users="admin_users"
  79. :targetAdvices="longAdvices"
  80. :waitUploadAdvices="waitUploadAdvices"
  81. :is_open="is_open"
  82. :predialysis="predialysis_evaluation"
  83. :last_predialysis="last_predialysis_evaluation"
  84. :record="assessment_after_dislysis"
  85. :last_record="last_assessment_after_dislysis"
  86. :last_prescription="last_dialysis_prescribe"
  87. :dry_weight="last_dryWeight_dislysis"
  88. :schedual="temp_schedual"
  89. :stockType="stockType"
  90. :lastAssessment="lastAssessment"
  91. :mode_id="mode_id"
  92. ></dialysis-prescription-dialog>
  93. <double-check-dialog
  94. title="双人核对"
  95. ref="doubleCheck"
  96. :patient="patient"
  97. :predialysis_evaluation="predialysis_evaluation"
  98. :prescription="prescription"
  99. :double_check="double_check"
  100. :admin_users="admin_users"
  101. ></double-check-dialog>
  102. <accepts-treatment-dialog
  103. title="接诊评估"
  104. ref="accepts"
  105. :patient="patient"
  106. :receiver_treatment_access="receiver_treatment_access"
  107. ></accepts-treatment-dialog>
  108. <assessment-before-dislysis-dialog
  109. title="透前评估"
  110. ref="assessmentBefore"
  111. :patient="patient"
  112. :last_predialysis="last_predialysis_evaluation"
  113. :predialysis_evaluation="predialysis_evaluation"
  114. :admin_users="admin_users"
  115. :dry_weight="last_dryWeight_dislysis"
  116. :lastAssessment="lastAssessment"
  117. :prescription="prescription"
  118. :dryWeightList="dryWeightList"
  119. :docList="docList"
  120. ></assessment-before-dislysis-dialog>
  121. <treatment-summary-dialog
  122. title="治疗小结"
  123. ref="treatmentSummary"
  124. :patient="patient"
  125. :treatment_summary="treatment_summary"
  126. :prescription="prescription"
  127. :predialysis_evaluation="predialysis_evaluation"
  128. :doctor_advices="doctor_advices"
  129. :dialysis_order="dialysis_order"
  130. :monitors="monitor_records"
  131. :assessment_after_dislysis="assessment_after_dislysis"
  132. ></treatment-summary-dialog>
  133. <doctor-advice-dialog
  134. title="临时医嘱"
  135. ref="doctor_advice"
  136. :doctor_advices="doctor_advices"
  137. :patient="patient"
  138. :admin_users="admin_users"
  139. :dialysis_order="dialysis_order"
  140. :his_is_open="his_is_open"
  141. :predialysis="predialysis_evaluation"
  142. :is_advice_open="is_advice_open"
  143. ></doctor-advice-dialog>
  144. <computer-dialog
  145. title="透析上机"
  146. ref="computer_dialog"
  147. :dialysis_order="dialysis_order"
  148. :schedule="schedual"
  149. @monitor="add_monitor"
  150. :admins="admin_users"
  151. :device_numbers="device_numbers"
  152. :special_premission="special_premission"
  153. :patient="patient"
  154. :stockType="stockType"
  155. :lastOrder="lastOrder"
  156. ></computer-dialog>
  157. <monitor-dialog
  158. title="透析监测"
  159. ref="monitor_dialog"
  160. :monitors="monitor_records"
  161. @monitor="add_monitor"
  162. :patient="patient"
  163. ></monitor-dialog>
  164. <finish-dialog
  165. title="透析下机"
  166. ref="finish_dialog"
  167. :dialysis_order="dialysis_order"
  168. :schedule="schedual"
  169. :admins="admin_users"
  170. :prescription="prescription"
  171. @assessmentAfterDislysis="assessmentAfterDislysisFunc"
  172. :special_premission="special_premission"
  173. :patient="patient"
  174. ></finish-dialog>
  175. <assessment-after-dislysis
  176. title="透后评估"
  177. ref="assessment_after_dislysis"
  178. :assessment_after_dislysis="assessment_after_dislysis"
  179. :patient="patient"
  180. :prescription="prescription"
  181. :predialysis_evaluation="predialysis_evaluation"
  182. :dialysis_order="dialysis_order"
  183. :schedual="temp_schedual"
  184. ></assessment-after-dislysis>
  185. </div>
  186. </template>
  187. <script>
  188. import dialysisPrescriptionDialog from "./dialog/dialysisPrescriptionDialog";
  189. import doubleCheckDialog from "./dialog/doubleCheckDialog";
  190. import AssessmentAfterDislysis from "./dialog/AssessmentAfterDislysis";
  191. import acceptsTreatmentDialog from "./dialog/acceptsTreatmentDialog";
  192. import assessmentBeforeDislysisDialog from "./dialog/assessmentBeforeDislysisDialog";
  193. import MonitorDialog from "./dialog/monitor_dialog";
  194. import DoctorAdviceDialog from "./dialog/DoctorAdviceDialog";
  195. import treatmentSummaryDialog from "./dialog/treatmentSummaryDialog";
  196. import ComputerDialog from "./dialog/computer_dialog";
  197. import FinishDialog from "./dialog/finish_dialog";
  198. export default {
  199. name: "NavIgation",
  200. components: {
  201. dialysisPrescriptionDialog,
  202. doubleCheckDialog,
  203. AssessmentAfterDislysis,
  204. acceptsTreatmentDialog,
  205. assessmentBeforeDislysisDialog,
  206. treatmentSummaryDialog,
  207. MonitorDialog,
  208. DoctorAdviceDialog,
  209. ComputerDialog,
  210. FinishDialog
  211. },
  212. data() {
  213. return {
  214. temp_schedual: {},
  215. mode_id:1
  216. };
  217. },
  218. mounted() {},
  219. props: {
  220. mode_id:{
  221. type:Number
  222. },
  223. longAdvices: {
  224. // 临时医嘱
  225. type: Array,
  226. default: () => {
  227. return [];
  228. }
  229. },
  230. waitUploadAdvices: {
  231. // 临时医嘱
  232. type: Array,
  233. default: () => {
  234. return [];
  235. }
  236. },
  237. is_open: {
  238. // 临时医嘱
  239. type: Number,
  240. default: () => {
  241. return 0;
  242. }
  243. },his_is_open:{
  244. type: Number,
  245. default: () => {
  246. return 0;
  247. }
  248. },
  249. patient: {
  250. // 患者信息
  251. type: Object,
  252. default: () => {
  253. return { id: 0 };
  254. }
  255. },
  256. schedual: {
  257. // 患者排班信息
  258. type: Object,
  259. default: () => {
  260. return { id: 0 };
  261. }
  262. },
  263. prescription: {
  264. // 透析处方
  265. type: Object,
  266. default: () => {
  267. return { id: 0 };
  268. }
  269. },
  270. dialysis_prescription:{
  271. type: Object,
  272. },
  273. solution: {
  274. // 透析方案
  275. type: Object,
  276. default: () => {
  277. return { id: 0 };
  278. }
  279. }, system_prescribe: {
  280. // 系统透析方案
  281. type: Object,
  282. default: () => {
  283. return { id: 0 };
  284. }
  285. },
  286. receiver_treatment_access: {
  287. // 接诊评估
  288. type: Object,
  289. default: () => {
  290. return { id: 0 };
  291. }
  292. },
  293. predialysis_evaluation: {
  294. // 透前评估
  295. type: Object,
  296. default: () => {
  297. return { id: 0 };
  298. }
  299. },
  300. doctor_advices: {
  301. // 临时医嘱
  302. type: Array,
  303. default: () => {
  304. return [];
  305. }
  306. },
  307. his_doctor_advices:{
  308. // 临时医嘱
  309. type: Array,
  310. default: () => {
  311. return [];
  312. }
  313. },
  314. double_check: {
  315. // 双人核对
  316. type: Object,
  317. default: () => {
  318. return { id: 0 };
  319. }
  320. },
  321. assessment_after_dislysis: {
  322. // 透后评估
  323. type: Object,
  324. default: () => {
  325. return { id: 0 };
  326. }
  327. },
  328. treatment_summary: {
  329. // 治疗小结
  330. type: Object,
  331. default: () => {
  332. return { id: 0 };
  333. }
  334. },
  335. monitor_records: {
  336. // 透析监测
  337. type: Array,
  338. default: () => {
  339. return [];
  340. }
  341. },
  342. dialysis_order: {
  343. // 透析记录
  344. type: Object,
  345. default: () => {
  346. return { id: 0 };
  347. }
  348. },
  349. admin_users: {
  350. // 系统用户列表
  351. type: Array,
  352. default: () => {
  353. return [];
  354. }
  355. },
  356. devices: {
  357. // 设备
  358. type: Array,
  359. default: () => {
  360. return [];
  361. }
  362. },
  363. device_numbers: {
  364. // 床位
  365. type: Array,
  366. default: () => {
  367. return [];
  368. }
  369. },
  370. niprocart_info: {
  371. type: Array,
  372. default: () => {
  373. return [];
  374. }
  375. },
  376. jms_info: {
  377. type: Array,
  378. default: () => {
  379. return [];
  380. }
  381. },
  382. fistula_needle_set_info: {
  383. type: Array,
  384. default: () => {
  385. return [];
  386. }
  387. },
  388. fistula_needle_set_16_info: {
  389. type: Array,
  390. default: () => {
  391. return [];
  392. }
  393. },
  394. hemoperfusion_info: {
  395. type: Array,
  396. default: () => {
  397. return [];
  398. }
  399. },
  400. dialyser_sterilised_info: {
  401. type: Array,
  402. default: () => {
  403. return [];
  404. }
  405. },
  406. filtryzer_info: {
  407. type: Array,
  408. default: () => {
  409. return [];
  410. }
  411. },
  412. dialyzers_info: {
  413. type: Array,
  414. default: () => {
  415. return [];
  416. }
  417. },
  418. injector_info: {
  419. type: Array,
  420. default: () => {
  421. return [];
  422. }
  423. },
  424. bloodlines_info: {
  425. type: Array,
  426. default: () => {
  427. return [];
  428. }
  429. },
  430. tubingHemodialysis_info: {
  431. type: Array,
  432. default: () => {
  433. return [];
  434. }
  435. },
  436. safe_package_info: {
  437. type: Array,
  438. default: () => {
  439. return [];
  440. }
  441. },
  442. aliquid_info: {
  443. type: Array,
  444. default: () => {
  445. return [];
  446. }
  447. },
  448. headNurses: {
  449. type: Array,
  450. default: () => {
  451. return [];
  452. }
  453. },
  454. config: {
  455. type: Object,
  456. default: () => {
  457. return { id: 0 };
  458. }
  459. },
  460. admin_user_map: {
  461. // {user_id: admin_user object}
  462. type: Object,
  463. default: () => {
  464. return {};
  465. }
  466. },
  467. device_map: {
  468. // {device_id: device object}
  469. type: Object,
  470. default: () => {
  471. return {};
  472. }
  473. },
  474. device_number_map: {
  475. // {device_number_id: device_number object}
  476. type: Object,
  477. default: () => {
  478. return {};
  479. }
  480. },
  481. last_predialysis_evaluation: {
  482. //最后一条透前
  483. type: Object,
  484. default: () => {
  485. return { id: 0 };
  486. }
  487. },
  488. last_monitor_record: {
  489. //最后一条监测记录
  490. type: Object,
  491. default: () => {
  492. return { id: 0 };
  493. }
  494. },
  495. last_assessment_after_dislysis: {
  496. //最后一条透后记录 (除了今天录的)
  497. type: Object,
  498. default: () => {
  499. return { id: 0 };
  500. }
  501. },
  502. last_dialysis_prescribe: {
  503. //最后一条透析处方(除了今天录的)
  504. type: Object,
  505. default: () => {
  506. return { id: 0 };
  507. }
  508. },
  509. last_dryWeight_dislysis: {
  510. //最后一条干体重 (除了今天录的)
  511. type: Object,
  512. default: () => {
  513. return { id: 0 };
  514. }
  515. },
  516. special_premission: {
  517. type: Array,
  518. default: () => {
  519. return [];
  520. }
  521. },
  522. stockType:{
  523. type:Array,
  524. default:()=>{
  525. return [];
  526. }
  527. },
  528. lastAssessment:{
  529. // 最后一条血管通路(处理今天录的)
  530. type: Object,
  531. default: () => {
  532. return { id: 0 };
  533. }
  534. },
  535. is_advice_open:{
  536. type: Number,
  537. default: () => {
  538. return 0;
  539. }
  540. },
  541. lastOrder: {
  542. // 患者排班信息
  543. type: Object,
  544. default: () => {
  545. return { id: 0 };
  546. }
  547. },
  548. dryWeightList:{
  549. type:Array,
  550. default:()=>{
  551. return [];
  552. }
  553. },
  554. docList:{
  555. type:Array,
  556. default:()=>{
  557. return [];
  558. }
  559. },
  560. record_date:{
  561. type:String
  562. }
  563. },
  564. methods: {
  565. getUnReadNum: function() {
  566. let doctorAdvice = [];
  567. for (let y = 0; y < this.doctor_advices.length; y++) {
  568. if (this.doctor_advices[y].execution_state == 2) {
  569. doctorAdvice.push(this.doctor_advices[y]);
  570. }
  571. }
  572. const sorted = this.groupBy(doctorAdvice, function(item) {
  573. return [item.groupno];
  574. });
  575. // var strLength = 0
  576. // var arr = []
  577. // if(this.his_doctor_advices!=undefined && this.his_doctor_advices.length > 0){
  578. // for(let i=0;i<this.his_doctor_advices.length;i++){
  579. // if (this.his_doctor_advices[i].execution_state == 2) {
  580. // arr.push(this.his_doctor_advices[i]);
  581. // }
  582. // }
  583. // strLength = arr.length
  584. // }
  585. // console.log("232332323232323223",arrOne.length + strLength);
  586. return sorted.length
  587. },
  588. groupBy(array, f) {
  589. const groups = {};
  590. array.forEach(function(o) {
  591. const group = JSON.stringify(f(o));
  592. groups[group] = groups[group] || [];
  593. groups[group].push(o);
  594. });
  595. return Object.keys(groups).map(function(group) {
  596. return groups[group];
  597. });
  598. },
  599. setLastRecord: function(
  600. lastPredialysisEvaluation,
  601. lastMonitorRecord,
  602. lastAssessmentAfterDislysis,
  603. lastDialysisPrescribe,
  604. lastDryWeightDislysis,
  605. schedual,
  606. system_prescribe,
  607. ) {
  608. this.$refs.assessmentBefore.setLastRecord(
  609. lastPredialysisEvaluation,
  610. lastDryWeightDislysis,
  611. );
  612. this.$refs.prescription.setLastRecord(
  613. schedual,
  614. lastAssessmentAfterDislysis,
  615. lastPredialysisEvaluation,
  616. lastDialysisPrescribe,
  617. lastDryWeightDislysis,
  618. system_prescribe
  619. );
  620. this.temp_schedual = schedual
  621. // console.log("排班列表2222222222222222",schedual)
  622. },
  623. add_monitor: function(monitor) {
  624. this.monitor_records.push(monitor);
  625. console.log(this.monitor_records);
  626. this.monitor_records.sort((a, b) => b.operate_time - a.operate_time);
  627. this.monitor_records.reverse();
  628. console.log(this.monitor_records);
  629. this.$refs.monitor_dialog.setRecords(this.monitor_records);
  630. },
  631. adviceFunc: function() {
  632. this.$emit("advice");
  633. },
  634. showMonitorDialog: function() {
  635. this.$refs.monitor_dialog.show();
  636. },
  637. showAssessmentAfterDialog: function() {
  638. this.$refs.assessment_after_dislysis.show(this.assessment_after_dislysis,this.last_assessment_after_dislysis);
  639. },
  640. showDoctorAdviceDialog: function() {
  641. this.$refs.doctor_advice.show(this.his_is_open,this.is_advice_open);
  642. },
  643. showComputerDialog: function() {
  644. this.$refs.computer_dialog.show(this.dialysis_order,this.lastOrder);
  645. },
  646. showFinishDialog: function() {
  647. this.$refs.finish_dialog.show(this.dialysis_order);
  648. },
  649. showPrescription: function() {
  650. this.$refs.prescription.show(this.prescription,this.schedual,this.last_dialysis_prescribe,this.his_is_open,this.is_advice_open,this.admin_users);
  651. },
  652. showAccepts: function() {
  653. this.$refs.accepts.show(this.receiver_treatment_access);
  654. },
  655. showAssessmentBefore: function() {
  656. console.log("透前评估进入23232323我我哦",this.record_date)
  657. this.$refs.assessmentBefore.show(this.predialysis_evaluation,this.last_dryWeight_dislysis,this.last_predialysis_evaluation,this.lastAssessment,this.record_date);
  658. },
  659. showDoubleCheck: function() {
  660. this.$refs.doubleCheck.show();
  661. },
  662. showrTeatmentSummary: function() {
  663. this.$refs.treatmentSummary.show(this.treatment_summary);
  664. },
  665. assessmentAfterDislysisFunc: function(val) {
  666. this.assessment_after_dislysis = val;
  667. this.$refs.assessment_after_dislysis.setRecords(
  668. this.assessment_after_dislysis
  669. );
  670. this.$emit("assessmentAfterDislysis", this.assessment_after_dislysis);
  671. },
  672. showPre(){
  673. },
  674. getParentMethods:function(val){
  675. this.$parent.getScheduleDetail()
  676. }
  677. }
  678. };
  679. </script>
  680. <style style="stylesheet/scss" lang="scss" scoped>
  681. .grid {
  682. padding: 10px 0 20px 0;
  683. .list {
  684. ul {
  685. @include display-flex;
  686. @include align-items-center;
  687. @include text-align;
  688. @include justify-content-around;
  689. cursor: pointer;
  690. li {
  691. font-size: 12px;
  692. color: #5d6b7a;
  693. margin-top: 20px;
  694. p {
  695. height: 30px;
  696. line-height: 30px;
  697. color: #34495e;
  698. font-size: 14px;
  699. }
  700. img {
  701. width: 50px;
  702. height: 50px;
  703. }
  704. }
  705. }
  706. }
  707. }
  708. .txsj {
  709. text-align: center;
  710. margin-bottom: 20px;
  711. }
  712. .redpoint {
  713. display: inline-block;
  714. height: 26px;
  715. width: 26px;
  716. line-height: 26px;
  717. text-align: center;
  718. font-size: 16px;
  719. border-radius: 20px;
  720. color: #fff;
  721. background: #f56c6c;
  722. position: absolute;
  723. top: -6px;
  724. right: -8px;
  725. border: 1px solid #fff;
  726. }
  727. .newOrdersAdvice {
  728. position: relative;
  729. }
  730. </style>