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

prinSeven.vue 26KB

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