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

physiqueprinting.vue 24KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715
  1. <template>
  2. <div>
  3. <div class="position">
  4. <bread-crumb :crumbs='crumbs'></bread-crumb>
  5. <el-button :loading="loading" size="small" icon="el-icon-printer" @click="printAction" type="primary">打印
  6. </el-button>
  7. </div>
  8. <div class="app-container">
  9. <div id="print_content" v-for="item in this.list" style="font-family: Microsoft YaHei;font-size: 16px;">
  10. <div class="print_page_main_content">
  11. <h1 style="text-align: center; padding-top:12px;">{{ orgname }}血液净化治疗病历</h1>
  12. <div style="border-bottom: 1px solid black;display: flex;padding-bottom: 10px;padding-top: 10px;">
  13. <div style="flex:1;text-align: center;">
  14. 姓名:
  15. <div style="width: 120px;text-align: left;display:inline-block;">{{ patient.name }}</div>
  16. </div>
  17. <div style="flex:1;text-align: center;">
  18. 病历号:
  19. <div style="width: 120px;text-align: left;display:inline-block;">
  20. {{ patient.dialysis_no ? patient.dialysis_no : '/' }}
  21. </div>
  22. </div>
  23. <div style="flex:1;text-align: center;">
  24. 病区-床号:
  25. <div style="width: 120px;text-align: left;display:inline-block;">
  26. </div>
  27. </div>
  28. <div style="flex:1;text-align: center;">
  29. 接收日期:
  30. <div style="width: 100px;text-align: left;display:inline-block;">
  31. {{ getTime(patient.created_time, '{y}-{m}-{d}') }}
  32. </div>
  33. </div>
  34. </div>
  35. <div style="display: flex; justify-self: start;margin-top: 5px ;">
  36. <div style="flex: 1;">性别:{{ getPatientGender(patient.gender) }}</div>
  37. <div style="flex: 1;">年龄:{{ patient.age }}</div>
  38. <div style="flex: 1;">出生日期:{{ getTime(patient.birthday, '{y}-{m}-{d}') }}</div>
  39. </div>
  40. <div style="display: flex; justify-self: start; margin-top: 5px ;">
  41. <div style="flex: 1;">身份证号:{{ patient.id_card_no }}</div>
  42. <div style="flex: 1;">病人来源:{{ patient.source == 1 ? '门诊' : '住院' }}</div>
  43. <div style="flex: 1;">透析号:{{ patient.dialysis_no }}</div>
  44. </div>
  45. <div style="display: flex; justify-self: start; margin-top: 5px ;">
  46. <div style="flex: 1;">
  47. 首次透析日期:{{ patient.first_dialysis_date ? getTime(patient.first_dialysis_date, '{y}-{m}-{d}') : '' }}
  48. </div>
  49. <div style="flex: 1;">血型:{{ getBloodType(patient.blood_type) }}</div>
  50. <div style="flex: 1;">报销方式:{{ getWayOptions(patient.reimbursement_way_id) }}</div>
  51. </div>
  52. <div style="display: flex; justify-self: start; margin-top: 5px ;">
  53. <div style="flex: 1;">工作单位:{{ patient.work_unit }}</div>
  54. <div style="flex: 1;">联系电话:{{ patient.phone }}</div>
  55. <div style="flex: 1;">家庭住址:{{ patient.home_address }}</div>
  56. </div>
  57. <div style="display: flex; justify-self: start; margin-top: 5px ;">
  58. <div style="flex: 1;">肾移植史:{{ item.is_shenyizhi_history == 0?'无':'有' }}</div>
  59. <div style="flex: 1;">腹膜透析史:{{ item.is_fumo_dialysis_history == 0? '无':'有' }}</div>
  60. <div style="flex: 1;" v-if="item.is_hypersusceptibility == 0">过敏药物:无</div>
  61. <div style="flex: 1;" v-if="item.is_hypersusceptibility == 2">过敏药物:有</div>
  62. <div style="flex: 1;" v-if="item.is_hypersusceptibility == 3">过敏药物:不想</div>
  63. </div>
  64. <h3 style="text-align: center; margin: 20px 0px;">病史内容</h3>
  65. <div style="word-break: break-all; word-wrap: break-word;">
  66. <div v-html="item.content" style="font-family: Microsoft YaHei;"></div>
  67. </div>
  68. <h3 v-if="item.XtPatientPhysiqueCheck.id > 0" style="text-align: center; margin: 30px 0px 10px 0px;">体格检查</h3>
  69. <div v-if="item.XtPatientPhysiqueCheck.id > 0">
  70. <div style="display: flex; justify-self: start;">
  71. <div style="flex:1;text-align: center;">T: {{ item.XtPatientPhysiqueCheck.t?item.XtPatientPhysiqueCheck.t:'' }}℃</div>
  72. <div style="flex:1;text-align: center;">P:{{ item.XtPatientPhysiqueCheck.p?item.XtPatientPhysiqueCheck.p:'' }}次/分</div>
  73. <div style="flex:1;text-align: center;">R:{{item.XtPatientPhysiqueCheck.r?item.XtPatientPhysiqueCheck.r:'' }}次/分</div>
  74. <div style="flex:1;text-align: center;">Bp:{{ item.XtPatientPhysiqueCheck.bp_left + '/' + item.XtPatientPhysiqueCheck.bp_right }}mmHg</div>
  75. </div>
  76. <div style="margin-top: 5px;">
  77. {{getPinxuerongmao(item.XtPatientPhysiqueCheck.pinxuerongmao)}}{{getTiwei(item.XtPatientPhysiqueCheck.tiwei)}}{{getFuzhong(item.XtPatientPhysiqueCheck.fuzhong)}}{{getChuXuedian(item.XtPatientPhysiqueCheck.chuxuedian)}}{{getFaYu(item.XtPatientPhysiqueCheck.fayu)}}{{getYinYang(item.XtPatientPhysiqueCheck.yinyang)}}{{getShenzhi(item.XtPatientPhysiqueCheck.shenzhi)}}
  78. </div>
  79. <div style="margin-top: 5px;">
  80. <span style="font-weight: bold;">皮肤黏膜</span>:
  81. {{ getPifuNianmo(item.XtPatientPhysiqueCheck.pifunianmo) + getPiXiaChuXue(item.XtPatientPhysiqueCheck.pixiachuxue)+getZidian(item.XtPatientPhysiqueCheck.zidian)+getPiFuWenDu(item.XtPatientPhysiqueCheck.pifuwendu) }}
  82. </div>
  83. <div style="margin-top: 5px;">
  84. <span style="font-weight: bold;">淋巴结</span>:
  85. {{ getLinBaZongDa(item.XtPatientPhysiqueCheck.linbazhongda)}}
  86. </div>
  87. <div style="margin-top: 5px;">
  88. <span style="font-weight: bold;">头部</span>:
  89. {{ getYanJian(item.XtPatientPhysiqueCheck.yanlian)+ getTongKong(item.XtPatientPhysiqueCheck.tongkong)+","+"左(mm):"+item.XtPatientPhysiqueCheck.zuo+",右(mm):"+item.XtPatientPhysiqueCheck.you+",对光反射:"+item.XtPatientPhysiqueCheck.duiguangfanshe+","+"扁桃体:"+item.XtPatientPhysiqueCheck.biantaoti+","+"咽部:"+item.XtPatientPhysiqueCheck.yanbu}}
  90. </div>
  91. <div style="margin-top: 5px;">
  92. <span style="font-weight: bold;">颈部</span>:
  93. {{ "颈静脉:"+item.XtPatientPhysiqueCheck.ganjingjingmai }}
  94. </div>
  95. <div style="margin-top: 5px;">
  96. <span style="font-weight: bold;">肺脏</span>:
  97. {{ "呼吸音:"+item.XtPatientPhysiqueCheck.huxiyin+getXiongmomocayin(item.XtPatientPhysiqueCheck.xiongmomocayin)+getLuoYin(item.XtPatientPhysiqueCheck.luoyin)}}
  98. </div>
  99. <div style="margin-top: 5px;">
  100. <span style="font-weight: bold;">心脏</span>:
  101. {{ getXinzangdaxiao(item.XtPatientPhysiqueCheck.xinzangdaxiao)+getXinlv(item.XtPatientPhysiqueCheck.xinlv)+getXinbaomocasheng(item.XtPatientPhysiqueCheck.xinbaomocasheng)+getZaYin(item.XtPatientPhysiqueCheck.zayin)+getFujiaYin(item.XtPatientPhysiqueCheck.fujiayin)}}
  102. </div>
  103. <div style="margin-top: 5px;">
  104. <span style="font-weight: bold;">腹部</span>:
  105. {{getFushuizheng(item.XtPatientPhysiqueCheck.fushuizheng)+getGanZangYaTong(item.XtPatientPhysiqueCheck.gangzhang_yatong)+getGanZangkouTong(item.XtPatientPhysiqueCheck.gangzhang_koutong)+"脾脏:"+getPiZangYaTong(item.XtPatientPhysiqueCheck.pizhang_yatong)+getPiZangkouTong(item.XtPatientPhysiqueCheck.pizhang_koutong)+"肾脏:"+getshenZangyatong(item.XtPatientPhysiqueCheck.gangzhang_yatong)+""+getshenZangkoutong(item.XtPatientPhysiqueCheck.gangzhang_koutong)}}
  106. </div>
  107. <div style="margin-top: 5px;">
  108. <span style="font-weight: bold;">其他</span>:
  109. {{ item.XtPatientPhysiqueCheck.oth_desc }}
  110. </div>
  111. </div>
  112. <div style="margin-top: 30px;">
  113. <span style="font-weight: bold; display: block;">初步诊断:</span>
  114. <div v-for="(item,index) in diagnosis" :key="index" style="line-height: 20px;" v-if="org_id==10612">
  115. {{index+1}}.<span>{{ item }}</span><br/>
  116. </div>
  117. <span v-if="org_id!=10612">{{ patient.diagnose }}</span>
  118. <div style="text-align: right;margin-bottom: 10px;">
  119. <span style="font-weight: bold;">病历书写者:</span>
  120. {{getDoctorName(item.doctor_id)}}
  121. </div>
  122. </div>
  123. <div style="float: right;">
  124. <span style="font-weight: bold;">日期:</span>
  125. {{getTime(item.record_time,'{y}-{m}-{d}')}}
  126. </div>
  127. <!-- <div style="margin-top: 30px;float: right">-->
  128. <!-- <span style="font-weight: bold; display: block;">日期:</span>-->
  129. <!-- {{getTime(item.record_time,'{y}-{m}-{d}')}}}-->
  130. <!-- </div>-->
  131. </div>
  132. </div>
  133. </div>
  134. </div>
  135. </template>
  136. <script>
  137. import BreadCrumb from '@/xt_pages/components/bread-crumb'
  138. import { getSickhistoryCheckRecordsPrint } from '../../api/patient'
  139. import { uParseTime } from '@/utils/tools'
  140. import { fetchAllDoctorAndNurse } from "@/api/doctor";
  141. import print from "print-js";
  142. export default {
  143. name: 'physiquePrinting',
  144. data() {
  145. return {
  146. list: [],
  147. crumbs: [
  148. { path: false, name: '病人管理' },
  149. { path: false, name: '病程打印' }
  150. ],
  151. loading: false,
  152. orgname: '',
  153. patient: {},
  154. information: {
  155. sex: '',
  156. age: '',
  157. birthday: '',
  158. id_number: '',
  159. patient_source: '',
  160. dialysis_num: '',
  161. first_date: '',
  162. blood_type: '',
  163. reimbursement: '',
  164. work_unit: '',
  165. contact_number: '',
  166. home_address: '',
  167. transplantation: '',
  168. peritoneum: '',
  169. allergy_drug: ''
  170. },
  171. medical_history: {
  172. chief_complaint: '',
  173. present_disease: '',
  174. past: '',
  175. personal: '',
  176. marriage: '',
  177. family: ''
  178. },
  179. physique: {
  180. temperature: '',
  181. heartbeat: '',
  182. R: '',
  183. Bp: '',
  184. anemia: '',
  185. cutaneous: '',
  186. lymph_node: '',
  187. head: '',
  188. neck: '',
  189. lung: '',
  190. heart: '',
  191. abdomen: '',
  192. other: ''
  193. },
  194. diagnosis: [],
  195. org_id:0
  196. }
  197. },
  198. components: {
  199. BreadCrumb
  200. },
  201. methods: {
  202. fetchAllDoctorAndNurse() {
  203. fetchAllDoctorAndNurse().then(response => {
  204. if (response.data.state == 1) {
  205. this.doctorOptions = response.data.data.doctors;
  206. }
  207. });
  208. },
  209. getDoctorName: function(doctor_id) {
  210. for (let index = 0; index < this.doctorOptions.length; index++) {
  211. const doctor = this.doctorOptions[index]
  212. if (doctor.id == doctor_id) {
  213. return doctor.name
  214. }
  215. }
  216. return ''
  217. },getPinxuerongmao(pinxuerongmao){
  218. switch (pinxuerongmao){
  219. case 0:
  220. return '无贫血容貌,'
  221. break
  222. case 1:
  223. return "无贫血容貌,"
  224. break
  225. case 2:
  226. return "有贫血容貌,"
  227. break
  228. }
  229. },
  230. getTiwei(tiwei){
  231. switch (tiwei){
  232. case 0:
  233. return "自主体位,"
  234. break
  235. case 1:
  236. return "自主体位,"
  237. break
  238. case 2:
  239. return "被动体位,"
  240. break
  241. case 3:
  242. return "强迫体位,"
  243. break
  244. }
  245. },getFuzhong(fuzhong){
  246. switch (fuzhong){
  247. case 0:
  248. return '无浮肿,'
  249. break
  250. case 1:
  251. return '无浮肿,'
  252. break
  253. case 2:
  254. return '轻度浮肿,'
  255. break
  256. case 3:
  257. return '中度浮肿,'
  258. break
  259. case 4:
  260. return '重度浮肿,'
  261. break
  262. }
  263. },getChuXuedian(chuxuedian){
  264. switch (chuxuedian){
  265. case 0:
  266. return '出血点/瘀斑/血肿:无,'
  267. break
  268. case 1:
  269. return '出血点/瘀斑/血肿:无,'
  270. break
  271. case 2:
  272. return '出血点/瘀斑/血肿:未知,'
  273. break
  274. case 3:
  275. return '出血点/瘀斑/血肿:有,'
  276. break
  277. }
  278. },getFaYu(fayu){
  279. switch (fayu){
  280. case 0:
  281. return '发育:正常,'
  282. break
  283. case 1:
  284. return '发育:正常,'
  285. break
  286. case 2:
  287. return '发育:不良,'
  288. break
  289. }
  290. },getYinYang(yinyang){
  291. switch (yinyang){
  292. case 0:
  293. return '营养:良好,'
  294. break
  295. case 1:
  296. return '营养:良好,'
  297. break
  298. case 2:
  299. return '营养:中等,'
  300. break
  301. case 3:
  302. return '营养:不良,'
  303. break
  304. case 4:
  305. return '营养:恶病质,'
  306. break
  307. }
  308. },getShenzhi(shenzhi){
  309. switch (shenzhi){
  310. case 0:
  311. return '神智:清楚'
  312. break
  313. case 1:
  314. return '神智:清楚'
  315. break
  316. case 2:
  317. return '神智:模糊'
  318. break
  319. case 3:
  320. return '神智:昏迷'
  321. break
  322. case 4:
  323. return '神智:其他'
  324. break
  325. }
  326. },getPifuNianmo(pifunianmo){
  327. switch (pifunianmo){
  328. case 0:
  329. return '皮肤黏膜正常,'
  330. break
  331. case 1:
  332. return '皮肤黏膜正常,'
  333. break
  334. case 2:
  335. return '皮肤黏膜灰暗,'
  336. break
  337. case 3:
  338. return '皮肤黏膜苍白,'
  339. break
  340. case 4:
  341. return '皮肤黏膜黄染,'
  342. break
  343. case 5:
  344. return '皮肤黏膜色素沉着,'
  345. break
  346. }
  347. },getPiXiaChuXue(pixiachuxue){
  348. switch (pixiachuxue){
  349. case 0:
  350. return '无皮下出血,'
  351. break
  352. case 1:
  353. return '无皮下出血,'
  354. break
  355. case 2:
  356. return '有皮下出血,'
  357. break
  358. }
  359. },getZidian(zidian){
  360. switch (zidian){
  361. case 0:
  362. return '无紫癜,'
  363. break
  364. case 1:
  365. return '无紫癜,'
  366. break
  367. case 2:
  368. return '有紫癜,'
  369. break
  370. }
  371. },getPiFuWenDu(pifuwendu){
  372. switch (pifuwendu){
  373. case 0:
  374. return '皮肤温度:正常,'
  375. break
  376. case 1:
  377. return '皮肤温度:正常,'
  378. break
  379. case 2:
  380. return '皮肤温度:冷,'
  381. break
  382. case 3:
  383. return '皮肤温度:干,'
  384. break
  385. case 4:
  386. return '皮肤温度:湿,'
  387. break
  388. }
  389. },getLinBaZongDa(linbazhongda){
  390. switch (linbazhongda){
  391. case 0:
  392. return '浅表淋巴肿大:无'
  393. break
  394. case 1:
  395. return '浅表淋巴肿大:无'
  396. break
  397. case 2:
  398. return '浅表淋巴肿大:有'
  399. break
  400. }
  401. },getYanJian(yanjian){
  402. switch (yanjian){
  403. case 0:
  404. return '眼睑正常,'
  405. break
  406. case 1:
  407. return '眼睑正常,'
  408. break
  409. case 2:
  410. return '眼睑水肿,'
  411. break
  412. }
  413. },getTongKong(tongkong){
  414. switch (tongkong){
  415. case 0:
  416. return ''
  417. break
  418. case 1:
  419. return '瞳孔(等大等圆):是,'
  420. break
  421. case 2:
  422. return '瞳孔(等大等圆):否,'
  423. break
  424. }
  425. },getXiongmomocayin(xiongmomocayin){
  426. switch (xiongmomocayin){
  427. case 0:
  428. return ',无胸膜摩擦音,'
  429. break
  430. case 1:
  431. return ',无胸膜摩擦音,'
  432. break
  433. case 2:
  434. return ',有胸膜摩擦音,'
  435. break
  436. }
  437. },getLuoYin(luoyin){
  438. switch (luoyin){
  439. case 0:
  440. return '无啰音'
  441. break
  442. case 1:
  443. return '无啰音'
  444. break
  445. case 2:
  446. return '有啰音'
  447. break
  448. }
  449. },getXinzangdaxiao(xinzangdaxiao){
  450. switch (xinzangdaxiao){
  451. case 0:
  452. return '心脏大小正常,'
  453. break
  454. case 1:
  455. return '心脏大小正常,'
  456. break
  457. case 2:
  458. return '心脏大小偏大,'
  459. break
  460. case 3:
  461. return '心脏大小偏小,'
  462. break
  463. }
  464. },getXinlv(xinlv){
  465. switch (xinlv){
  466. case 0:
  467. return '心率齐,'
  468. break
  469. case 1:
  470. return '心率齐,'
  471. break
  472. case 2:
  473. return '心率不齐,'
  474. break
  475. }
  476. },getXinbaomocasheng(xinbaomocasheng){
  477. switch (xinbaomocasheng){
  478. case 0:
  479. return '心包摩擦声无,'
  480. break
  481. case 1:
  482. return '心包摩擦声无,'
  483. break
  484. case 2:
  485. return '心包摩擦声有,'
  486. break
  487. }
  488. },getZaYin(zayin){
  489. switch (zayin){
  490. case 0:
  491. return '无杂音,'
  492. break
  493. case 1:
  494. return '无杂音,'
  495. break
  496. case 2:
  497. return '有杂音,'
  498. break
  499. }
  500. },getFujiaYin(fujiayin){
  501. switch (fujiayin){
  502. case 0:
  503. return '无附加音,'
  504. break
  505. case 1:
  506. return '无附加音,'
  507. break
  508. case 2:
  509. return '有附加音,'
  510. break
  511. }
  512. },getFushuizheng(fushuizheng){
  513. switch (fushuizheng){
  514. case 0:
  515. return '腹水征:阴性,'
  516. break
  517. case 1:
  518. return '腹水征:阴性,'
  519. break
  520. case 2:
  521. return '腹水征:阳性,'
  522. break
  523. }
  524. },getGanZangYaTong(yatong){
  525. switch (yatong){
  526. case 0:
  527. return '肝脏:无压痛,'
  528. break
  529. case 1:
  530. return '肝脏:无压痛,'
  531. break
  532. case 2:
  533. return '肝脏:有压痛,'
  534. break
  535. }
  536. },getGanZangkouTong(koutong){
  537. switch (koutong){
  538. case 0:
  539. return '无叩痛,'
  540. break
  541. case 1:
  542. return '无叩痛,'
  543. break
  544. case 2:
  545. return '有叩痛,'
  546. break
  547. }
  548. },getPiZangYaTong(yatong){
  549. switch (yatong){
  550. case 0:
  551. return '无压痛,'
  552. break
  553. case 1:
  554. return '无压痛,'
  555. break
  556. case 2:
  557. return '有压痛,'
  558. break
  559. }
  560. },getPiZangkouTong(koutong){
  561. switch (koutong){
  562. case 0:
  563. return '无叩痛,'
  564. break
  565. case 1:
  566. return '无叩痛,'
  567. break
  568. case 2:
  569. return '有叩痛,'
  570. break
  571. }
  572. },getshenZangyatong(yatong){
  573. switch (yatong){
  574. case 0:
  575. return '无压痛,'
  576. break
  577. case 1:
  578. return '无压痛,'
  579. break
  580. case 2:
  581. return '有压痛,'
  582. break
  583. }
  584. },getshenZangkoutong(koutong){
  585. switch (koutong){
  586. case 0:
  587. return '无叩痛'
  588. break
  589. case 1:
  590. return '无叩痛'
  591. break
  592. case 2:
  593. return '有叩痛'
  594. break
  595. }
  596. },
  597. getWayOptions(reimbursement_way_id) {
  598. this.wayOptions = this.$store.getters.reimbursement_ways;
  599. let wayLen = this.wayOptions.length
  600. for (let index = 0; index < wayLen; index++) {
  601. if (this.wayOptions[index].id === reimbursement_way_id) {
  602. return this.wayOptions[index].name
  603. }
  604. }
  605. },
  606. getBloodType(type) {
  607. var types = this.$store.getters.blood_types
  608. for (let i = 0; i < types.length; i++) {
  609. if (types[i].id == type) {
  610. return types[i].name
  611. }
  612. }
  613. },
  614. getPatientGender(gender) {
  615. if (gender == 1) {
  616. return '男'
  617. } else if (gender == 2) {
  618. return '女'
  619. }
  620. return ''
  621. },
  622. getTime(value, temp) {
  623. if (value != undefined) {
  624. return uParseTime(value, temp)
  625. }
  626. return ''
  627. },
  628. getPhysiquePrintList() {
  629. let params = {
  630. ids: this.$route.query.ids,
  631. patient_id: this.$route.query.patient_id
  632. }
  633. getSickhistoryCheckRecordsPrint(params).then(response => {
  634. if (response.data.state == 1) {
  635. this.patient = response.data.data.patient
  636. this.diagnosis = this.patient.diagnose.split(',')
  637. console.log('ttttttt',this.diagnosis);
  638. this.list = response.data.data.sickhistorys
  639. }
  640. })
  641. },
  642. printAction: function() {
  643. const style = '@media print {.printP div{margin-bottom:5px;} .option_panel { margin: 0 5px 0 0; } .option_panel .check_box_panel { white-space: nowrap; outline: none; display: inline-block; line-height: 1; position: relative; vertical-align: middle; } .dialysis-print-order .order-title{margin:auto;font-weight:600;text-align:center;font-size:22px;padding:10px}.option_panel .check_box_panel .check_box { display: inline-block; position: relative; border: 1px solid #000; box-sizing: border-box; width: 14px; height: 12px; background-color: #fff; } .check_box_panel .did_checked::after { content: "√"; font-size: 15px; } .print_page_main_content {background-color: white;width: 960px;margin: 0 auto 50px;padding: 0 0 0 0; page-break-after: always;}.print_page_main_content .order-yy-name {margin: auto;text-align: center;font-size: 20px;letter-spacing: 5px;}.print_page_main_content .order_title {text-align: center;font-size: 23px; line-height: 50px;font-weight: 500;} .row {font-size: 20px;line-height: 20px;padding: 5px 0;}.inline_block { display: inline-block;}.under_line_two {display: inline-block;border-bottom: 1px solid #999;text-align: left;white-space: nowrap;width: 50%;}.under_line {display: inline-block;border-bottom: 1px solid #999;text-align: center;white-space: nowrap; width: 50%;}.flex {display: -webkit-box;display: -moz-box; display: -ms-flexbox; display: -webkit-flex;display: flex;align-items: center;-webkit-align-items: center;box-align: center;-moz-box-align: center;-webkit-box-align: center;text-align: center;-webkit-justify-content: space-between;justify-content: space-between;-moz-box-pack: space-between;-webkit--moz-box-pack: space-between;box-pack: space-between;}.print_page_main_content .proj_table {width: 100%;border: 1px solid;border-collapse: collapse;padding: 2px;}.print_page_main_content .proj_table tbody tr td {border: 1px solid;font-size: 16px;padding: 5px 8px;line-height: 30px;}.print_page_main_content .proj_table .inside_table {width: 100%;border: hidden; border-collapse: collapse;}.print_page_main_content .proj_table .inside_table tr td {border: 1px solid; text-align: center;font-size: 14px;padding: 6px 5px;line-height: 16px;}.print-table-no {width: 100%;text-align: center;border-collapse: collapse;font-size: 14px;}.es-img {height: 30px;}.advice-name {text-align: left !important;line-height: 16px !important;}.advice-children {display: flex;}}.margin-bottom-300 {margin-bottom:450px;}.margin-bottom-600 {margin-bottom:600px;}.margin-bottom-900 {margin-bottom:1000px;}.print-yema{ position: absolute;top: 920px;left: 50%;} .print-yema2{ position: absolute;top: 400px;left: 50%;}.print-yema3{position: absolute;top: 1230px;left: 50%;}.print-yema4{position: absolute;top:1050px;left: 50%;}.print-yema5{position: absolute;top:1370px;left: 50%;}.check_box{width:15px !important;height:15px !important;}.did_checke::after {font-size: 8px;margin-left: 2px;margin-top: 12px !important;position: absolute;}'
  644. printJS({
  645. printable: 'print_content',
  646. type: 'html',
  647. documentTitle: ' ',
  648. style: style,
  649. scanStyles: false
  650. })
  651. }
  652. },
  653. created() {
  654. this.org_id = this.$store.getters.xt_user.org.id
  655. this.getPhysiquePrintList()
  656. this.fetchAllDoctorAndNurse()
  657. }
  658. }
  659. </script>
  660. <style scoped>
  661. .print_page_main_content {
  662. background-color: white;
  663. width: 960px;
  664. margin: 0 auto 50px;
  665. padding: 0 0 0 0;
  666. page-break-after: always;
  667. }
  668. </style>