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

printOne.vue 24KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742
  1. <template>
  2. <div id="prescriptionPrint">
  3. <div v-for="(item, index) in advicePrint" :key="index">
  4. <div
  5. id="prescription-print"
  6. class="prescription-print"
  7. style="page-break-after: always"
  8. >
  9. <div class="printTitle" v-if="prescriptions[index].med_type == '1111'">
  10. {{ orgname }}第一类精神处方笺
  11. </div>
  12. <div class="printTitle" v-if="prescriptions[index].med_type == '1112'">
  13. {{ orgname }}第二类精神处方笺
  14. </div>
  15. <div
  16. class="printTitle"
  17. v-if="
  18. prescriptions[index].med_type != '1111' &&
  19. prescriptions[index].med_type != '1112'
  20. "
  21. >
  22. {{ orgname }}处方笺
  23. </div>
  24. <div >
  25. <div class="infoTitle">
  26. <p>姓名:{{ item.patient.name ? item.patient.name : "" }}</p>
  27. <p>
  28. 性别:
  29. <span v-if="item.patient.gender == 1">男</span>
  30. <span v-if="item.patient.gender == 2">女</span>
  31. </p>
  32. <p>年龄:{{ getAge(item.patient) ? getAge(item.patient) : "" }}岁</p>
  33. </div>
  34. <div class="infoMain">
  35. <div style="margin-bottom: 10px">
  36. 门诊号:{{ hisPatient.number ? hisPatient.number : "" }}
  37. </div>
  38. <div style="margin-bottom: 10px">
  39. 科室:{{ item.info ? getDepart(item.info.departments) : "" }}
  40. </div>
  41. <div style="margin-bottom: 10px">
  42. 医保卡号:{{ item.hisPatient.number ? item.hisPatient.number : "" }}
  43. </div>
  44. <div style="margin-bottom: 10px" v-if="org_id != 10188">
  45. 电话:{{ item.patient.phone }}
  46. </div>
  47. <div style="margin-bottom: 10px" v-else>
  48. 日期:{{ getTime(item.ctime) ? getTime(item.ctime) : "" }}
  49. </div>
  50. <div>地址:{{ item.patient.home_address }}</div>
  51. <div style="display: flex; width: 50%">
  52. 临床诊断:{{ getDiagnosis(item.info.diagnosis) }}
  53. </div>
  54. </div>
  55. </div>
  56. <div class="prescriptionBox" >
  57. <div class="Rp">Rp:</div>
  58. <div
  59. class="drugsBox"
  60. v-for="(it, index) in advicess" :key="index"
  61. :style="{'page-break-after':index==yi&&item.advices.length>3? 'always':'auto'}"
  62. >
  63. <!-- class="drugsBox" item.advices.length>=5 ? 'danzhang' : 'drugsBox' :style="{'page-break-after':index==yi&&item.advices.length>3? 'always':'auto'}"-->
  64. <!-- <div class="drugsOne"><span style="font-weight:bold;">{{ index+1 + '.' }}</span>{{it.advice_name?it.advice_name:""}}&nbsp;&nbsp;{{it.single_dose}}{{it.single_dose_unit}}&nbsp;×&nbsp; {{it.prescribing_number}}{{it.prescribing_number_unit}}</div> -->
  65. <template v-if="index==yi+1&&item.advices.length>3">
  66. <div style="margin: 20px 0px;">
  67. <div class="infoTitle">
  68. <p>姓名:{{ item.patient.name ? item.patient.name : "" }}</p>
  69. <p>
  70. 性别:
  71. <span v-if="item.patient.gender == 1">男</span>
  72. <span v-if="item.patient.gender == 2">女</span>
  73. </p>
  74. <p>年龄:{{ getAge(item.patient) ? getAge(item.patient) : "" }}岁</p>
  75. </div>
  76. <div class="infoMain">
  77. <div style="margin-bottom: 10px">
  78. 门诊号:{{ hisPatient.number ? hisPatient.number : "" }}
  79. </div>
  80. <div style="margin-bottom: 10px">
  81. 科室:{{ item.info ? getDepart(item.info.departments) : "" }}
  82. </div>
  83. <div style="margin-bottom: 10px">
  84. 医保卡号:{{ item.hisPatient.number ? item.hisPatient.number : "" }}
  85. </div>
  86. <div style="margin-bottom: 10px" v-if="org_id != 10188">
  87. 电话:{{ item.patient.phone }}
  88. </div>
  89. <div style="margin-bottom: 10px" v-else>
  90. 日期:{{ getTime(item.ctime) ? getTime(item.ctime) : "" }}
  91. </div>
  92. <div>地址:{{ item.patient.home_address }}</div>
  93. <div style="display: flex; width: 50%">
  94. 临床诊断:{{ getDiagnosis(item.info.diagnosis) }}
  95. </div>
  96. </div>
  97. </div>
  98. </template>
  99. <div style="position: relative;">
  100. <div class="drugsOne" style="border-right: 1px solid black; width: 80%;">
  101. <span style="font-weight: bold" >
  102. {{ index + 1 + "." }}
  103. </span>
  104. {{ it.advice_name ? it.advice_name : "" }}&nbsp;&nbsp;
  105. <span v-if="it.drug.min_unit != it.drug.dose_unit">
  106. {{ it.drug.dose }}{{ it.drug.dose_unit }}&nbsp;* {{ it.drug.min_number }}{{ it.drug.min_unit }}/
  107. {{it.drug.max_unit}}
  108. </span>&nbsp;
  109. <div>
  110. <template v-if="arr.length>0 && arr[0][0].groupno==it.groupno">
  111. <div >
  112. <!-- v-for="(its,indexs) in arr" :key="indexs" -->
  113. <span style="margin-left: 38px;">{{arr[0][0].advice_name ? arr[0][0].advice_name : ""}}</span>&nbsp;&nbsp;
  114. <span v-if="arr[0][0].drug.min_unit != arr[0][0].drug.dose_unit">
  115. {{ arr[0][0].drug.dose }}{{ arr[0][0].drug.dose_unit }}&nbsp;* {{ arr[0][0].drug.min_number }}{{ arr[0][0].drug.min_unit }}/
  116. {{arr[0][0].drug.max_unit}}
  117. </span>&nbsp;
  118. </div>
  119. </template>
  120. </div>
  121. <div style="margin-left: 70px">
  122. <span >用法:{{ it.single_dose }}{{ it.single_dose_unit }}</span
  123. >&nbsp;&nbsp;<span
  124. >{{ it.execution_frequency }}&nbsp;{{
  125. it.delivery_way
  126. }}&nbsp;</span>&nbsp;&nbsp;<span>{{ it.advice_desc }}</span>
  127. </div>
  128. </div>
  129. <div style="display: inline-block;position: absolute;left:85%;top:10px;margin-left: 10px;">
  130. ×&nbsp;{{ it.prescribing_number}}{{ it.prescribing_number_unit }}
  131. </div>
  132. </div>
  133. <template v-if="index==yi&&item.advices.length>3">
  134. <div style="margin: 20px 0px;">
  135. <div class="doctorBox" v-if="org_id != 10188 && org_id != 0">
  136. <p v-if="org_id == 10217 || org_id == 0">
  137. 医师:
  138. <span
  139. style="width: 100px; display: inline-block"
  140. v-if="item.creator == ''"
  141. >
  142. {{ item.doctor }}
  143. </span>
  144. <span
  145. style="width: 100px; display: inline-block"
  146. v-else-if="doc_name != ''"
  147. >
  148. {{ doc_name }}
  149. </span>
  150. <img
  151. style="height: 50px;"
  152. :src="setAdminUserES(item.creator,item.doctor)"
  153. alt=""
  154. srcset=""
  155. />
  156. </p>
  157. <p v-else>
  158. 医师: {{ item.doctor ? item.doctor : "" }}
  159. </p>
  160. <p>日期:{{ getTime(item.ctime) ? getTime(item.ctime) : "" }}</p>
  161. </div>
  162. <div class="doctorBoxs" style="border-bottom: 2px solid #000;" v-if="org_id == 10188 || org_id == 0">
  163. <p>医师:{{ item.doctor ? item.doctor : "" }}</p>
  164. </div>
  165. <div class="actionBar" v-if="org_id != 10188 && org_id != 0">
  166. <p>审核:</p>
  167. <p>配对:</p>
  168. <p>核对:</p>
  169. <p>发药:</p>
  170. <p>
  171. 药费:{{
  172. getTotalOne(item.id).toFixed(2)
  173. ? getTotalOne(item.id).toFixed(2)
  174. : 0
  175. }}元
  176. </p>
  177. <!-- <p>药费:466.2元</p>-->
  178. </div>
  179. <div class="actionBar" v-else>
  180. <p >审核、调配:</p>
  181. <p >核对、发药:</p>
  182. <p >
  183. 药费:{{
  184. getTotalOne(item.id).toFixed(2)
  185. ? getTotalOne(item.id).toFixed(2)
  186. : 0
  187. }}元
  188. </p>
  189. <!-- <p>药费:551.2元</p>-->
  190. <!-- <p>药费:466.2元</p>-->
  191. </div>
  192. </div>
  193. </template>
  194. </div>
  195. <div
  196. class="drugsBox"
  197. v-for="(it, i) in item.additionalcharge"
  198. :key="i"
  199. >
  200. <div class="drugsOne">
  201. {{ it.item_name ? it.item_name : "" }}:&nbsp;{{ it.price }}元/{{
  202. it.count
  203. }}次
  204. </div>
  205. </div>
  206. <div
  207. class="drugsBox"
  208. v-for="(it, index) in item.project"
  209. :key="index"
  210. >
  211. <div class="drugsOne">
  212. <span style="font-weight: bold">{{ index + 1 + "." }}</span
  213. >{{
  214. it.type == 2
  215. ? getProjectName(it.project_id)
  216. ? getProjectName(it.project_id)
  217. : ""
  218. : it.good_info.good_name
  219. }}&nbsp;&nbsp;{{ it.single_dose
  220. }}{{ it.single_dose_unit }}&nbsp;×&nbsp; {{ it.count }}{{ unit }}
  221. </div>
  222. <div style="margin-left: 100px">
  223. <span>用法:{{ it.single_dose }}{{ it.single_dose_unit }}</span
  224. >&nbsp;&nbsp;<span>{{ it.delivery_way }}</span
  225. >&nbsp;&nbsp;<span>{{ it.advice_desc }}</span>
  226. </div>
  227. </div>
  228. <div
  229. class="drugsBox"
  230. v-for="(it, i) in item.additionalcharge"
  231. :key="i"
  232. >
  233. <div class="drugsOne">
  234. {{ it.project_id ? it.project_id : "" }}:&nbsp;{{
  235. it.price.toFixed(2)
  236. }}元/{{ it.count }}次
  237. </div>
  238. </div>
  239. <div style="text-align: center">(以下空白)</div>
  240. </div>
  241. <div class="doctorBox" v-if="org_id != 10188 && org_id != 0">
  242. <p v-if="org_id == 10217 || org_id == 0">
  243. 医师:
  244. <span
  245. style="width: 100px; display: inline-block"
  246. v-if="item.creator == ''"
  247. >
  248. {{ item.doctor }}
  249. </span>
  250. <span
  251. style="width: 100px; display: inline-block"
  252. v-else-if="doc_name != ''"
  253. >
  254. {{ doc_name }}
  255. </span>
  256. <img
  257. style="height: 50px;"
  258. :src="setAdminUserES(item.creator,item.doctor)"
  259. alt=""
  260. srcset=""
  261. />
  262. </p>
  263. <p v-else>
  264. 医师: {{ item.doctor ? item.doctor : "" }}
  265. </p>
  266. <p>日期:{{ getTime(item.ctime) ? getTime(item.ctime) : "" }}</p>
  267. </div>
  268. <div class="doctorBoxs" style="border-bottom: 2px solid #000;" v-if="org_id == 10188 || org_id == 0">
  269. <p>医师:{{ item.doctor ? item.doctor : "" }}</p>
  270. </div>
  271. <!-- <div class="doctorBoxtwo" v-if="org_id == 10188 || org_id == 0">
  272. <p >审核、调配:</p>
  273. <p >核对、发药:</p>
  274. <p style="margin-right: 43px">药师:</p>
  275. </div> -->
  276. <div class="actionBar" v-if="org_id != 10188 && org_id != 0">
  277. <!-- <p>审核:{{getDoctor(item.advices[0].checker)?getDoctor(item.advices[0].checker):""}}</p>
  278. <p>配对:</p>
  279. <p>核对:{{getDoctor(item.advices[0].checker)?getDoctor(item.advices[0].checker):""}}</p>
  280. <p>发药:{{getDoctor(item.advices[0].execution_staff)?getDoctor(item.advices[0].execution_staff):""}}</p>
  281. <p>药费:{{getTotalOne(item.id)?getTotalOne(item.id):0}}元</p> -->
  282. <p>审核:</p>
  283. <p>配对:</p>
  284. <p>核对:</p>
  285. <p>发药:</p>
  286. <p>
  287. 药费:{{
  288. getTotalOne(item.id).toFixed(2)
  289. ? getTotalOne(item.id).toFixed(2)
  290. : 0
  291. }}元
  292. </p>
  293. <!-- <p>药费:466.2元</p>-->
  294. </div>
  295. <div class="actionBar" v-else>
  296. <p >审核、调配:</p>
  297. <p >核对、发药:</p>
  298. <p >
  299. 药费:{{
  300. getTotalOne(item.id).toFixed(2)
  301. ? getTotalOne(item.id).toFixed(2)
  302. : 0
  303. }}元
  304. </p>
  305. <!-- <p>药费:551.2元</p>-->
  306. <!-- <p>药费:466.2元</p>-->
  307. </div>
  308. <!-- </div> -->
  309. </div>
  310. </div>
  311. </div>
  312. </template>
  313. <script>
  314. import { jsGetAge, uParseTime } from "@/utils/tools";
  315. import {
  316. getAllDoctorList,
  317. getPrescriptionPrint,
  318. getHisPatientDetail,
  319. } from "@/api/project/project";
  320. import { getInitData } from "@/api/his/his";
  321. export default{
  322. props: {
  323. patient_id: Number,
  324. record_date: String,
  325. prescription_id: Number,
  326. ids: String,
  327. },
  328. data() {
  329. return {
  330. doc_name:"",
  331. doctorList: [],
  332. advicePrint: {},
  333. yi:2,
  334. arr:[],
  335. arrs:{},
  336. advicess:[],
  337. page:sessionStorage.getItem('dayin'),
  338. patient: {},
  339. tableData: [],
  340. prescriptionInfo: [],
  341. hisPatient: {},
  342. department: [],
  343. prescriptions: [],
  344. projectList: [],
  345. orgname: "",
  346. diagnoses: [],
  347. org_id: 0,
  348. operatorMaps: {},
  349. operators: [],
  350. doctorList_1: [],
  351. };
  352. },
  353. methods: {
  354. // 电子签名
  355. setAdminUserES(id,name) {
  356. console.log(id)
  357. console.log(name)
  358. console.log(this.operatorMaps)
  359. if (id == 0) {
  360. return "";
  361. }
  362. if (id in this.operatorMaps) {
  363. return this.operatorMaps[id].url;
  364. } else {
  365. this.doc_name = name
  366. return "";
  367. }
  368. },
  369. getAge(patient) {
  370. if(patient.id_card_no == "TWN001836483"){
  371. return patient.age
  372. }else{
  373. var thisLen = patient.id_card_no.length;
  374. var birth = "";
  375. if (thisLen == 15) {
  376. birth = "19" + patient.id_card_no.substr(6, 6);
  377. } else {
  378. birth = patient.id_card_no.substr(6, 8);
  379. }
  380. var births =
  381. birth.substr(0, 4) +
  382. "-" +
  383. birth.substr(4, 2) +
  384. "-" +
  385. birth.substr(6, 2);
  386. return jsGetAge(births, "-");
  387. }
  388. },
  389. getAllDoctorList() {
  390. getAllDoctorList().then((response) => {
  391. if (response.data.state == 1) {
  392. var doctor = response.data.data.doctor;
  393. this.doctorList = doctor;
  394. }
  395. });
  396. },
  397. getDoctor(id) {
  398. var name = "";
  399. for (let i = 0; i < this.doctorList.length; i++) {
  400. if (id == this.doctorList[i].admin_user_id) {
  401. name = this.doctorList[i].user_name;
  402. }
  403. }
  404. return name;
  405. },
  406. getTime(value, temp) {
  407. if (value != undefined) {
  408. return uParseTime(value, temp);
  409. }
  410. return "";
  411. },
  412. getPrescriptionPrint() {
  413. var params = {
  414. // patient_id:this.patient_id,
  415. // record_date:this.record_date,
  416. // prescription_id:this.prescription_id,
  417. patient_id: this.patient_id,
  418. record_date: this.record_date,
  419. prescription_id: this.prescription_id,
  420. ids: this.ids,
  421. p_type: 2,
  422. };
  423. console.log("params", params);
  424. getPrescriptionPrint(params).then((response) => {
  425. if (response.data.state == 1) {
  426. var advicePrint = response.data.data.advicePrint;
  427. console.log("adviceprint9999", advicePrint);
  428. this.advicePrint = advicePrint;
  429. this.prescriptions = advicePrint;
  430. this.doctorList_1 = response.data.data.eles;
  431. for(let i=0;i<this.advicePrint.length;i++){
  432. this.advicess=advicePrint[i].advices
  433. }
  434. for(let j=0;j<this.advicess.length;j++){
  435. for(let x=j+1;x<this.advicess.length;x++){
  436. if(this.advicess[j].groupno == this.advicess[x].groupno){
  437. this.arr.push(this.advicess.splice(x,1))
  438. // this.arrs=this.advicess.splice(x,1)
  439. }
  440. }
  441. }
  442. // this.merge(this.advicess)
  443. // console.log('4444444',this.arrs);
  444. console.log('55555555',this.arr);
  445. console.log('6666666',this.advicess);
  446. console.log(this.doctorList_1, "医生列表");
  447. if (this.doctorList_1.length > 0) {
  448. var operatorsLen = this.doctorList_1.length;
  449. for (var index = 0; index < operatorsLen; index++) {
  450. this.$set(
  451. this.operatorMaps,
  452. this.doctorList_1[index].creator,
  453. this.doctorList_1[index]
  454. );
  455. }
  456. }
  457. console.log("处方222222", this.prescriptions);
  458. var hisPatient = response.data.data.hisPatient;
  459. console.log("hisPatient", hisPatient);
  460. this.hisPatient = hisPatient;
  461. var projectlist = response.data.data.projectlist;
  462. console.log("所有项目列表", projectlist);
  463. this.projectList = projectlist;
  464. }
  465. });
  466. },
  467. getHisPatientDetail() {
  468. const params = {
  469. patient_id: this.patient_id,
  470. };
  471. getHisPatientDetail(params).then((response) => {
  472. if (response.data.state == 1) {
  473. var hisPatient = response.data.data.hisPatient;
  474. console.log("挂号病人", hisPatient);
  475. this.hisPatient = hisPatient;
  476. }
  477. });
  478. },
  479. getInitData() {
  480. getInitData().then((response) => {
  481. if (response.data.state == 1) {
  482. this.department = response.data.data.department;
  483. this.diagnoses = response.data.data.diagnose;
  484. console.log("争端", this.diagnoses);
  485. }
  486. });
  487. },
  488. getDepart(id) {
  489. var name = "";
  490. for (let i = 0; i < this.department.length; i++) {
  491. if (id == this.department[i].id) {
  492. name = this.department[i].name;
  493. }
  494. }
  495. return name;
  496. },
  497. getTotalOne(id) {
  498. var total = 0;
  499. var addtotal = 0;
  500. for (let i = 0; i < this.prescriptions.length; i++) {
  501. if (id == this.prescriptions[i].id) {
  502. if (this.prescriptions[i].project != null) {
  503. for (let a = 0; a < this.prescriptions[i].project.length; a++) {
  504. total =
  505. total +
  506. this.prescriptions[i].project[a].price *
  507. this.prescriptions[i].project[a].count;
  508. }
  509. }
  510. if (this.prescriptions[i].additionalcharge != null) {
  511. for (
  512. let a = 0;
  513. a < this.prescriptions[i].additionalcharge.length;
  514. a++
  515. ) {
  516. addtotal =
  517. addtotal +
  518. this.prescriptions[i].additionalcharge[a].price *
  519. this.prescriptions[i].additionalcharge[a].count;
  520. }
  521. }
  522. addtotal = Math.floor(addtotal * 100) / 100;
  523. }
  524. }
  525. for (let i = 0; i < this.prescriptions.length; i++) {
  526. if (id == this.prescriptions[i].id) {
  527. if (this.prescriptions[i].advices != null) {
  528. for (let a = 0; a < this.prescriptions[i].advices.length; a++) {
  529. total =
  530. total +
  531. this.prescriptions[i].advices[a].price *
  532. this.prescriptions[i].advices[a].prescribing_number;
  533. }
  534. }
  535. if (this.prescriptions[i].additionalcharge != null) {
  536. for (
  537. let a = 0;
  538. a < this.prescriptions[i].additionalcharge.length;
  539. a++
  540. ) {
  541. addtotal =
  542. addtotal +
  543. this.prescriptions[i].additionalcharge[a].price *
  544. this.prescriptions[i].additionalcharge[a].count;
  545. }
  546. }
  547. addtotal = Math.floor(addtotal * 100) / 100;
  548. }
  549. }
  550. return total + addtotal;
  551. },
  552. getProjectName(id) {
  553. var project_name = "";
  554. for (let i = 0; i < this.projectList.length; i++) {
  555. if (id == this.projectList[i].id) {
  556. project_name = this.projectList[i].project_name;
  557. }
  558. }
  559. return project_name;
  560. },
  561. getDiagnosis(id) {
  562. let arr = id.split(",");
  563. var name = "";
  564. for (let i = 0; i < this.diagnoses.length; i++) {
  565. if (arr.indexOf(String(this.diagnoses[i].id)) > -1) {
  566. name += this.diagnoses[i].class_name + " ";
  567. }
  568. }
  569. return name;
  570. },
  571. merge(arrA){
  572. var len=arrA.lenfth
  573. // for(let j=0;j<this.advicess.length;j++){
  574. // for(let x=j+1;x<this.advicess.length;x++){
  575. // if(this.advicess[j].groupno == this.advicess[x].groupno){
  576. // // this.arr.push(this.advicess.splice(x,1))
  577. // this.arrs=this.advicess.splice(x,1)
  578. // }
  579. // }
  580. // }
  581. for(let j=0;j<len;j++){
  582. for(let x=j+1;x<len;x++){
  583. if(arrA[j].groupno == arrA[x].groupno){
  584. this.arr.push(arrA.splice(x,1))
  585. }
  586. }
  587. }
  588. console.log('777777777',this.arr);
  589. return this.arr
  590. }
  591. },
  592. created() {
  593. this.getAllDoctorList();
  594. this.getInitData();
  595. this.getPrescriptionPrint();
  596. this.getHisPatientDetail();
  597. var xtuser = this.$store.getters.xt_user;
  598. this.orgname = xtuser.org.org_name;
  599. this.org_id = xtuser.org.id;
  600. // for(let j=0;j<this.advicess.length;j++){
  601. // console.log('44444444');
  602. // for(let x=j+1;x<this.advicess.length;x++){
  603. // if(this.advicess[j].groupno == this.advicess[x].groupno){
  604. // this.arr.push(this.advicess.splice(x,1))
  605. // }
  606. // }
  607. // }
  608. // console.log('777777777',this.arr[0].advice_name);
  609. // return this.arr
  610. },
  611. watch: {
  612. ids: function (val) {
  613. this.ids = val;
  614. this.getPrescriptionPrint();
  615. },
  616. },
  617. };
  618. </script>
  619. <style lang="scss" scoped>
  620. .prescription-print {
  621. -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27),
  622. 0 0 60px rgba(0, 0, 0, 0.06) inset;
  623. -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27),
  624. 0 0 40px rgba(0, 0, 0, 0.06) inset;
  625. box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset;
  626. margin-bottom: 20px;
  627. padding: 20px 10px;
  628. }
  629. .printTitle {
  630. font-size: 22px;
  631. text-align: center;
  632. font-weight: bold;
  633. }
  634. .infoTitle {
  635. display: flex;
  636. border-bottom: 2px solid #000;
  637. margin-top: 10px;
  638. line-height: 24px;
  639. padding: 0 10px;
  640. }
  641. .infoTitle p {
  642. width: 200px;
  643. }
  644. .infoMain {
  645. display: flex;
  646. flex-wrap: wrap;
  647. border-bottom: 2px solid #000;
  648. padding: 0 10px;
  649. }
  650. .infoMain div {
  651. width: 50%;
  652. line-height: 24px;
  653. }
  654. .prescriptionBox {
  655. padding: 0 10px;
  656. min-height: 450px;
  657. }
  658. .Rp {
  659. font-size: 22px;
  660. font-weight: bold;
  661. }
  662. .drugsBox {
  663. padding-left: 40px;
  664. margin-bottom: 10px;
  665. position: relative;
  666. }
  667. .drugsBox div {
  668. line-height: 20px;
  669. }
  670. .drugsOne {
  671. line-height: 24px;
  672. display: inline-block;
  673. }
  674. .drugsOne span {
  675. margin-right: 20px;
  676. }
  677. .doctorBox {
  678. display: flex;
  679. justify-content: space-between;
  680. padding: 0 10px;
  681. line-height: 24px;
  682. border-bottom: 2px solid #000;
  683. }
  684. .doctorBoxs{
  685. width: 100%;
  686. margin-right: 30px;
  687. text-align: right;
  688. padding: 0 10px;
  689. line-height: 24px;
  690. }
  691. .doctorBoxtwo {
  692. display: flex;
  693. justify-content: space-between;
  694. padding: 0 10px;
  695. line-height: 24px;
  696. }
  697. .actionBar {
  698. display: flex;
  699. justify-content: space-between;
  700. line-height: 24px;
  701. padding: 0 10px;
  702. }
  703. .actionBar p {
  704. width: 150px;
  705. }
  706. </style>