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

prinSeven.vue 29KB

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