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

dialysisIndex.vue 32KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991
  1. <template>
  2. <div class="main-contain">
  3. <div
  4. class="loadingBox"
  5. v-loading="loading"
  6. element-loading-text="拼命加载中"
  7. element-loading-spinner="el-icon-loading"
  8. element-loading-background="rgba(0, 0, 0, 0.8)"
  9. v-if="dialysisShow"
  10. >
  11. <div style="padding-top: 56px;width:100%;" >
  12. <nav-igation
  13. ref="nav"
  14. title="弹窗导航"
  15. @advice="adviceFunc"
  16. :patient="patient"
  17. :schedual="schedual"
  18. :prescription="prescription"
  19. :solution="solution"
  20. :receiver_treatment_access="receiver_treatment_access"
  21. :predialysis_evaluation="predialysis_evaluation"
  22. :doctor_advices="doctor_advices"
  23. :double_check="double_check"
  24. :assessment_after_dislysis="assessment_after_dislysis"
  25. :treatment_summary="treatment_summary"
  26. :monitor_records="monitor_records"
  27. :dialysis_order="dialysis_order"
  28. :admin_users="admin_users"
  29. :devices="devices"
  30. :device_numbers="device_numbers"
  31. :admin_user_map="admin_user_map"
  32. :device_map="device_map"
  33. :device_number_map="device_number_map"
  34. :niprocart_info="niprocart_info"
  35. :jms_info="jms_info"
  36. :fistula_needle_set_info="fistula_needle_set_info"
  37. :fistula_needle_set_16_info="fistula_needle_set_16_info"
  38. :hemoperfusion_info="hemoperfusion_info"
  39. :dialyser_sterilised_info="dialyser_sterilised_info"
  40. :filtryzer_info="filtryzer_info"
  41. :dialyzers_info="dialyzers_info"
  42. :injector_info="injector_info"
  43. :bloodlines_info="bloodlines_info"
  44. :tubingHemodialysis_info="tubingHemodialysis_info"
  45. :safe_package_info="safe_package_info"
  46. :aliquid_info="aliquid_info"
  47. :config="config"
  48. :longAdvices="longAdvices"
  49. :waitUploadAdvices="waitUploadAdvices"
  50. :is_open="is_open"
  51. :last_predialysis_evaluation="lastPredialysisEvaluation"
  52. :last_monitor_record="lastMonitorRecord"
  53. :last_assessment_after_dislysis="lastAssessmentAfterDislysis"
  54. :last_dialysis_prescribe="lastDialysisPrescribe"
  55. :last_dryWeight_dislysis="lastDryWeightDislysis"
  56. :special_premission="headNurses"
  57. @assessmentAfterDislysis="assessmentAfterDislysisFunc"
  58. :system_prescribe="system_prescribe"
  59. :his_is_open="his_is_open"
  60. :lastAssessment="lastAssessment"
  61. :stockType="stockType"
  62. :mode_id="mode_id"
  63. :is_advice_open="is_advice_open"
  64. :record_date="date"
  65. >
  66. </nav-igation>
  67. <basic-infor
  68. :patient="patient"
  69. :device_number="schedual.id == 0 ? '' : schedual.device_number.number"
  70. :steps="steps"
  71. title="基本信息"
  72. ></basic-infor>
  73. <dialysis-prescription
  74. :prescription="prescription"
  75. :solution="solution"
  76. :device_map="device_map"
  77. :preparestock="preparestock"
  78. title="透析处方"
  79. ></dialysis-prescription>
  80. <!-- <past-data class="往期数据"></past-data> -->
  81. <div style="height: 20px;background-color: #f6f8f9"></div>
  82. <accepts-assessment
  83. :record="receiver_treatment_access"
  84. title="接诊评估"
  85. ></accepts-assessment>
  86. <assessment-before
  87. :record="predialysis_evaluation"
  88. ref="assessment_before"
  89. title="透前评估"
  90. ></assessment-before>
  91. <stat-order
  92. ref="stat_order"
  93. :advices="doctor_advices"
  94. :doctor_map="admin_user_map"
  95. title="临时医嘱"
  96. ></stat-order>
  97. <double-check
  98. ref="double_check"
  99. :record="double_check"
  100. :admin_map="admin_user_map"
  101. title="双人核对 "
  102. ></double-check>
  103. <dialysis-computer
  104. ref="dialysis_computer"
  105. :record="dialysis_order"
  106. :admin_map="admin_user_map"
  107. :device_number_map="device_number_map"
  108. title="透析上机 "
  109. ></dialysis-computer>
  110. <dialysis-monitoring
  111. ref="monitoring"
  112. :monitores="monitor_records"
  113. title="透析监测"
  114. ></dialysis-monitoring>
  115. <dialysis-off
  116. ref="dialysis_off"
  117. :record="dialysis_order"
  118. :admin_map="admin_user_map"
  119. title="透析下机 "
  120. ></dialysis-off>
  121. <assessment-after
  122. ref="assessment_after"
  123. :record="assessment_after_dislysis"
  124. title="透后评估"
  125. ></assessment-after>
  126. <treatment-of
  127. ref="treatment_of"
  128. :record="treatment_summary"
  129. title="治疗小结"
  130. ></treatment-of>
  131. </div>
  132. </div>
  133. <div style="padding-top: 56px;width:100%;text-align:center;font-size:22px;color:red;" v-else>该患者未排班,请先去排班</div>
  134. </div>
  135. </template>
  136. <script>
  137. const moment = require('moment')
  138. import axios from 'axios'
  139. import NavIgation from '@/xt_pages/dialysis/details/NavIgation'
  140. import BasicInfor from '@/xt_pages/dialysis/details/BasicInfor'
  141. import DialysisPrescription from '@/xt_pages/dialysis/details/DialysisPrescription'
  142. import PastData from '@/xt_pages/dialysis/details/pastData'
  143. import AcceptsAssessment from '@/xt_pages/dialysis/details/acceptsAssessment'
  144. import AssessmentBefore from '@/xt_pages/dialysis/details/assessmentBefore'
  145. import StatOrder from '@/xt_pages/dialysis/details/statOrder'
  146. import DialysisComputer from '@/xt_pages/dialysis/details/dialysisComputer'
  147. import DoubleCheck from '@/xt_pages/dialysis/details/doubleCheck'
  148. import DialysisMonitoring from '@/xt_pages/dialysis/details/dialysisMonitoring'
  149. import DialysisOff from '@/xt_pages/dialysis/details/dialysisOff'
  150. import AssessmentAfter from '@/xt_pages/dialysis/details/assessmentAfter'
  151. import TreatmentOf from '@/xt_pages/dialysis/details/treatmentOf'
  152. import OperationStaff from '@/xt_pages/dialysis/details/operationStaff'
  153. import {
  154. getDialysisScheduleDetail,
  155. getLongAdvice,
  156. getDialysisRecordInitData,
  157. getDialysisSchedules
  158. } from '@/api/dialysis_record'
  159. import { parseTime } from '@/utils'
  160. import BreadCrumb from '@/xt_pages/components/bread-crumb'
  161. export default {
  162. name: 'index',
  163. components: {
  164. NavIgation,
  165. BasicInfor,
  166. DialysisPrescription,
  167. PastData,
  168. AcceptsAssessment,
  169. AssessmentBefore,
  170. StatOrder,
  171. DialysisComputer,
  172. DoubleCheck,
  173. DialysisMonitoring,
  174. DialysisOff,
  175. AssessmentAfter,
  176. TreatmentOf,
  177. OperationStaff,
  178. BreadCrumb
  179. },
  180. props:{
  181. record_date:String,
  182. patientid:Number,
  183. dialysisShow:Boolean
  184. },
  185. data() {
  186. return {
  187. crumbs: [
  188. { path: false, name: '透析管理' },
  189. { path: false, name: '透析记录' },
  190. { path: false, name: '透析单' }
  191. ],
  192. dialogFormVisible: false,
  193. orders: false,
  194. loading: false,
  195. patient_id: 0,
  196. date: 0,
  197. longAdvices: [],
  198. waitUploadAdvices: [],
  199. is_open: 0,
  200. targetAdvices: [],
  201. patient: { id: 0 }, // 患者信息
  202. schedual: { id: 0 }, // 患者排班信息
  203. prescription: { id: 0 }, // 透析处方
  204. solution: { id: 0 }, // 透析方案
  205. system_prescribe: { id: 0 },
  206. receiver_treatment_access: { id: 0 }, // 接诊评估
  207. predialysis_evaluation: { id: 0 }, // 透前评估
  208. doctor_advices: [], // 临时医嘱
  209. double_check: { id: 0 }, // 双人核对
  210. assessment_after_dislysis: { id: 0 }, // 透后评估
  211. treatment_summary: { id: 0 }, // 治疗小结
  212. monitor_records: [], // 透析监测
  213. dialysis_order: { id: 0 }, // 透析记录
  214. admin_users: [], // 系统用户列表
  215. devices: [], // 设备
  216. device_numbers: [], // 床位号
  217. admin_user_map: {}, // {user_id: admin_user object}
  218. device_map: {}, // {device_id: device}
  219. device_number_map: {}, // {device_number_id: device_number}
  220. niprocart_info: [],
  221. jms_info: [],
  222. fistula_needle_set_info: [],
  223. fistula_needle_set_16_info: [],
  224. hemoperfusion_info: [],
  225. dialyser_sterilised_info: [],
  226. filtryzer_info: [],
  227. dialyzers_info: [],
  228. injector_info: [],
  229. bloodlines_info: [],
  230. tubingHemodialysis_info: [],
  231. safe_package_info: [],
  232. aliquid_info: [],
  233. config: {},
  234. his_is_open:0,
  235. is_advice_open:0,
  236. lastPredialysisEvaluation: { id: 0 },
  237. lastMonitorRecord: { id: 0 },
  238. lastAssessmentAfterDislysis: { id: 0 },
  239. lastDryWeightDislysis: { id: 0 },
  240. lastAssessment:{id:0},
  241. headNurses: [],
  242. lastDialysisPrescribe: { id: 0 },
  243. //
  244. activeName: 'first',
  245. selected_date: new Date(),
  246. // search_input 和 search_keyword,使输入关键字时不会经常刷新 filtedSchedules
  247. search_keyword: '', // 确定用于搜索的关键字
  248. search_input: '', // 输入中的关键字
  249. patient_state: [
  250. { value: 0, label: '全部患者' },
  251. { value: 1, label: '已签到' },
  252. { value: 2, label: '未签到' },
  253. { value: 3, label: '已上机' },
  254. { value: 4, label: '已下机' }
  255. ],
  256. patientStateVal: 0,
  257. treat_state: [
  258. { value: 0, label: '全部治疗' },
  259. { value: 1, label: '待开处方' },
  260. { value: 2, label: '待开小结' },
  261. { value: 3, label: '待医嘱核对' },
  262. ],
  263. treatStateVal: 0,
  264. schedule_options: [
  265. { value: 0, label: '全部班' },
  266. { value: 1, label: '上午' },
  267. { value: 2, label: '下午' },
  268. { value: 3, label: '晚上' }
  269. ],
  270. scheduleStateVal: 0,
  271. zone_options: [
  272. { id: 0, text: '全部分区' }
  273. ],
  274. zoneVal: 0,
  275. tableData: [],
  276. tableData1: [],
  277. arr: [],
  278. newName: '',
  279. newTime: '',
  280. scheudle_mode:"",
  281. showView:false,
  282. curPatient:{},
  283. queueConfig:{},
  284. stockType:[],
  285. preparestock:[],
  286. dialysisShow:false,
  287. mode_id:1
  288. }
  289. },
  290. created() {
  291. var patient_id = this.patientid
  292. var date = this.record_date
  293. this.patient_id = patient_id
  294. this.date = date
  295. // var ymd = parseTime(this.record_date, '{y}-{m}-{d}')
  296. getDialysisSchedules(this.record_date).then(rs => {
  297. var resp = rs.data
  298. if (resp.state == 1) {
  299. var schedules = resp.data.schedules
  300. let arr = []
  301. schedules.map(item => {
  302. if(item.patient_id == this.patient_id){
  303. arr.push(item.patient_id)
  304. console.log('item',item)
  305. this.mode_id = item.mode_id
  306. }
  307. })
  308. if(arr.length > 0){
  309. this.dialysisShow = true
  310. }else{
  311. this.dialysisShow = false
  312. }
  313. console.log('this.dialysisShowthis.dialysisShowthis.dialysisShow',this.dialysisShow)
  314. } else {
  315. this.$message.error(resp.msg)
  316. }
  317. })
  318. },
  319. mounted() {
  320. if(this.dialysisShow == true){
  321. this.getScheduleDetail()
  322. this.getLongAdvice()
  323. }
  324. },
  325. watch:{
  326. patientid:{
  327. handler(newVal){
  328. // var ymd = parseTime(new Date(), '{y}-{m}-{d}')
  329. getDialysisSchedules(this.record_date).then(rs => {
  330. var resp = rs.data
  331. if (resp.state == 1) {
  332. var schedules = resp.data.schedules
  333. let arr = []
  334. schedules.map(item => {
  335. if(item.patient_id == this.patient_id){
  336. arr.push(item.patient_id)
  337. this.mode_id = item.mode_id
  338. }
  339. })
  340. if(arr.length > 0){
  341. this.dialysisShow = true
  342. }else{
  343. this.dialysisShow = false
  344. }
  345. console.log('this.dialysisShowthis.dialysisShowthis.dialysisShow',this.dialysisShow)
  346. } else {
  347. this.$message.error(resp.msg)
  348. }
  349. })
  350. console.log('执行执行执行执行执行执行',this.dialysisShow)
  351. if(this.dialysisShow == true){
  352. console.log('执行')
  353. this.patient_id = newVal
  354. this.getScheduleDetail()
  355. this.getLongAdvice()
  356. }
  357. },
  358. deep:true
  359. },
  360. },
  361. computed: {
  362. websocket() {
  363. return this.$store.state.user.websocket;
  364. },
  365. steps: function() {
  366. var steps = [
  367. { title: '透析处方', finish: false },
  368. { title: '接诊评估', finish: false },
  369. { title: '透前评估', finish: false },
  370. { title: '临时医嘱', finish: false },
  371. { title: '双人核对', finish: false },
  372. { title: '透析上机', finish: false },
  373. { title: '透析监测', finish: false },
  374. { title: '透析下机', finish: false },
  375. { title: '透后评估', finish: false },
  376. { title: '治疗小结', finish: false }
  377. ]
  378. steps[0].finish = this.prescription.id && this.prescription.creater > 0
  379. steps[1].finish = this.receiver_treatment_access.id > 0
  380. steps[2].finish =
  381. this.predialysis_evaluation.id > 0 &&
  382. this.predialysis_evaluation.creater > 0
  383. steps[3].finish = this.doctor_advices.length > 0
  384. steps[5].finish = this.dialysis_order.id > 0
  385. steps[7].finish =
  386. this.dialysis_order.id > 0 && this.dialysis_order.stage == 2
  387. steps[4].finish =
  388. this.double_check.id > 0 &&
  389. this.double_check.creater > 0 &&
  390. this.double_check.modifier > 0
  391. steps[6].finish = this.monitor_records.length > 0
  392. steps[8].finish =
  393. this.assessment_after_dislysis.id > 0 &&
  394. this.assessment_after_dislysis.creater > 0
  395. steps[9].finish = this.treatment_summary.id > 0
  396. return steps
  397. },
  398. filtedSchedules: function() {
  399. var search_keyword = this.search_keyword
  400. if (search_keyword.length > 0) {
  401. var schedules = []
  402. for (let o_i = 0; o_i < this.zone_schedules.length; o_i++) {
  403. const scheduleInfo = this.zone_schedules[o_i]
  404. var originSchedules = scheduleInfo.schedules
  405. if (originSchedules.length == 0) {
  406. continue
  407. }
  408. var filtedSchedules = []
  409. for (let s_i = 0; s_i < originSchedules.length; s_i++) {
  410. const schedule = originSchedules[s_i]
  411. if (schedule.patient.name.indexOf(search_keyword) != -1) {
  412. filtedSchedules.push(schedule)
  413. // break
  414. }
  415. }
  416. if (filtedSchedules.length > 0) {
  417. schedules.push({ zone_id: scheduleInfo.zone_id, zone_name: scheduleInfo.zone_name, schedules: filtedSchedules })
  418. }
  419. }
  420. return schedules
  421. }
  422. // var zone_selected = this.zoneVal
  423. // var timetype_selected = this.scheduleStateVal
  424. // if ((zone_selected == 0 && timetype_selected == 0) || this.zone_options.length <= 1) {
  425. // var schedules = []
  426. // for (let index = 0; index < this.zone_schedules.length; index++) {
  427. // const scheduleInfo = this.zone_schedules[index]
  428. // if (scheduleInfo.schedules.length != 0) {
  429. // schedules.push(scheduleInfo)
  430. // }
  431. // }
  432. // return schedules
  433. // }
  434. // var schedules = []
  435. // for (let o_i = 0; o_i < this.zone_schedules.length; o_i++) {
  436. // const scheduleInfo = this.zone_schedules[o_i]
  437. // if (zone_selected == scheduleInfo.zone_id && timetype_selected == 0) {
  438. // if (scheduleInfo.schedules.length == 0) {
  439. // return []
  440. // } else {
  441. // return [scheduleInfo]
  442. // }
  443. // }
  444. // var originSchedules = scheduleInfo.schedules
  445. // if (originSchedules.length == 0) {
  446. // continue
  447. // }
  448. // var filtedSchedules = []
  449. // for (let s_i = 0; s_i < originSchedules.length; s_i++) {
  450. // const schedule = originSchedules[s_i]
  451. // if (zone_selected != 0) {
  452. // if (zone_selected == schedule.device_number.zone.id) {
  453. // if (timetype_selected == 0 || schedule.schedule_type == timetype_selected) {
  454. // filtedSchedules.push(schedule)
  455. // }
  456. // }
  457. // } else {
  458. // if (timetype_selected == 0 || schedule.schedule_type == timetype_selected) {
  459. // filtedSchedules.push(schedule)
  460. // }
  461. // }
  462. // }
  463. // if (filtedSchedules.length > 0) {
  464. // schedules.push({ zone_id: scheduleInfo.zone_id, zone_name: scheduleInfo.zone_name, schedules: filtedSchedules })
  465. // }
  466. // }
  467. // return schedules
  468. }
  469. },
  470. methods: {
  471. adviceFunc() {
  472. this.getScheduleDetail()
  473. },
  474. getLongAdvice() {
  475. const params = {
  476. patient_id: this.patient_id
  477. }
  478. getLongAdvice(params).then(rs => {
  479. var resp = rs.data
  480. if (resp.state == 1) {
  481. var status = parseInt(resp.data.status)
  482. switch (status) {
  483. case 2:
  484. var totalAdvice = resp.data.advices
  485. var longAdvicesTwo = resp.data.advices_two
  486. var waitUploadAdvices = []
  487. for (let i = 0; i < totalAdvice.length; i++) {
  488. totalAdvice[i]['isCheck'] = 1
  489. }
  490. for (let i = 0; i < totalAdvice.length; i++) {
  491. for (let a = 0; a < longAdvicesTwo.length; a++) {
  492. if (
  493. totalAdvice[i].template_id ==
  494. longAdvicesTwo[a].template_id &&
  495. totalAdvice[i].frequency_type ==
  496. longAdvicesTwo[a].frequency_type
  497. ) {
  498. totalAdvice[i]['isCheck'] = 0
  499. }
  500. }
  501. }
  502. for (let i = 0; i < totalAdvice.length; i++) {
  503. if (totalAdvice[i].isCheck == 1) {
  504. waitUploadAdvices.push(totalAdvice[i])
  505. }
  506. }
  507. this.is_open = resp.data.is_open_remind
  508. if(this.his_is_open == 1){
  509. this.is_open = 0
  510. }
  511. this.longAdvices = totalAdvice
  512. this.waitUploadAdvices = waitUploadAdvices
  513. break
  514. }
  515. } else {
  516. this.$message.error(resp.msg)
  517. }
  518. })
  519. },
  520. assessmentAfterDislysisFunc: function(val) {
  521. for (var index in val) {
  522. this.$set(this.assessment_after_dislysis, index, val[index])
  523. }
  524. },
  525. didDelMonitor(record_id) {
  526. var mrl = this.monitor_records.length
  527. for (let index = 0; index < mrl; index++) {
  528. if (this.monitor_records[index].id == record_id) {
  529. this.monitor_records.splice(index, 1)
  530. break
  531. }
  532. }
  533. },
  534. getScheduleDetail: function() {
  535. this.loading = true
  536. this.doctor_advices = []
  537. getDialysisScheduleDetail(this.patient_id, this.date).then(rs => {
  538. var resp = rs.data
  539. if (resp.state == 1) {
  540. var patient = resp.data.patient // 患者信息
  541. var schedual = resp.data.schedual // 患者排班信息
  542. var prescription = resp.data.prescription // 透析处方
  543. if (prescription != null) {
  544. if (prescription.body_fluid == -2) {
  545. prescription.body_fluid = 0
  546. }
  547. }
  548. var solution = resp.data.solution // 透析方案
  549. var receiver_treatment_access = resp.data.receiver_treatment_access // 接诊评估
  550. var predialysis_evaluation = resp.data.predialysis_evaluation // 透前评估
  551. console.log("透器评估",predialysis_evaluation)
  552. if (predialysis_evaluation != null) {
  553. if (predialysis_evaluation.blood_access_part_id == -2) {
  554. predialysis_evaluation.blood_access_part_id = 0
  555. }
  556. }
  557. var doctor_advices = resp.data.doctor_advices // 临时医嘱
  558. var double_check = resp.data.double_check // 双人核对
  559. var assessment_after_dislysis = resp.data.assessment_after_dislysis // 透后评估
  560. var treatment_summary = resp.data.treatment_summary // 治疗小结
  561. var monitor_records = resp.data.monitor_records // 透析监测
  562. var dialysis_order = resp.data.dialysis_order // 透析记录
  563. var niprocart_info = resp.data.niprocart_info
  564. var jms_info = resp.data.jms_info
  565. var fistula_needle_set_info = resp.data.fistula_needle_set_info
  566. var fistula_needle_set_16_info = resp.data.fistula_needle_set_16_info
  567. var hemoperfusion_info = resp.data.hemoperfusion_info
  568. var dialyser_sterilised_info = resp.data.dialyser_sterilised_info
  569. var filtryzer_info = resp.data.filtryzer_info
  570. var dialyzers_info = resp.data.dialyzers_info
  571. var injector_info = resp.data.injector_info
  572. var bloodlines_info = resp.data.bloodlines_info
  573. var tubingHemodialysis_info = resp.data.tubingHemodialysis_info
  574. var safe_package_info = resp.data.safe_package_info
  575. var aliquid_info = resp.data.aliquid_info
  576. var lastPredialysisEvaluation = resp.data.lastPredialysisEvaluation
  577. if (lastPredialysisEvaluation != null) {
  578. if (lastPredialysisEvaluation.blood_access_part_id == -2) {
  579. lastPredialysisEvaluation.blood_access_part_id = 0
  580. }
  581. }
  582. var lastMonitorRecord = resp.data.lastMonitorRecord
  583. var lastAssessmentAfterDislysis = resp.data.lastAssessmentAfterDislysis
  584. var lastDialysisPrescribe = resp.data.lastDialysisPrescribe
  585. var lastDryWeightDislysis = resp.data.lastDryWeightDislysis
  586. var system_prescribe = resp.data.system_prescribe
  587. var lastAssessment = resp.data.lastAssessment
  588. // console.log("最后一次血管通路",lastAssessment)
  589. this.$refs.nav.setLastRecord(
  590. lastPredialysisEvaluation,
  591. lastMonitorRecord,
  592. lastAssessmentAfterDislysis,
  593. lastDialysisPrescribe,
  594. lastDryWeightDislysis,
  595. schedual,
  596. system_prescribe,
  597. lastAssessment,
  598. )
  599. var headNurses = resp.data.headNurse
  600. var config = resp.data.config
  601. this.lastPredialysisEvaluation = lastPredialysisEvaluation
  602. this.lastMonitorRecord = lastMonitorRecord
  603. this.lastAssessmentAfterDislysis = lastAssessmentAfterDislysis
  604. this.lastDialysisPrescribe = lastDialysisPrescribe
  605. this.lastDryWeightDislysis = lastDryWeightDislysis
  606. this.lastAssessment = lastAssessment
  607. this.headNurses = headNurses
  608. this.system_prescribe = system_prescribe
  609. this.niprocart_info = []
  610. this.jms_info = []
  611. this.fistula_needle_set_info = []
  612. this.fistula_needle_set_16_info = []
  613. this.hemoperfusion_info = []
  614. this.dialyser_sterilised_info = []
  615. this.filtryzer_info = []
  616. this.dialyzers_info = []
  617. this.injector_info = []
  618. this.bloodlines_info = []
  619. this.tubingHemodialysis_info = []
  620. this.safe_package_info = []
  621. this.aliquid_info = []
  622. this.niprocart_info = niprocart_info
  623. this.jms_info = jms_info
  624. this.fistula_needle_set_info = fistula_needle_set_info
  625. this.fistula_needle_set_16_info = fistula_needle_set_16_info
  626. this.hemoperfusion_info = hemoperfusion_info
  627. this.dialyser_sterilised_info = dialyser_sterilised_info
  628. this.filtryzer_info = filtryzer_info
  629. this.dialyzers_info = dialyzers_info
  630. this.injector_info = injector_info
  631. this.bloodlines_info = bloodlines_info
  632. this.tubingHemodialysis_info = tubingHemodialysis_info
  633. this.safe_package_info = safe_package_info
  634. this.aliquid_info = aliquid_info
  635. this.config = config
  636. this.patient = patient
  637. this.schedual = schedual == null ? { id: 0 } : schedual
  638. this.prescription = prescription == null ? { id: 0 } : prescription
  639. this.solution = solution == null ? { id: 0 } : solution
  640. this.receiver_treatment_access =
  641. receiver_treatment_access == null
  642. ? { id: 0 }
  643. : receiver_treatment_access
  644. this.predialysis_evaluation =
  645. predialysis_evaluation == null ? { id: 0 } : predialysis_evaluation
  646. this.doctor_advices = doctor_advices == null ? [] : doctor_advices
  647. this.double_check = double_check == null ? { id: 0 } : double_check
  648. this.assessment_after_dislysis =
  649. assessment_after_dislysis == null
  650. ? { id: 0 }
  651. : assessment_after_dislysis
  652. this.treatment_summary =
  653. treatment_summary == null ? { id: 0 } : treatment_summary
  654. this.monitor_records = monitor_records == null ? [] : monitor_records
  655. this.dialysis_order =
  656. dialysis_order == null ? { id: 0 } : dialysis_order
  657. this.admin_users = resp.data.doctors
  658. this.devices = resp.data.devices
  659. this.device_numbers = resp.data.device_numbers
  660. var his_doctor_advices = resp.data.his_advices
  661. this.his_is_open = resp.data.is_open_config.is_open
  662. this.is_advice_open = resp.data.is_advice_open.is_advice_open
  663. console.log("is_advice_open23223323232322323",this.is_advice_open)
  664. var stockType = resp.data.stockType
  665. this.stockType = stockType
  666. var prepare = resp.data.prepare
  667. this.preparestock = prepare
  668. for (let i = 0; i < this.doctor_advices.length; i++){
  669. this.doctor_advices[i]['origin'] = 1
  670. }
  671. if (his_doctor_advices != null) {
  672. for (let i = 0; i < his_doctor_advices.length; i++) {
  673. his_doctor_advices[i]['origin'] = 2
  674. his_doctor_advices[i]['way'] = 1
  675. this.doctor_advices.push(his_doctor_advices[i])
  676. }
  677. }
  678. const obj = {}
  679. this.doctor_advices = this.doctor_advices.reduce((cur, next) => {
  680. obj[next.id] ? '' : obj[next.id] = true && cur.push(next)
  681. return cur
  682. }, []) // 设置cur默认类型为数组,并且初始值为空的数组
  683. console.log(this.doctor_advices)
  684. var device_map = {}
  685. for (let index = 0; index < this.devices.length; index++) {
  686. const device = this.devices[index]
  687. device_map[device.id] = device
  688. }
  689. this.device_map = device_map
  690. var admin_map = {}
  691. for (let index = 0; index < this.admin_users.length; index++) {
  692. const admin = this.admin_users[index]
  693. admin_map[admin.id] = admin
  694. }
  695. this.admin_user_map = admin_map
  696. var device_number_map = {}
  697. for (let index = 0; index < this.device_numbers.length; index++) {
  698. const device_number = this.device_numbers[index]
  699. device_number_map[device_number.id] = device_number
  700. }
  701. this.device_number_map = device_number_map
  702. } else {
  703. // this.$message.error(resp.msg)
  704. console.log("报错提示")
  705. this.$message.error("该患者今日未排班,无法使用此模块,请先排班!")
  706. }
  707. if (this.lastDialysisPrescribe != null) {
  708. delete this.lastDialysisPrescribe.target_ultrafiltration
  709. }
  710. if (this.solution != null) {
  711. delete this.solution.target_ultrafiltration
  712. }
  713. if(this.predialysis_evaluation.id > 0){
  714. this.newTime = parseTime(this.predialysis_evaluation.created_time, '{h}:{i}')
  715. }
  716. this.loading = false
  717. })
  718. },
  719. printOrder() {
  720. var xtdate = parseTime(this.date, '{y}-{m}-{d}')
  721. this.$router.push(
  722. '/dialysis/print?xtdate=' + xtdate + '&xtno=' + this.patient.dialysis_no+"&patient_id="+this.patient.id
  723. )
  724. },
  725. processedDialysisSchedules: function(schedules, zone_options) {
  726. var zoneMap = {}
  727. var scheduleMap = {}
  728. for (let z_i = 0; z_i < zone_options.length; z_i++) {
  729. const zone = zone_options[z_i]
  730. if (zone.id == 0) {
  731. continue
  732. }
  733. scheduleMap[zone.id] = []
  734. }
  735. for (let index = 0; index < schedules.length; index++) {
  736. const schedule = schedules[index]
  737. scheduleMap[schedule.device_number.zone.id].push(schedule)
  738. }
  739. var zone_schedules = []
  740. for (let index = 0; index < zone_options.length; index++) {
  741. const zone = zone_options[index]
  742. if (zone.id == 0) {
  743. continue
  744. }
  745. var schedules = scheduleMap[zone.id]
  746. zone_schedules.push({ zone_id: zone.id, zone_name: zone.text, schedules: schedules })
  747. }
  748. return zone_schedules
  749. },
  750. getTime(date){
  751. date = new Date(date * 1000)
  752. var Y = date.getFullYear() + '-';
  753. var M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1);
  754. var D = (date.getDate() < 10 ? '0'+date.getDate() : date.getDate());
  755. var h = (date.getHours() < 10 ? '0'+date.getHours() : date.getHours());
  756. var m = (date.getMinutes() < 10 ? '0'+date.getMinutes() : date.getMinutes());
  757. var s = (date.getSeconds() < 10 ? '0'+date.getSeconds() : date.getSeconds());
  758. let strDate = h + ':' + m;
  759. return strDate;
  760. },
  761. getDates(time){
  762. return moment(time * 1000).format('HH:mm:ss')
  763. }
  764. }
  765. }
  766. </script>
  767. <style style="stylesheet/scss" lang="scss" scoped>
  768. .details-bg {
  769. background: #fff;
  770. margin: 0 15px;
  771. }
  772. .printForm {
  773. .title {
  774. font-size: 30px;
  775. font-weight: 500;
  776. text-align: center;
  777. line-height: 60px;
  778. }
  779. .info {
  780. ul {
  781. display: -webkit-box;
  782. display: -moz-box;
  783. display: -ms-flexbox;
  784. display: -webkit-flex;
  785. display: flex;
  786. align-items: center;
  787. -moz-box-sizing: border-box;
  788. -webkit-box-sizing: border-box;
  789. -o-box-sizing: border-box;
  790. -ms-box-sizing: border-box;
  791. box-sizing: border-box;
  792. -webkit-justify-content: space-around;
  793. -moz-justify-content: space-around;
  794. -ms-justify-content: space-around;
  795. -o-justify-content: space-around;
  796. justify-content: space-around;
  797. li {
  798. display: flex;
  799. box-sizing: border-box;
  800. justify-content: space-around;
  801. .name {
  802. }
  803. .InputBox {
  804. padding: 0;
  805. border: none;
  806. border-bottom: 1px #e5e5e5 solid;
  807. width: 60px;
  808. outline: none;
  809. }
  810. }
  811. }
  812. }
  813. .printTable {
  814. tr {
  815. padding: 2px;
  816. th {
  817. padding: 6px 4px;
  818. }
  819. td {
  820. padding: 6px 4px;
  821. }
  822. }
  823. }
  824. }
  825. .loadingBox{
  826. display: flex;
  827. .patientBox{
  828. background: #fff;
  829. }
  830. .tip1{
  831. background: #4fc7cb;
  832. border-radius: 5px;
  833. text-align: center;
  834. font-size: 12px;
  835. display: inline-block;
  836. width: 60px;
  837. color: #fff;
  838. }
  839. .tip2{
  840. background: #ee8556;
  841. border-radius: 5px;
  842. text-align: center;
  843. font-size: 12px;
  844. display: inline-block;
  845. width: 60px;
  846. color: #fff;
  847. }
  848. .tip3{
  849. background: #409eff;
  850. border-radius: 5px;
  851. text-align: center;
  852. font-size: 12px;
  853. display: inline-block;
  854. width: 60px;
  855. color: #fff;
  856. }
  857. .tip4{
  858. background: #a8b3ba;
  859. border-radius: 5px;
  860. text-align: center;
  861. font-size: 12px;
  862. display: inline-block;
  863. width: 60px;
  864. color: #fff;
  865. }
  866. .tip5{
  867. background: #7bce91;
  868. border-radius: 5px;
  869. text-align: center;
  870. font-size: 12px;
  871. display: inline-block;
  872. width: 60px;
  873. color: #fff;
  874. }
  875. }
  876. </style>
  877. <style lang="scss">
  878. .loadingBox{
  879. .el-loading-spinner{
  880. top:10%;
  881. }
  882. .el-button--small, .el-button--small.is-round{
  883. padding:9px 10px;
  884. }
  885. .el-date-editor{
  886. .el-input__inner{
  887. padding-right:0px;
  888. }
  889. }
  890. .el-table td, .el-table th{
  891. text-align: center;
  892. }
  893. .el-table .cell{
  894. padding: 0;
  895. }
  896. }
  897. </style>