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

remind_print_setting.vue 34KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806
  1. <template>
  2. <div class="main-contain">
  3. <div class="position">
  4. <bread-crumb :crumbs="crumbs"></bread-crumb>
  5. <el-row style="float:right;">
  6. <el-col :span="24">
  7. <el-button
  8. size="small"
  9. icon="el-icon-printer"
  10. type="primary"
  11. @click="printAction"
  12. >打印</el-button
  13. >
  14. </el-col>
  15. </el-row>
  16. </div>
  17. <div class="app-container" style="background-color: white;">
  18. <div id="print_content">
  19. <div class="print_main_content">
  20. <div class="table_panel">
  21. <div v-for="(main_collection,index) in scheduleData" :key="index" style="page-break-after: always;">
  22. <div class="signPrint" v-if="org_id != 10188 && org_id!=10340 && org_id!=9671 && org_id!=9675">
  23. <div>
  24. <span v-if="printObj.mode == 1">透析模式:
  25. <span v-if="main_collection.mode_id ==1">HD</span>
  26. <span v-if="main_collection.mode_id ==2">HDF</span>
  27. <span v-if="main_collection.mode_id ==3">HD+HP</span>
  28. <span v-if="main_collection.mode_id ==4">HP</span>
  29. <span v-if="main_collection.mode_id ==5">HF</span>
  30. <span v-if="main_collection.mode_id ==6">SCUF</span>
  31. <span v-if="main_collection.mode_id ==7">IUF</span>
  32. <span v-if="main_collection.mode_id ==8">HFHD</span>
  33. <span v-if="main_collection.mode_id ==9">HFHD+HP</span>
  34. <span v-if="main_collection.mode_id ==10">PHF</span>
  35. <span v-if="main_collection.mode_id ==11">HFR</span>
  36. <span v-if="main_collection.mode_id ==12">HDF+HP</span>
  37. <span v-if="main_collection.mode_id ==13">CRRT</span>
  38. <span v-if="main_collection.mode_id ==14">腹水回输</span>
  39. <span v-if="main_collection.mode_id ==19">IUF+HD</span>
  40. <span v-if="main_collection.mode_id ==20">UF</span>
  41. <span v-if="main_collection.mode_id ==21">HD+</span>
  42. <span v-if="main_collection.mode_id ==22">血浆胆红素吸附+HDF</span>
  43. <span v-if="main_collection.mode_id ==23">血浆胆红素吸附</span>
  44. <span v-if="main_collection.mode_id ==24">I-HDF</span>
  45. <span v-if="main_collection.mode_id ==25">HD高通</span>
  46. <span v-if="main_collection.mode_id ==26">CVVH</span>
  47. <span v-if="main_collection.mode_id ==27">CVVHD</span>
  48. <span v-if="main_collection.mode_id ==28">CVVHDF</span>
  49. <span v-if="main_collection.mode_id ==29">PE</span>
  50. <span v-if="main_collection.mode_id ==30">血浆胆红素吸附+HP</span>
  51. <span v-if="main_collection.mode_id ==31">HPD</span>
  52. <span v-if="main_collection.mode_id ==32">HDP</span>
  53. </span>
  54. </div>
  55. <div>
  56. <span v-if="printObj.week == 1">
  57. 星期:
  58. <span v-if="main_collection.schedule_week ==1">星期一</span>
  59. <span v-if="main_collection.schedule_week ==2">星期二</span>
  60. <span v-if="main_collection.schedule_week ==3">星期三</span>
  61. <span v-if="main_collection.schedule_week ==4">星期四</span>
  62. <span v-if="main_collection.schedule_week ==5">星期五</span>
  63. <span v-if="main_collection.schedule_week ==6">星期六</span>
  64. <span v-if="main_collection.schedule_week ==7">星期日</span>
  65. </span>
  66. </div>
  67. <div>
  68. <span v-if="printObj.zone == 1">分区/</span>
  69. <span v-if="printObj.number == 1">床位号:</span>
  70. <span v-if="printObj.zone == 1">{{main_collection.zone.name}}/</span>
  71. <span v-if="printObj.number == 1">{{main_collection.number.number}}</span>
  72. </div>
  73. <div>姓名:
  74. <span v-if="type ==1 && printObj.name == 1">{{main_collection.patient.name}} </span>
  75. <span v-if="type ==2 && printObj.name == 1">{{main_collection.patient}} </span>
  76. </div>
  77. <div v-if="printObj.anticoagulant == 1">抗凝剂:
  78. <span v-if="org_id == 10138 || org_id == 0 || org_id == 10278">{{ main_collection.dialysissolution.anticoagulant ? anticoagulants_confit[main_collection.dialysissolution.anticoagulant].name + ' 5000iu/瓶' : ''}}</span>
  79. <span v-else >
  80. <span>{{getAnticoagulant(main_collection.dialysissolution.anticoagulant)}}</span>
  81. </span>
  82. </div>
  83. <div v-if="org_id == 10188 || org_id == 10217 || org_id == 10340 || org_id == 9671 || org_id == 9675">首剂:{{main_collection.dialysissolution.anticoagulant_shouji}}</div>
  84. <div v-if="org_id == 10188 || org_id == 10217 || org_id == 10340 || org_id == 9671 || org_id == 9675">维持:{{main_collection.dialysissolution.anticoagulant_weichi}}</div>
  85. <div v-if="printObj.anticoagulant_zongliang == 1">
  86. 用量:
  87. <span v-if="main_collection.dialysissolution.anticoagulant == 1">
  88. {{main_collection.dialysissolution.anticoagulant_zongliang}}mg
  89. </span>
  90. <span v-if="main_collection.dialysissolution.anticoagulant == 2">
  91. {{main_collection.dialysissolution.anticoagulant_zongliang}}mg
  92. </span>
  93. <span v-if="main_collection.dialysissolution.anticoagulant == 3">
  94. {{main_collection.dialysissolution.anticoagulant_zongliang}}iu
  95. </span>
  96. <span v-if="main_collection.dialysissolution.anticoagulant == 4">
  97. {{main_collection.dialysissolution.anticoagulant_zongliang}}mg
  98. </span>
  99. <span v-if="main_collection.dialysissolution.anticoagulant == 5">
  100. {{main_collection.dialysissolution.anticoagulant_zongliang}}mg
  101. </span>
  102. <span v-if="main_collection.dialysissolution.anticoagulant == 6">
  103. {{main_collection.dialysissolution.anticoagulant_zongliang}}iu
  104. </span>
  105. <span v-if="main_collection.dialysissolution.anticoagulant == 7">
  106. {{main_collection.dialysissolution.anticoagulant_zongliang}}iu
  107. </span>
  108. <span v-if="main_collection.dialysissolution.anticoagulant == 8">
  109. {{main_collection.dialysissolution.anticoagulant_zongliang}}iu
  110. </span>
  111. <span v-if="main_collection.dialysissolution.anticoagulant == 9">
  112. {{main_collection.dialysissolution.anticoagulant_zongliang}}iu
  113. </span>
  114. <span v-if="main_collection.dialysissolution.anticoagulant == 10">
  115. {{main_collection.dialysissolution.anticoagulant_zongliang}}iu
  116. </span>
  117. <span v-if="main_collection.dialysissolution.anticoagulant == 11">
  118. {{main_collection.dialysissolution.anticoagulant_zongliang}}iu
  119. </span>
  120. </div>
  121. <div v-if="org_id==0 || org_id ==10460">
  122. 目标超滤量:
  123. <span>
  124. {{main_collection.prescription.target_ultrafiltration}}ml
  125. </span>
  126. </div>
  127. <div v-if="org_id == 10188 || org_id == 10217 || org_id == 10340 || org_id == 9671 || org_id == 9675">干体重:{{main_collection.assessmentbefor.dry_weight}}</div>
  128. <div v-if="org_id == 10188 || org_id == 10217 || org_id == 10340 || org_id == 9671 || org_id == 9675">透前体重:{{main_collection.assessmentbefor.weight_before}}</div>
  129. <div v-if="org_id == 10188 || org_id == 10217 || org_id == 10340 || org_id == 9671 || org_id == 9675">体重增加:{{(main_collection.assessmentbefor.weight_before - main_collection.assessmentbefor.dry_weight).toFixed(2)}}</div>
  130. <div v-if="org_id!=10278">用法:静脉注射</div>
  131. <!-- 透析器灌流器 -->
  132. <div>
  133. <span v-if="printObj.dialyzers == 1 && printObj.perfusion_apparatus == 1">透析器/灌流器 <span v-if="org_id==10445 || org_id == 0 || org_id == 10600">/滤过器</span>:</span>
  134. <span v-if="printObj.dialyzers == 1&& main_collection.dialysissolution.dialysis_dialyszers!=''">{{main_collection.dialysissolution.dialysis_dialyszers}}</span>
  135. <span v-if="printObj.perfusion_apparatus == 1&& main_collection.dialysissolution.dialysis_irrigation!=''">{{main_collection.dialysissolution.dialysis_irrigation}}</span>
  136. <span v-if="org_id == 10440 && main_collection.dialysissolution.dialyzer_perfusion_apparatus!=''">{{main_collection.dialysissolution.dialyzer_perfusion_apparatus}}</span>
  137. <span v-if="org_id == 10445 || org_id == 0"><span v-if="main_collection.dialysissolution.dialysis_strainer!=''">/</span>{{ main_collection.dialysissolution.dialysis_strainer }}</span>
  138. </div>
  139. <div v-if="printObj.doctor_advice == 1">
  140. 医嘱:
  141. <span v-if="main_collection.doctoradvice!=''">{{getAdvice(main_collection.doctoradvice)}}</span>
  142. </div>
  143. <div v-if="org_id!=10440 && org_id!=10600">打印时间:
  144. {{getTime(main_collection.schedule_date)}}
  145. <span v-if="main_collection.schedule_week ==1">星期一</span>
  146. <span v-if="main_collection.schedule_week ==2">星期二</span>
  147. <span v-if="main_collection.schedule_week ==3">星期三</span>
  148. <span v-if="main_collection.schedule_week ==4">星期四</span>
  149. <span v-if="main_collection.schedule_week ==5">星期五</span>
  150. <span v-if="main_collection.schedule_week ==6">星期六</span>
  151. <span v-if="main_collection.schedule_week ==7">星期日</span></div>
  152. </div>
  153. <div class="signPrint" style="font-size:16px;" v-else>
  154. <div style="margin-left:50px;">姓名:
  155. <span v-if="type ==1 && printObj.name == 1">{{main_collection.patient.name}} </span>
  156. <span v-if="type ==2 && printObj.name == 1">{{main_collection.patient}} </span>
  157. <span v-if="type ==1 && printObj.name == 1">({{ main_collection.patient.dialysis_no }},{{getNewAge(main_collection.patient.id_card_no) }}岁)</span>
  158. <span v-if="type ==2 && printObj.name == 1">({{ main_collection.dialysis_no }},{{getNewAge(main_collection.id_card_no) }}岁)</span>
  159. </div>
  160. <div class="printCell">
  161. <span>
  162. 床号:{{ main_collection.number.number }}
  163. <span style="width:auto;" v-if="main_collection.schedule_type == 1">上午</span>
  164. <span style="width:auto;" v-if="main_collection.schedule_type == 2">下午</span>
  165. <span style="width:auto;" v-if="main_collection.schedule_type == 3">晚上</span>
  166. </span>
  167. <span>{{ printDate }}</span>
  168. </div>
  169. <div class="printCell">
  170. <span>干体重:{{main_collection.assessmentbefor.dry_weight}}Kg</span>
  171. <span>抗凝剂:{{ main_collection.dialysissolution.anticoagulant ? anticoagulants_confit[main_collection.dialysissolution.anticoagulant].name : ''}}</span>
  172. </div>
  173. <div class="printCell">
  174. <span>净重值:{{ main_collection.assessmentbefor.weight_before - main_collection.assessmentbefor.additional_weight }}Kg</span>
  175. 首剂:<span v-if="main_collection.dialysissolution.anticoagulant == 1">{{main_collection.dialysissolution.anticoagulant_shouji}} mg</span>
  176. <span v-if="main_collection.dialysissolution.anticoagulant == 2">
  177. {{main_collection.dialysissolution.anticoagulant_shouji}}mg
  178. </span>
  179. <span v-if="main_collection.dialysissolution.anticoagulant == 3">
  180. {{main_collection.dialysissolution.anticoagulant_shouji}}iu
  181. </span>
  182. <span v-if="main_collection.dialysissolution.anticoagulant == 4">
  183. {{main_collection.dialysissolution.anticoagulant_shouji}}mg
  184. </span>
  185. <span v-if="main_collection.dialysissolution.anticoagulant == 5">
  186. {{main_collection.dialysissolution.anticoagulant_shouji}} mg
  187. </span>
  188. <span v-if="main_collection.dialysissolution.anticoagulant == 6">
  189. {{main_collection.dialysissolution.anticoagulant_shouji}}iu
  190. </span>
  191. <span v-if="main_collection.dialysissolution.anticoagulant == 7">
  192. {{main_collection.dialysissolution.anticoagulant_shouji}}iu
  193. </span>
  194. <span v-if="main_collection.dialysissolution.anticoagulant == 8">
  195. {{main_collection.dialysissolution.anticoagulant_shouji}}iu
  196. </span>
  197. <span v-if="main_collection.dialysissolution.anticoagulant == 9">
  198. {{main_collection.dialysissolution.anticoagulant_shouji}}iu
  199. </span>
  200. <span v-if="main_collection.dialysissolution.anticoagulant == 10">
  201. {{main_collection.dialysissolution.anticoagulant_shouji}}iu
  202. </span>
  203. <span v-if="main_collection.dialysissolution.anticoagulant == 11">
  204. {{main_collection.dialysissolution.anticoagulant_shouji}}iu
  205. </span>
  206. </div>
  207. <div class="printCell">
  208. <span>体重增加:{{ (main_collection.assessmentbefor.weight_before - main_collection.lastafterweight?main_collection.lastafterweight.weight_after:0).toFixed(2) }}Kg</span>
  209. 维持:{{main_collection.dialysissolution.anticoagulant_weichi}}
  210. <span v-if="main_collection.dialysissolution.anticoagulant == 1">
  211. mg/h
  212. </span>
  213. <span v-if="main_collection.dialysissolution.anticoagulant == 2">
  214. mg/h
  215. </span>
  216. <span v-if="main_collection.dialysissolution.anticoagulant == 3">
  217. iu/h
  218. </span>
  219. <span v-if="main_collection.dialysissolution.anticoagulant == 4">
  220. mg/h
  221. </span>
  222. <span v-if="main_collection.dialysissolution.anticoagulant == 5">
  223. mg/h
  224. </span>
  225. <span v-if="main_collection.dialysissolution.anticoagulant == 6">
  226. iu/h
  227. </span>
  228. <span v-if="main_collection.dialysissolution.anticoagulant == 7">
  229. iu/h
  230. </span>
  231. <span v-if="main_collection.dialysissolution.anticoagulant == 8">
  232. iu/h
  233. </span>
  234. <span v-if="main_collection.dialysissolution.anticoagulant == 9">
  235. iu/h
  236. </span>
  237. <span v-if="main_collection.dialysissolution.anticoagulant == 10">
  238. iu/h
  239. </span>
  240. <span v-if="main_collection.dialysissolution.anticoagulant == 11">
  241. iu/h
  242. </span>
  243. </div>
  244. <div class="printCell">
  245. <span>处方脱水量:{{ main_collection.prescription.target_ultrafiltration }}ml</span>
  246. 总量:{{main_collection.dialysissolution.anticoagulant_zongliang}}
  247. <span v-if="main_collection.dialysissolution.anticoagulant == 1">
  248. mg
  249. </span>
  250. <span v-if="main_collection.dialysissolution.anticoagulant == 2">
  251. mg
  252. </span>
  253. <span v-if="main_collection.dialysissolution.anticoagulant == 3">
  254. iu
  255. </span>
  256. <span v-if="main_collection.dialysissolution.anticoagulant == 4">
  257. mg
  258. </span>
  259. <span v-if="main_collection.dialysissolution.anticoagulant == 5">
  260. mg
  261. </span>
  262. <span v-if="main_collection.dialysissolution.anticoagulant == 6">
  263. iu
  264. </span>
  265. <span v-if="main_collection.dialysissolution.anticoagulant == 7">
  266. iu
  267. </span>
  268. <span v-if="main_collection.dialysissolution.anticoagulant == 8">
  269. iu
  270. </span>
  271. <span v-if="main_collection.dialysissolution.anticoagulant == 9">
  272. iu
  273. </span>
  274. <span v-if="main_collection.dialysissolution.anticoagulant == 10">
  275. iu
  276. </span>
  277. <span v-if="main_collection.dialysissolution.anticoagulant == 11">
  278. iu
  279. </span>
  280. </div>
  281. </div>
  282. </div>
  283. </div>
  284. </div>
  285. </div>
  286. </div>
  287. </div>
  288. </template>
  289. <script>
  290. import { getScheduleList,getPrintList,getNextScheduleWeekDayOne } from '@/api/schedule'
  291. import { parseTime } from '@/utils'
  292. import { uParseTime } from '@/utils/tools'
  293. import BreadCrumb from '@/xt_pages/components/bread-crumb'
  294. import print from 'print-js'
  295. const moment = require('moment')
  296. export default {
  297. name: 'SchedulePrint',
  298. data() {
  299. return {
  300. crumbs: [
  301. { path: false, name: '排班提醒' },
  302. { path: false, name: '排班提醒打印' }
  303. ],
  304. scheduleData:[],
  305. week_type: 0,
  306. day:'',
  307. td_1_width: '10%',
  308. td_2_width: '10%',
  309. td_3_width: '25%',
  310. td_4_width: '45%',
  311. modeOptions: null,
  312. anticoagulants_confit:null,
  313. currentDate:'',
  314. start_time:moment().week(moment().week() + 1).startOf('week').unix(),
  315. end_time:moment().week(moment().week() + 1).endOf('week').unix(),
  316. org_id:0,
  317. now_time:0,
  318. zone:"",
  319. pre_status:0,
  320. printObj:{},
  321. type:1,
  322. printDate:''
  323. }
  324. },
  325. components: {
  326. BreadCrumb
  327. },
  328. created() {
  329. this.type = this.$route.query.type
  330. this.getPrintList()
  331. this.org_id = this.$store.getters.xt_user.org.id
  332. console.log("机构ID",this.org_id)
  333. this.currentDate = this.getCurrentDate()
  334. console.log("打印时间----------------------------",this.currentDate)
  335. this.printDate = moment().format("YYYY-MM-DD HH:mm:ss")
  336. this.modeOptions = this.$store.getters.treatment_mode
  337. this.anticoagulants_confit = this.$store.getters.anticoagulants_confit
  338. this.week_type = this.$route.query.week_type
  339. this.week_time = this.$route.query.week_time
  340. this.zone = this.$route.query.zone
  341. this.pre_status = this.$route.query.prestatus
  342. if(parseInt(this.$route.query.type) == 1){
  343. const params = {
  344. week_type:this.week_type,
  345. week_time:this.week_time,
  346. zone:this.zone,
  347. }
  348. console.log("params",params)
  349. getScheduleList(params).then(response=>{
  350. if(response.data.state ==1){
  351. var list = response.data.data.list
  352. for(let i=0;i<list.length;i++){
  353. list[i].sort = list[i].number.sort
  354. }
  355. var arr = list.sort(this.compare('sort'))
  356. console.log("arr--------",arr)
  357. this.scheduleData = arr
  358. let a = response.data.data.day
  359. console.log("a",a)
  360. var myDate = new Date(a);
  361. var year = myDate.getFullYear(); //年
  362. var month = myDate.getMonth() + 1; //月
  363. var day = myDate.getDate(); //日
  364. var days = myDate.getDay();
  365. switch(days) {
  366. case 1:
  367. days = '星期一';
  368. break;
  369. case 2:
  370. days = '星期二';
  371. break;
  372. case 3:
  373. days = '星期三';
  374. break;
  375. case 4:
  376. days = '星期四';
  377. break;
  378. case 5:
  379. days = '星期五';
  380. break;
  381. case 6:
  382. days = '星期六';
  383. break;
  384. case 0:
  385. days = '星期日';
  386. break;
  387. }
  388. var str = year + "年" + month + "月" + day + "日 ";
  389. this.currentDate = str
  390. }
  391. })
  392. var now_time = parseInt(this.week_type) * 86400 + this.start_time
  393. console.log("now",now_time)
  394. this.now_time = now_time
  395. }
  396. if(parseInt(this.$route.query.type) == 2){
  397. this.getNextScheduleWeekDay()
  398. }
  399. },
  400. methods: {
  401. getAdvice:function(doctor_advice) {
  402. if (doctor_advice != null) {
  403. let name = ""
  404. for (let i = 0; i< doctor_advice.length; i++) {
  405. let prescribing_number = ''
  406. let single_dose = ''
  407. let drug_spec = ''
  408. if (doctor_advice[i].prescribing_number > 0) {
  409. prescribing_number = doctor_advice[i].prescribing_number + doctor_advice[i].prescribing_number_unit
  410. }
  411. if (doctor_advice[i].single_dose > 0) {
  412. single_dose = ' 单次用量 ' + doctor_advice[i].single_dose + doctor_advice[i].single_dose_unit
  413. }
  414. if (doctor_advice[i].drug_spec > 0) {
  415. drug_spec = doctor_advice[i].drug_spec + doctor_advice[i].drug_spec_unit
  416. }
  417. name = name + doctor_advice[i].advice_name + " " + drug_spec + " " + prescribing_number + " " + single_dose + " " + doctor_advice[i].delivery_way + " " + doctor_advice[i].execution_frequency + " " + doctor_advice[i].remark + "\n"
  418. if (doctor_advice[i].child.length > 0) {
  419. for (let a = 0; a < doctor_advice[i].child.length; a++) {
  420. if (doctor_advice[i].child[a].prescribing_number > 0) {
  421. doctor_advice[i].child[a]['presc'] = doctor_advice[i].child[a].prescribing_number + doctor_advice[i].child[a].prescribing_number_unit
  422. } else {
  423. doctor_advice[i].child[a]['presc'] = ''
  424. }
  425. if (doctor_advice[i].child[a].single_dose > 0) {
  426. doctor_advice[i].child[a]['single'] = " " + ' 单次用量 ' + " " + doctor_advice[i].child[a].single_dose + doctor_advice[i].child[a].single_dose_unit
  427. } else {
  428. doctor_advice[i].child[a]['single'] = ''
  429. }
  430. name = name + "▲" + doctor_advice[i].child[a].advice_name + ""
  431. + doctor_advice[i].child[a].advice_desc
  432. + doctor_advice[i].child[a].drug_spec_unit
  433. + doctor_advice[i].child[a].presc
  434. + doctor_advice[i].child[a].single + "\n"
  435. }
  436. }
  437. }
  438. return name
  439. }
  440. },
  441. printAction: function() {
  442. const style = '@media print {.signPrint{margin-left:30px;} .print_main_content { background-color: white; width:960px; margin:0 auto; padding: 0 0 20px 0; } .order_title_panl { text-align: center; } .main_title { font-size: 18px; line-height: 40px; font-weight: 500; } .table_panel { } .table { width: 100%; border: 1px solid; border-collapse: collapse; padding: 2px; } thead tr td { border: 1px solid; text-align: center; font-size: 20px; padding: 15px 5px; } tbody tr td { border: 1px solid; text-align: center; font-size: 18px; padding: 10px 5px; } .proj { padding: 5px 0; text-align: left; } .proj_title { font-size: 16px; font-weight: 500; line-height: 25px; } .proj_item { font-size: 15px; line-height: 20px; } .zone_name { font-weight: 500; } .printCell span{display: inline-block;width: 180px;} @page {margin-top:10px;}}'
  443. const style1 = '@media print { .print_main_content { background-color: white; width:960px; margin:0 auto; padding: 0 0 20px 0; } .order_title_panl { text-align: center; } .main_title { font-size: 18px; line-height: 40px; font-weight: 500; } .table_panel { } .table { width: 100%; border: 1px solid; border-collapse: collapse; padding: 2px; } thead tr td { border: 1px solid; text-align: center; font-size: 20px; padding: 15px 5px; } tbody tr td { border: 1px solid; text-align: center; font-size: 18px; padding: 10px 5px; } .proj { padding: 5px 0; text-align: left; } .proj_title { font-size: 16px; font-weight: 500; line-height: 25px; } .proj_item { font-size: 15px; line-height: 20px; } .zone_name { font-weight: 500; } .printCell span{display: inline-block;width: 170px;} @page {margin-top:10px;}}'
  444. if(this.org_id == 10188 || this.org_id == 10217 || this.org_id == 10340){
  445. printJS({
  446. printable: 'print_content',
  447. type: 'html',
  448. documentTitle: ' ',
  449. style: style1,
  450. scanStyles: false
  451. })
  452. }else{
  453. printJS({
  454. printable: 'print_content',
  455. type: 'html',
  456. documentTitle: ' ',
  457. style: style,
  458. scanStyles: false
  459. })
  460. }
  461. }, getSchedulesType: function(type) {
  462. let type_name = ''
  463. switch (type) {
  464. case 1:
  465. type_name = '上午'
  466. break
  467. case 2:
  468. type_name = '下午'
  469. break
  470. case 3:
  471. type_name = '晚上'
  472. break
  473. }
  474. return type_name
  475. },
  476. getCurrentDate: function () {
  477. console.log(this.$route.query.week_type)
  478. var myDate = new Date();
  479. var year = myDate.getFullYear(); //年
  480. var month = myDate.getMonth() + 1; //月
  481. var day = myDate.getDate() + 7; //日
  482. var newday = myDate.getDay();
  483. var days = parseInt(this.$route.query.week_type);
  484. var dayNum = parseInt(this.$route.query.week_type);
  485. switch(days) {
  486. case 1:
  487. days = '星期一';
  488. break;
  489. case 2:
  490. days = '星期二';
  491. break;
  492. case 3:
  493. days = '星期三';
  494. break;
  495. case 4:
  496. days = '星期四';
  497. break;
  498. case 5:
  499. days = '星期五';
  500. break;
  501. case 6:
  502. days = '星期六';
  503. break;
  504. case 7:
  505. days = '星期日';
  506. break;
  507. }
  508. if(newday > dayNum){
  509. let lastDay = day - (newday - dayNum)
  510. console.log("lastDay1",lastDay)
  511. var str = year + "年" + month + "月" + lastDay + "日 " + days;
  512. return str;
  513. }else if(newday < dayNum){
  514. let lastDay = day + (dayNum - newday)
  515. console.log("lastDay2",lastDay)
  516. var str = year + "年" + month + "月" + lastDay + "日 " + days;
  517. return str;
  518. }else{
  519. var str = year + "年" + month + "月" + day + "日 " + days;
  520. return str;
  521. }
  522. },
  523. compare(property) {
  524. return function (a, b) {
  525. var value1 = a[property];
  526. var value2 = b[property];
  527. return value1 - value2;
  528. }
  529. },
  530. getTime(val) {
  531. if(val == ""){
  532. return ""
  533. }else {
  534. return uParseTime(val, '{y}-{m}-{d}')
  535. }
  536. },
  537. getPrintList(){
  538. getPrintList().then(response=>{
  539. if(response.data.state == 1){
  540. var list = response.data.data.list
  541. console.log("打印设置",list)
  542. this.printObj = list
  543. }
  544. })
  545. },
  546. getTimestamp(time) { //把时间日期转成时间戳
  547. return (new Date(time)).getTime()
  548. },
  549. getNextScheduleWeekDay() {
  550. const start = moment().weekday(1).format('YYYY-MM-DD'); //本周一
  551. const end = moment().weekday(7).format('YYYY-MM-DD')
  552. var zone = this.zone
  553. // var newArr = []
  554. // for(let i=0;i<this.zoneList.length;i++){
  555. // newArr.push(this.zoneList[i].id)
  556. // }
  557. // var arr = newArr.join(",")
  558. // var str = ""
  559. // if(this.zone == 0){
  560. // str = arr
  561. // }
  562. // if(zone != 0){
  563. // str = zone.join(",")
  564. // }
  565. // var now_time = parseInt(this.week_type) * 86400 + this.start_time
  566. let weekOfDay = parseInt(moment().format('E'))
  567. let next_monday = moment().add((7 - weekOfDay) + 1, 'days').format('YYYY-MM-DD');
  568. var now_time = parseInt(this.week_type - 1)*86400 + (this.getTimestamp(next_monday)/1000 -28800)
  569. const params = {
  570. start_time:moment().week(moment().week() + 1).startOf('week').unix(),
  571. end_time:moment().week(moment().week() + 1).endOf('week').unix(),
  572. week_type:this.week_type,
  573. week_time:this.week_time,
  574. zone:this.zone,
  575. record_date:this.getTime(now_time)
  576. }
  577. // const params = {
  578. // start_time:1609603200,
  579. // end_time:1610208000,
  580. // week_type:this.week_type,
  581. // week_time:this.week_time,
  582. // }
  583. console.log("params",params)
  584. getNextScheduleWeekDayOne(params).then(response => {
  585. this.scheduleData = [];
  586. if (response.data.state == 1) {
  587. var scheduleData = response.data.data.schedule;
  588. for(let i=0;i<scheduleData.length;i++){
  589. scheduleData[i].sort = scheduleData[i].number.sort
  590. }
  591. var arr = scheduleData.sort(this.compare('sort'))
  592. console.log("元旦快乐",arr)
  593. this.scheduleData = arr
  594. // var newList = []
  595. // for(let i=0;i<scheduleData.length;i++){
  596. // if(scheduleData.prescription.id > 0){
  597. // newList.push(scheduleData[i])
  598. // }
  599. // }
  600. // var arr = newList.sort(this.compare('sort'))
  601. // console.log("元旦快乐",arr)
  602. // this.scheduleData = arr
  603. } else {
  604. this.$message.error("网络错误");
  605. return false;
  606. }
  607. });
  608. },
  609. getAnticoagulant(name){
  610. if(name == 0){
  611. name = ""
  612. }
  613. if(name == 1){
  614. name = "无肝素"
  615. }
  616. if(name == 2){
  617. name = "普通肝素"
  618. }
  619. if(name == 3){
  620. name ="低分子肝素"
  621. }
  622. if(name == 4){
  623. name = "阿加曲班"
  624. }
  625. if(name == 5){
  626. name = "枸橼酸钠"
  627. }
  628. if(name == 6){
  629. name = "低分子肝素钙"
  630. }
  631. if(name == 7){
  632. name = "低分子肝素钠"
  633. }
  634. if(name == 8){
  635. name = "依诺肝素"
  636. }
  637. if(name == 9){
  638. name = "达肝素"
  639. }
  640. if(name == 10){
  641. name = "体外抗凝"
  642. }
  643. if(name == 11){
  644. name = "那屈肝素"
  645. }
  646. if(name == 12){
  647. name = "无抗凝剂"
  648. }
  649. if(name == 13){
  650. name = "那屈肝素钙"
  651. }
  652. return name
  653. },
  654. getAnticoagulantZonliang(arr,mode_id){
  655. var name = 0
  656. if(arr.length > 0){
  657. for(let i=0;i<arr.length;i++){
  658. if(mode_id == arr[i].mode_id){
  659. name = arr[i].anticoagulant_zongliang
  660. }
  661. }
  662. }
  663. return name
  664. },
  665. getNewAge(UUserCard) {
  666. if (UUserCard != null && UUserCard != '') {
  667. // 获取年龄
  668. var myDate = new Date()
  669. var month = myDate.getMonth() + 1
  670. var day = myDate.getDate()
  671. var age = myDate.getFullYear() - UUserCard.substring(6, 10) - 1
  672. if (UUserCard.substring(10, 12) < month || UUserCard.substring(10, 12) == month && UUserCard.substring(12, 14) <= day) {
  673. age++
  674. }
  675. return age
  676. }
  677. },
  678. }
  679. }
  680. </script>
  681. <style rel="stylesheet/scss" lang="scss" scoped>
  682. .print_main_content {
  683. background-color: white;
  684. max-width: 1500px;
  685. margin: 0 auto;
  686. padding: 0 0 20px 0;
  687. .order_title_panl {
  688. text-align: center;
  689. .main_title {
  690. font-size: 18px;
  691. line-height: 40px;
  692. font-weight: 500;
  693. }
  694. }
  695. .table_panel {
  696. .table {
  697. width: 100%;
  698. border: 1px solid;
  699. border-collapse: collapse;
  700. padding: 2px;
  701. thead {
  702. tr {
  703. td {
  704. border: 1px solid;
  705. text-align: center;
  706. font-size: 20px;
  707. padding: 15px 5px;
  708. }
  709. }
  710. }
  711. tbody {
  712. tr {
  713. td {
  714. border: 1px solid;
  715. text-align: center;
  716. font-size: 18px;
  717. padding: 10px 5px;
  718. .proj {
  719. padding: 5px 0;
  720. text-align: left;
  721. .proj_title {
  722. font-size: 16px;
  723. font-weight: 500;
  724. line-height: 25px;
  725. }
  726. .proj_item {
  727. font-size: 15px;
  728. line-height: 20px;
  729. .zone_name {
  730. font-weight: 500;
  731. }
  732. }
  733. }
  734. }
  735. }
  736. }
  737. }
  738. }
  739. }
  740. .signPrint{
  741. -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 60px rgba(0, 0, 0, 0.06) inset;
  742. -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset;
  743. box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset;
  744. margin-bottom: 20px;
  745. padding: 20px 10px;
  746. }
  747. .printCell{
  748. span{
  749. display: inline-block;
  750. width: 180px;
  751. }
  752. }
  753. </style>