nextTableWeeks.vue 26KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803
  1. <template>
  2. <div>
  3. <div class="cell clearfix" style="float: right">
  4. <el-button
  5. style="float: right"
  6. size="small"
  7. icon="el-icon-printer"
  8. @click="signPrint()"
  9. type="primary"
  10. >标签打印
  11. </el-button>
  12. <el-button
  13. style="float: right"
  14. size="small"
  15. icon="el-icon-printer"
  16. @click="printAction()"
  17. type="primary"
  18. >打印
  19. </el-button>
  20. </div>
  21. <div class="cell clearfix">
  22. <label class="title"> <span class="name">时间</span> : </label>
  23. <div class="time">
  24. <ul class>
  25. <li
  26. :class="item.id == week_type ? 'active' : ''"
  27. @click="selectWeekType(item.id)"
  28. v-for="item in weekArr"
  29. :key="item.id"
  30. >
  31. {{ item.name }}
  32. </li>
  33. </ul>
  34. </div>
  35. </div>
  36. <div class="cell clearfix">
  37. <div class="title"><span class="name">班 次</span> :</div>
  38. <div class="time">
  39. <ul class>
  40. <li
  41. :class="item.id == week_time ? 'active' : ''"
  42. @click="selectWeekTime(item.id)"
  43. v-for="item in weekTimes"
  44. :key="item.id"
  45. >
  46. {{ item.name }}
  47. </li>
  48. </ul>
  49. </div>
  50. </div>
  51. <div class="cell clearfix">
  52. <div class="title"><span class="name">处方状态</span> :</div>
  53. <div class="time">
  54. <ul class>
  55. <li
  56. :class="item.id == pre_status ? 'active' : ''"
  57. @click="selectPreList(item.id)"
  58. v-for="item in preStatusList"
  59. :key="item.id"
  60. >
  61. {{ item.name }}
  62. </li>
  63. </ul>
  64. </div>
  65. </div>
  66. <div class="cell clearfix">
  67. <div class="title"><span class="name">分区</span> :</div>
  68. <!-- <div class="time">
  69. <ul class>
  70. <li
  71. :class="item.id == zone ? 'active' : ''"
  72. @click="selectZoneList(item.id)"
  73. v-for="item in zoneList"
  74. :key="item.id"
  75. >
  76. {{ item.name }}
  77. </li>
  78. </ul>
  79. </div> -->
  80. <el-select v-model="zone" multiple placeholder="请选择" @change="changeZone">
  81. <el-option
  82. v-for="item in zoneList"
  83. :key="item.id"
  84. :label="item.name"
  85. :value="item.id">
  86. </el-option>
  87. </el-select>
  88. </div>
  89. <el-table
  90. v-loading="loading"
  91. :row-style="{ color: '#303133' }"
  92. :data="scheduleData"
  93. border
  94. :header-cell-style="{
  95. backgroundColor: 'rgb(245, 247, 250)',
  96. color: '#606266'
  97. }"
  98. style="width: 100%"
  99. @selection-change="handleSelectionChange"
  100. height="calc(80vh - 200px)"
  101. >
  102. <el-table-column
  103. align="center"
  104. type="selection"
  105. width="55">
  106. </el-table-column>
  107. <el-table-column label="透析处方" min-width="100" align="center">
  108. <template slot-scope="scope">
  109. <span v-if="scope.row.prescription.id > 0">已确认</span>
  110. <span v-if="scope.row.prescription.id == 0">未确认</span>
  111. </template>
  112. </el-table-column>
  113. <el-table-column label="星期" width="60" align="center">
  114. <template slot-scope="scope">
  115. <span v-if="scope.row.schedule_week == 0">周日</span>
  116. <span v-if="scope.row.schedule_week == 1">周一</span>
  117. <span v-if="scope.row.schedule_week == 2">周二</span>
  118. <span v-if="scope.row.schedule_week == 3">周三</span>
  119. <span v-if="scope.row.schedule_week == 4">周四</span>
  120. <span v-if="scope.row.schedule_week == 5">周五</span>
  121. <span v-if="scope.row.schedule_week == 6">周六</span>
  122. </template>
  123. </el-table-column>
  124. <el-table-column label="姓名" width="70" align="center">
  125. <template slot-scope="scope">
  126. {{ scope.row.patient }}
  127. </template>
  128. </el-table-column>
  129. <el-table-column label="分区" min-width="110" align="center">
  130. <template slot-scope="scope">
  131. {{ scope.row.zone.name }}({{ getType(scope.row.partition_id) }})
  132. </template>
  133. </el-table-column>
  134. <el-table-column label="班次" width="70" align="center">
  135. <template slot-scope="scope">
  136. {{ getSchedulesType(scope.row.schedule_type) }}
  137. </template>
  138. </el-table-column>
  139. <el-table-column label="机号" width="70" align="center">
  140. <template slot-scope="scope">
  141. {{ scope.row.number.number }}
  142. </template>
  143. </el-table-column>
  144. <el-table-column label="透析模式" width="100" align="center">
  145. <template slot-scope="scope">
  146. {{
  147. scope.row.mode_id && modeOptions[scope.row.mode_id]
  148. ? modeOptions[scope.row.mode_id].name
  149. : ""
  150. }}
  151. </template>
  152. </el-table-column>
  153. <el-table-column label="透析器/灌流器" min-width="100" align="center">
  154. <template slot-scope="scope">
  155. <span v-if="org_id!=9987" >
  156. <span v-if="scope.row.dialysissolution.dialyzer_perfusion_apparatus!=''">
  157. <span v-if="org_id!=10131&& org_id !=10215">{{ scope.row.dialysissolution.dialyzer_perfusion_apparatus }}</span>
  158. <span v-if="org_id==10131 || org_id == 10215">{{scope.row.dialysissolution.dialyzer_perfusion_apparatus}}</span>
  159. </span>
  160. <span v-if="scope.row.dialysissolution.dialyzer_perfusion_apparatus =='' && scope.row.dialysissolution.length>0 ">{{ scope.row.dialysissolution.dialysis_dialyszers}}</span>
  161. </span>
  162. {{scope.row.dialysissolution.dialysis_dialyszers}}
  163. <span v-if="scope.row.dialysissolution.dialysis_dialyszers!='' && scope.row.dialysissolution.dialysis_irrigation!=''">/</span>
  164. <span v-if="scope.row.dialysissolution.dialysis_irrigation!=''">{{scope.row.dialysissolution.dialysis_irrigation}}</span>
  165. </template>
  166. </el-table-column>
  167. <el-table-column label="抗凝剂(商品名称)" min-width="100" align="center">
  168. <template slot-scope="scope">
  169. <span v-if="scope.row.dialysissolution.anticoagulant === 1">无肝素</span>
  170. <span v-if="scope.row.dialysissolution.anticoagulant === 2">普通肝素</span>
  171. <span v-if="scope.row.dialysissolution.anticoagulant === 3" >低分子肝素</span>
  172. <span v-if="scope.row.dialysissolution.anticoagulant === 4">阿加曲班</span>
  173. <span v-if="scope.row.dialysissolution.anticoagulant === 5">枸橼酸钠</span>
  174. <span v-if="scope.row.dialysissolution.anticoagulant === 6">低分子肝素钙</span>
  175. <span v-if="scope.row.dialysissolution.anticoagulant === 7">低分子肝素钠</span>
  176. <span v-if="scope.row.dialysissolution.anticoagulant === 8">依诺肝素</span>
  177. <span v-if="scope.row.dialysissolution.anticoagulant === 9">达肝素</span>
  178. <span v-if="scope.row.dialysissolution.anticoagulant === 10">体外抗凝</span>
  179. <span v-if="scope.row.dialysissolution.anticoagulant === 11">那屈肝素</span>
  180. <!-- <span v-if="scope.row.prescription.antioxidant_commodity_name!=''">
  181. (<span>{{scope.row.prescription.antioxidant_commodity_name}}</span>)
  182. </span> -->
  183. </template>
  184. </el-table-column>
  185. <el-table-column label="总量" width="70" align="center">
  186. <template slot-scope="scope">
  187. <span v-if="scope.row.dialysissolution.anticoagulant == 1">{{
  188. scope.row.dialysissolution.anticoagulant_zongliang
  189. ? scope.row.dialysissolution.anticoagulant_zongliang + "mg"
  190. : ""
  191. }}</span>
  192. <span v-if="scope.row.dialysissolution.anticoagulant == 2">{{
  193. scope.row.dialysissolution.anticoagulant_zongliang
  194. ? scope.row.dialysissolution.anticoagulant_zongliang + "iu"
  195. : ""
  196. }}</span>
  197. <span v-if="scope.row.dialysissolution.anticoagulant == 3">{{
  198. scope.row.dialysissolution.anticoagulant_zongliang
  199. ? scope.row.dialysissolution.anticoagulant_zongliang + "iu"
  200. : ""
  201. }}</span>
  202. <span v-if="scope.row.dialysissolution.anticoagulant == 4">{{
  203. scope.row.dialysissolution.anticoagulant_zongliang
  204. ? scope.row.dialysissolution.anticoagulant_zongliang + "mg"
  205. : ""
  206. }}</span>
  207. <span v-if="scope.row.dialysissolution.anticoagulant == 5">{{
  208. scope.row.dialysissolution.anticoagulant_zongliang
  209. ? scope.row.dialysissolution.anticoagulant_zongliang + "mg"
  210. : ""
  211. }}</span>
  212. <span v-if="scope.row.dialysissolution.anticoagulant == 6">{{
  213. scope.row.dialysissolution.anticoagulant_zongliang
  214. ? scope.row.dialysissolution.anticoagulant_zongliang + "iu"
  215. : ""
  216. }}</span>
  217. <span v-if="scope.row.dialysissolution.anticoagulant == 7">{{
  218. scope.row.dialysissolution.anticoagulant_zongliang
  219. ? scope.row.dialysissolution.anticoagulant_zongliang + "iu"
  220. : ""
  221. }}</span>
  222. <span v-if="scope.row.dialysissolution.anticoagulant == 8">{{
  223. scope.row.dialysissolution.anticoagulant_zongliang
  224. ? scope.row.dialysissolution.anticoagulant_zongliang + "iu"
  225. : ""
  226. }}</span>
  227. <span v-if="scope.row.dialysissolution.anticoagulant == 9">{{
  228. scope.row.dialysissolution.anticoagulant_zongliang
  229. ? scope.row.dialysissolution.anticoagulant_zongliang + "iu"
  230. : ""
  231. }}</span>
  232. <span v-if="scope.row.dialysissolution.anticoagulant == 10">{{
  233. scope.row.dialysissolution.anticoagulant_zongliang
  234. ? scope.row.dialysissolution.anticoagulant_zongliang + "iu"
  235. : ""
  236. }}</span>
  237. <span v-if="scope.row.dialysissolution.anticoagulant == 11">{{
  238. scope.row.dialysissolution.anticoagulant_zongliang
  239. ? scope.row.dialysissolution.anticoagulant_zongliang + "iu"
  240. : ""
  241. }}</span>
  242. </template>
  243. </el-table-column>
  244. <el-table-column label="长期医嘱" min-width="440" align="center">
  245. <template slot-scope="scope">
  246. <span style="white-space: pre" v-if="scope.row.doctoradvice.length>0">{{getAdvice(scope.row.doctoradvice)}}</span>
  247. <span style="white-space: pre" v-if="scope.row.hisdoctoradviceinfo.length>0">{{getAdviceOne(scope.row.hisdoctoradviceinfo)}}</span>
  248. </template>
  249. </el-table-column>
  250. </el-table>
  251. </div>
  252. </template>
  253. <script>
  254. import { uParseTime } from '@/utils/tools'
  255. import { getNextScheduleWeekDay,getAllZoneList } from "@/api/schedule";
  256. import WeekItem from "./WeekItem";
  257. const moment = require('moment')
  258. export default {
  259. name: "tableWeeks",
  260. props: {
  261. weekTime: {
  262. type: String,
  263. default: "thisWeek"
  264. }
  265. },
  266. data() {
  267. return {
  268. weekArr: [
  269. { id: 0, name: "全部" },
  270. { id: 1, name: "周一" },
  271. { id: 2, name: "周二" },
  272. { id: 3, name: "周三" },
  273. { id: 4, name: "周四" },
  274. { id: 5, name: "周五" },
  275. { id: 6, name: "周六" },
  276. { id: 7, name: "周日" }
  277. ],
  278. anticoagulants_confit: null,
  279. week_type: "1",
  280. week_time:0,
  281. weekTimes:[
  282. {id:0,name:"全部"},
  283. {id:1,name:"上午"},
  284. {id:2,name:"下午"},
  285. {id:3,name:"晚上"},
  286. ],
  287. weekTitle: ["", "", "", "", "", "", ""],
  288. weekData: {
  289. Monday: [],
  290. Tuesday: [],
  291. Wednesday: [],
  292. Thursday: [],
  293. Friday: [],
  294. Saturday: [],
  295. Sunday: []
  296. },
  297. scheduleData: [],
  298. modeOptions: null,
  299. org_id:0,
  300. pre_status:0,
  301. preStatusList:[
  302. {id:0,name:"全部"},
  303. {id:1,name:"已确认"},
  304. {id:2,name:"未确认"},
  305. ],
  306. zone:"",
  307. // zoneList:[{id:0,name:"全部"}],
  308. zoneList:[],
  309. start_time:moment().week(moment().week() + 1).startOf('week').unix(),
  310. loading:false,
  311. ids:""
  312. };
  313. },
  314. watch: {
  315. weekTime: function() {
  316. var theType = this.weekType(this.weekTime);
  317. this.getSchedules(theType);
  318. }
  319. },
  320. methods: {
  321. printAction() {
  322. var zone = this.zone
  323. var newArr = []
  324. for(let i=0;i<this.zoneList.length;i++){
  325. newArr.push(this.zoneList[i].id)
  326. }
  327. var arr = newArr.join(",")
  328. var str = ""
  329. if(this.zone == 0){
  330. str = arr
  331. }
  332. if(zone != 0){
  333. str = zone.join(",")
  334. }
  335. this.$router.push({
  336. path: "/schedule/remind/print/next?week_type=" + this.week_type+"&week_time="+this.week_time+"&zone="+str+"&prestatus="+this.pre_status
  337. });
  338. },
  339. compare(property) {
  340. return function (a, b) {
  341. var value1 = a[property];
  342. var value2 = b[property];
  343. return value1 - value2;
  344. }
  345. },
  346. getTimestamp(time) { //把时间日期转成时间戳
  347. return (new Date(time)).getTime()
  348. },
  349. getNextScheduleWeekDay() {
  350. this.loading = true
  351. const start = moment().weekday(1).format('YYYY-MM-DD'); //本周一
  352. const end = moment().weekday(7).format('YYYY-MM-DD')
  353. // console.log("start",moment(start).unix())
  354. var zone = this.zone
  355. var newArr = []
  356. for(let i=0;i<this.zoneList.length;i++){
  357. newArr.push(this.zoneList[i].id)
  358. }
  359. var arr = newArr.join(",")
  360. var str = ""
  361. if(this.zone == 0){
  362. str = arr
  363. }
  364. if(zone != 0){
  365. str = zone.join(",")
  366. }
  367. let weekOfDay = parseInt(moment().format('E'))
  368. let next_monday = moment().add((7 - weekOfDay) + 1, 'days').format('YYYY-MM-DD');
  369. let next_sunday = moment().add((7 - weekOfDay) + 7, 'days').format('YYYY-MM-DD')
  370. var now_time = parseInt(this.week_type - 1)*86400 + (this.getTimestamp(next_monday)/1000 -28800)
  371. const params = {
  372. start_time:next_monday,
  373. end_time:next_sunday,
  374. week_type:this.week_type,
  375. week_time:this.week_time,
  376. zone:str,
  377. record_date:this.getTime(now_time),
  378. ids:this.ids,
  379. }
  380. console.log("params0000000000",params)
  381. getNextScheduleWeekDay(params).then(response => {
  382. this.scheduleData = [];
  383. if (response.data.state == 1) {
  384. this.loading = false
  385. var scheduleData = response.data.data.schedule;
  386. if(this.pre_status == 0){
  387. for(let i=0;i<scheduleData.length;i++){
  388. scheduleData[i].sort = scheduleData[i].number.sort
  389. }
  390. var arr = scheduleData.sort(this.compare('sort'))
  391. console.log("元旦快乐",arr)
  392. this.scheduleData = arr
  393. }
  394. if(this.pre_status == 1){
  395. var newList = []
  396. for(let i=0;i<scheduleData.length;i++){
  397. if(scheduleData.prescription.id > 0){
  398. newList.push(scheduleData[i])
  399. }
  400. }
  401. var arr = newList.sort(this.compare('sort'))
  402. console.log("元旦快乐",arr)
  403. this.scheduleData = arr
  404. }
  405. if(this.pre_status == 2){
  406. var newList = []
  407. for(let i=0;i<scheduleData.length;i++){
  408. if(scheduleData.prescription.id == 0){
  409. newList.push(scheduleData[i])
  410. }
  411. }
  412. var arr = newList.sort(this.compare('sort'))
  413. console.log("元旦快乐",arr)
  414. this.scheduleData = arr
  415. }
  416. } else {
  417. this.$message.error("网络错误");
  418. return false;
  419. }
  420. });
  421. },
  422. weekType(weekTime) {
  423. var theType = 2;
  424. switch (weekTime) {
  425. case "lastWeek":
  426. theType = 1;
  427. break;
  428. case "thisWeek":
  429. theType = 2;
  430. break;
  431. case "nextWeek":
  432. theType = 3;
  433. break;
  434. case "nextTwoWeek":
  435. theType = 4;
  436. break;
  437. default:
  438. theType = 2;
  439. break;
  440. }
  441. return theType;
  442. },
  443. weekPath(week) {
  444. var weekArr = {
  445. 1: "Monday",
  446. 2: "Tuesday",
  447. 3: "Wednesday",
  448. 4: "Thursday",
  449. 5: "Friday",
  450. 6: "Saturday",
  451. 7: "Sunday"
  452. };
  453. if (typeof weekArr[week] == "undefined") {
  454. return "";
  455. }
  456. return weekArr[week];
  457. },
  458. selectWeekType(type) {
  459. this.week_type = type;
  460. this.getNextScheduleWeekDay();
  461. },
  462. selectWeekTime(type){
  463. this.week_time = type
  464. this.getNextScheduleWeekDay()
  465. },
  466. selectPreList(type){
  467. this.pre_status = type
  468. this.getNextScheduleWeekDay()
  469. },
  470. selectZoneList(type){
  471. this.zone = type
  472. this.getNextScheduleWeekDay()
  473. },
  474. getSchedulesType: function(type) {
  475. let type_name = "";
  476. switch (type) {
  477. case 1:
  478. type_name = "上午";
  479. break;
  480. case 2:
  481. type_name = "下午";
  482. break;
  483. case 3:
  484. type_name = "晚上";
  485. break;
  486. }
  487. return type_name;
  488. },
  489. getAdvice: function(doctor_advice) {
  490. if (doctor_advice != null) {
  491. let name = "";
  492. for (let i = 0; i < doctor_advice.length; i++) {
  493. let prescribing_number = "";
  494. let single_dose = "";
  495. let drug_spec = "";
  496. if (doctor_advice[i].prescribing_number > 0) {
  497. prescribing_number =
  498. doctor_advice[i].prescribing_number +
  499. doctor_advice[i].prescribing_number_unit;
  500. }
  501. if (doctor_advice[i].single_dose > 0) {
  502. single_dose =
  503. " 单次用量 " +
  504. doctor_advice[i].single_dose +
  505. doctor_advice[i].single_dose_unit;
  506. }
  507. if (doctor_advice[i].drug_spec > 0) {
  508. drug_spec =
  509. doctor_advice[i].drug_spec + doctor_advice[i].drug_spec_unit;
  510. }
  511. name =
  512. name +
  513. doctor_advice[i].advice_name +
  514. " " +
  515. drug_spec +
  516. " " +
  517. prescribing_number +
  518. " " +
  519. single_dose +
  520. " " +
  521. doctor_advice[i].delivery_way +
  522. " " +
  523. doctor_advice[i].execution_frequency +
  524. " " +
  525. doctor_advice[i].remark +
  526. "\n";
  527. if (doctor_advice[i].child.length > 0) {
  528. for (let a = 0; a < doctor_advice[i].child.length; a++) {
  529. if (doctor_advice[i].child[a].prescribing_number > 0) {
  530. doctor_advice[i].child[a]["presc"] =
  531. doctor_advice[i].child[a].prescribing_number +
  532. doctor_advice[i].child[a].prescribing_number_unit;
  533. } else {
  534. doctor_advice[i].child[a]["presc"] = "";
  535. }
  536. if (doctor_advice[i].child[a].single_dose > 0) {
  537. doctor_advice[i].child[a]["single"] =
  538. " " +
  539. " 单次用量 " +
  540. " " +
  541. doctor_advice[i].child[a].single_dose +
  542. doctor_advice[i].child[a].single_dose_unit;
  543. } else {
  544. doctor_advice[i].child[a]["single"] = "";
  545. }
  546. name =
  547. name +
  548. "▲" +
  549. doctor_advice[i].child[a].advice_name +
  550. "" +
  551. doctor_advice[i].child[a].advice_desc +
  552. doctor_advice[i].child[a].drug_spec_unit +
  553. doctor_advice[i].child[a].presc +
  554. doctor_advice[i].child[a].single +
  555. "\n";
  556. }
  557. }
  558. }
  559. return name;
  560. }
  561. },
  562. getAdviceOne: function(doctor_advice) {
  563. if (doctor_advice != null) {
  564. let name = "";
  565. for (let i = 0; i < doctor_advice.length; i++) {
  566. let prescribing_number = "";
  567. let single_dose = "";
  568. let drug_spec = "";
  569. if (doctor_advice[i].prescribing_number > 0) {
  570. prescribing_number =
  571. doctor_advice[i].prescribing_number +
  572. doctor_advice[i].prescribing_number_unit;
  573. }
  574. if (doctor_advice[i].single_dose > 0) {
  575. single_dose =
  576. " 单次用量 " +
  577. doctor_advice[i].single_dose +
  578. doctor_advice[i].single_dose_unit;
  579. }
  580. if (doctor_advice[i].drug_spec > 0) {
  581. drug_spec =
  582. doctor_advice[i].drug_spec + doctor_advice[i].drug_spec_unit;
  583. }
  584. name =
  585. name +
  586. doctor_advice[i].advice_name +
  587. " " +
  588. drug_spec +
  589. " " +
  590. prescribing_number +
  591. " " +
  592. single_dose +
  593. " " +
  594. doctor_advice[i].delivery_way +
  595. " " +
  596. doctor_advice[i].execution_frequency +
  597. " " +
  598. doctor_advice[i].remark +
  599. "\n";
  600. }
  601. return name;
  602. }
  603. },
  604. getAllZoneList(){
  605. getAllZoneList().then(response=>{
  606. if(response.data.state == 1){
  607. var zonelist = response.data.data.zoneList
  608. this.zoneList.push(...zonelist)
  609. this.getNextScheduleWeekDay()
  610. }
  611. })
  612. },
  613. getDialysisDialyszerPerfusion(patient_id){
  614. var name = ""
  615. for(let i=0;i<this.scheduleData.length;i++){
  616. if(patient_id == this.scheduleData[i].patient_id){
  617. var arrLength = this.scheduleData[i].dialysissolution.length
  618. if(arrLength > 0){
  619. name = this.scheduleData[i].dialysissolution[arrLength - 1].dialysis_dialyszers
  620. }
  621. }
  622. }
  623. return name
  624. },
  625. getDialysisDialyszerPerfusionOne(patient_id,mode_id,solution) {
  626. var name = ''
  627. for (let i = 0; i < solution.length; i++) {
  628. if (mode_id == solution[i].mode_id) {
  629. name = solution[i].dialyzer_perfusion_apparatus
  630. }
  631. }
  632. console.log('name', name)
  633. return name
  634. },
  635. changeZone(val){
  636. this.zone = val
  637. this.getNextScheduleWeekDay()
  638. },
  639. signPrint() {
  640. //
  641. if(this.org_id == 9671 || this.org_id == 9675 || this.org_id == 10340 || this.org_id ==10375 || this.org_id ==10517){
  642. var zone = this.zone
  643. var newArr = []
  644. for(let i=0;i<this.zoneList.length;i++){
  645. newArr.push(this.zoneList[i].id)
  646. }
  647. var arr = newArr.join(",")
  648. var str = ""
  649. if(this.zone == 0){
  650. str = arr
  651. }
  652. if(zone != 0){
  653. str = zone.join(",")
  654. }
  655. this.$router.push({
  656. path: '/schedule/remind/print/setting/one?week_type=' + this.week_type + '&week_time=' + this.week_time + '&zone=' + str + '&prestatus=' + this.pre_status+"&type="+2+"&ids="+this.ids
  657. })
  658. }
  659. if(this.org_id!=9671 && this.org_id!=9675 && this.org_id!=10340 && this.org_id !=10375 && this.org_id !=10469 && this.org_id !=10517){
  660. var zone = this.zone
  661. var newArr = []
  662. for(let i=0;i<this.zoneList.length;i++){
  663. newArr.push(this.zoneList[i].id)
  664. }
  665. var arr = newArr.join(",")
  666. var str = ""
  667. if(this.zone == 0){
  668. str = arr
  669. }
  670. if(zone != 0){
  671. str = zone.join(",")
  672. }
  673. this.$router.push({
  674. path: '/schedule/remind/print/setting?week_type=' + this.week_type + '&week_time=' + this.week_time + '&zone=' + str + '&prestatus=' + this.pre_status+"&type="+2+"&ids="+this.ids
  675. })
  676. }
  677. else if(this.org_id==10469){
  678. var zone = this.zone
  679. console.log("zone23232",zone)
  680. var newArr = []
  681. for(let i=0;i<this.zoneList.length;i++){
  682. newArr.push(this.zoneList[i].id)
  683. }
  684. var arr = newArr.join(",")
  685. var str = ""
  686. if(this.zone == 0){
  687. str = arr
  688. }
  689. if(zone != 0){
  690. str = zone.join(",")
  691. }
  692. this.$router.push({
  693. path: '/schedule/remind/print/setting/two?week_type=' + this.week_type + '&week_time=' + this.week_time + '&zone=' + str + '&prestatus=' + this.pre_status+"&type="+2+"&ids="+this.ids
  694. })
  695. }
  696. },
  697. getTime(val) {
  698. if(val == ""){
  699. return ""
  700. }else {
  701. return uParseTime(val, '{y}-{m}-{d}')
  702. }
  703. },
  704. handleSelectionChange(val){
  705. var arr = []
  706. for(let i=0;i<val.length;i++){
  707. arr.push(val[i].patient_id)
  708. }
  709. this.ids = arr.join(",")
  710. },
  711. getType(zone_id){
  712. var type_name =""
  713. var is_type = 0
  714. for(let i=0;i<this.zoneList.length;i++){
  715. if(zone_id == this.zoneList[i].id){
  716. is_type =this.zoneList[i].type
  717. }
  718. }
  719. if(is_type ==1){
  720. type_name = "普通"
  721. }
  722. if(is_type ==2){
  723. type_name = "乙肝"
  724. }
  725. if(is_type ==3){
  726. type_name = "丙肝"
  727. }
  728. if(is_type ==4){
  729. type_name = "艾滋病"
  730. }
  731. if(is_type ==5){
  732. type_name = "肺结核"
  733. }
  734. if(is_type ==6){
  735. type_name = "梅毒"
  736. }
  737. return type_name
  738. }
  739. },
  740. components: {
  741. WeekItem
  742. },
  743. created() {
  744. this.modeOptions = this.$store.getters.treatment_mode;
  745. this.anticoagulants_confit = this.$store.getters.anticoagulants_confit;
  746. this.getAllZoneList()
  747. this.org_id = this.$store.getters.xt_user.org.id
  748. }
  749. };
  750. </script>
  751. <style rel="stylesheet/css" lang="scss">
  752. .el-table td,
  753. .el-table th.is-leaf,
  754. .el-table--border,
  755. .el-table--group {
  756. border-color: #d0d3da;
  757. }
  758. .el-table--border::after,
  759. .el-table--group::after,
  760. .el-table::before {
  761. background-color: #d0d3da;
  762. }
  763. </style>