血透系统pad前端

add_urgent_schedule.vue 18KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635
  1. <template>
  2. <div class="mainBox">
  3. <div class="mainContent">
  4. <div class="navigation">
  5. <div class="goBack">
  6. <span class="back" @click="$router.back(-1)">
  7. <span class="iconfont">&#xe720;</span>返回
  8. </span>
  9. </div>
  10. <div class="nav">
  11. <span>临时排班</span>
  12. </div>
  13. <div class="goBack"></div>
  14. </div>
  15. <div class="form" v-loading="loading">
  16. <van-row class="row">
  17. <van-col :span="24" class="danger_hint">
  18. <!--本次临时排班会覆盖已有排班中的同班次、同床位的排班,请仔细检查后再提交-->
  19. 温馨提示:本次临时排班只能调整到空余的床位
  20. </van-col>
  21. </van-row>
  22. <van-row class="row">
  23. <van-col :span="24">
  24. <div class="field_panel">
  25. <el-autocomplete
  26. class="Input"
  27. popper-class="my-autocomplete"
  28. v-model="value"
  29. :fetch-suggestions="querySearchAsync"
  30. :trigger-on-focus="false"
  31. placeholder="请输入病人名字"
  32. @select="handleSelect"
  33. >
  34. <i class="el-icon-search el-input__icon" slot="suffix"></i>
  35. <template slot-scope="{ item }">
  36. <div class="name">{{ item.name }}</div>
  37. </template>
  38. </el-autocomplete>
  39. </div>
  40. </van-col>
  41. </van-row>
  42. <van-row class="row">
  43. <van-col :span="24">
  44. <span class="title">日期:</span>
  45. <div class="field_panel">
  46. <van-field v-model="date" class="field"></van-field>
  47. </div>
  48. </van-col>
  49. </van-row>
  50. <van-row class="row">
  51. <van-col :span="24">
  52. <span class="title">患者:</span>
  53. <div class="field_panel">
  54. <van-field
  55. ref="patient_field"
  56. @focus="selectPatientAction"
  57. :value="patient_name"
  58. class="field"
  59. left-icon="arrow-down"
  60. ></van-field>
  61. </div>
  62. </van-col>
  63. </van-row>
  64. <van-row class="row">
  65. <van-col :span="24">
  66. <span class="title">班次:</span>
  67. <div class="field_panel">
  68. <van-field
  69. ref="sch_type_field"
  70. @focus="selectSchTypeAction"
  71. :value="schedule_type_title"
  72. class="field"
  73. left-icon="arrow-down"
  74. ></van-field>
  75. </div>
  76. </van-col>
  77. <van-col :span="24">
  78. <span class="title">治疗模式:</span>
  79. <div class="field_panel">
  80. <van-field
  81. ref="mode_field"
  82. @focus="selectModeAction"
  83. :value="mode_name"
  84. class="field"
  85. left-icon="arrow-down"
  86. ></van-field>
  87. </div>
  88. </van-col>
  89. <van-col :span="24">
  90. <span class="title">床位:</span>
  91. <div class="field_panel">
  92. <van-field
  93. ref="bed_field"
  94. @focus="selectBedAction"
  95. :value="bed_name"
  96. class="field"
  97. left-icon="arrow-down"
  98. ></van-field>
  99. </div>
  100. </van-col>
  101. </van-row>
  102. <van-row class="row">
  103. <van-col :span="24">
  104. <!-- <span class="title">&nbsp;</span>
  105. <div class="field_panel">
  106. <van-button type="info" size="normal" @click="submitAction">立即排班</van-button>
  107. </div>-->
  108. <div class="nowScheduling" @click="submitAction">立即排班</div>
  109. </van-col>
  110. </van-row>
  111. </div>
  112. </div>
  113. <side-bar :active_index="0"></side-bar>
  114. <van-popup v-model="show_patient_picker" position="bottom" class="popup">
  115. <van-picker :columns="patients" value-key="name" @change="didChangePatient"></van-picker>
  116. </van-popup>
  117. <van-popup v-model="show_mode_picker" position="bottom" class="popup">
  118. <van-picker :columns="modes" value-key="name" @change="didChangeMode"></van-picker>
  119. </van-popup>
  120. <van-popup v-model="show_bed_picker" position="bottom" class="popup">
  121. <van-picker :columns="zone_device_options" value-key="number" @change="didChangeBed"></van-picker>
  122. </van-popup>
  123. <van-popup v-model="show_sch_type_picker" position="bottom" class="popup">
  124. <van-picker :columns="schedule_types" value-key="text" @change="didChangeSchType"></van-picker>
  125. </van-popup>
  126. </div>
  127. </template>
  128. <script>
  129. import SideBar from "@/pages/layout/SideBar";
  130. import { parseTime } from "@/utils";
  131. import {
  132. getUrgentScheduleInitData,
  133. PostSearch,
  134. postUrgentSchedule
  135. } from "@/api/dialysis";
  136. import { Dialog, Toast } from "vant";
  137. export default {
  138. name: "AddUrgentSchedule",
  139. components: {
  140. SideBar
  141. },
  142. data() {
  143. return {
  144. loading: false,
  145. value: "",
  146. date: "2019-09-09",
  147. patient_id: 0,
  148. mode_id: 0,
  149. device_id: 0,
  150. schedule_type: 1,
  151. zone_name: "",
  152. show_patient_picker: false,
  153. show_mode_picker: false,
  154. show_bed_picker: false,
  155. show_sch_type_picker: false,
  156. patients: [],
  157. modes: [],
  158. schedule_types: [
  159. { value: 1, text: "上午" },
  160. { value: 2, text: "下午" },
  161. { value: 3, text: "晚上" }
  162. ],
  163. origin_device_numbers: [],
  164. zone_device_map: {},
  165. zone_names: [],
  166. current_devices: [],
  167. zone_device_options: [],
  168. origin_schedules: []
  169. };
  170. },
  171. computed: {
  172. patient_name: function() {
  173. for (let index = 0; index < this.patients.length; index++) {
  174. const patient = this.patients[index];
  175. if (patient.id == this.patient_id) {
  176. return patient.name;
  177. }
  178. }
  179. return "";
  180. },
  181. mode_name: function() {
  182. for (let index = 0; index < this.modes.length; index++) {
  183. const mode = this.modes[index];
  184. if (mode.id == this.mode_id) {
  185. return mode.name;
  186. }
  187. }
  188. return "";
  189. },
  190. bed_name: function() {
  191. if (this.zone_name.length > 0 && this.device_id != 0) {
  192. for (let index = 0; index < this.current_devices.length; index++) {
  193. const device_number = this.current_devices[index];
  194. if (device_number.id == this.device_id) {
  195. return device_number.zone.name + " - " + device_number.number;
  196. }
  197. }
  198. }
  199. return "";
  200. },
  201. schedule_type_title: function() {
  202. for (let index = 0; index < this.schedule_types.length; index++) {
  203. const type = this.schedule_types[index];
  204. if (type.value == this.schedule_type) {
  205. return type.text;
  206. }
  207. }
  208. return "";
  209. }
  210. },
  211. mounted() {
  212. var today = new Date();
  213. this.date = parseTime(today, "{y}-{m}-{d}");
  214. var hour = today.getHours();
  215. if (hour > 3 && hour < 11) {
  216. this.schedule_type = 1;
  217. } else if (hour >= 11 && hour < 18) {
  218. this.schedule_type = 2;
  219. } else {
  220. this.schedule_type = 3;
  221. }
  222. this.loading = true;
  223. let params = {
  224. type: this.schedule_type
  225. };
  226. console.log(params);
  227. getUrgentScheduleInitData(params)
  228. .then(rs => {
  229. this.loading = false;
  230. // console.log(rs.data.data)
  231. if (rs.data.state == 1) {
  232. this.origin_schedules = rs.data.data.schedules;
  233. this.patients = rs.data.data.patients;
  234. this.modes = rs.data.data.modes;
  235. this.origin_device_numbers = rs.data.data.device_numbers;
  236. for (let i = this.origin_schedules.length - 1; i >= 0; i--) {
  237. for (let y = this.origin_device_numbers.length - 1; y >= 0; y--) {
  238. if (
  239. this.origin_device_numbers[y].id ==
  240. this.origin_schedules[i].bed_id
  241. ) {
  242. this.origin_device_numbers.splice(y, 1);
  243. }
  244. }
  245. }
  246. if (this.patients.length > 0) {
  247. this.patient_id = this.patients[0].id;
  248. }
  249. if (this.modes.length > 0) {
  250. this.mode_id = this.modes[0].id;
  251. }
  252. var zone_device_map = {};
  253. for (
  254. let index = 0;
  255. index < this.origin_device_numbers.length;
  256. index++
  257. ) {
  258. const device_number = this.origin_device_numbers[index];
  259. if (
  260. zone_device_map[device_number.zone.name] == null ||
  261. zone_device_map[device_number.zone.name] == undefined
  262. ) {
  263. zone_device_map[device_number.zone.name] = [];
  264. }
  265. zone_device_map[device_number.zone.name].push(device_number);
  266. }
  267. this.zone_device_map = zone_device_map;
  268. this.zone_names = Object.keys(this.zone_device_map);
  269. if (this.zone_names.length > 0) {
  270. this.zone_name = this.zone_names[0];
  271. this.current_devices = this.zone_device_map[this.zone_name];
  272. this.device_id = this.current_devices[0].id;
  273. }
  274. this.zone_device_options = [
  275. { values: this.zone_names },
  276. // { values: this.getDeviceNumberNames(this.current_devices) },
  277. { values: this.current_devices }
  278. ];
  279. } else {
  280. Toast.fail(rs.data.msg);
  281. }
  282. })
  283. .catch(err => {
  284. this.loading = false;
  285. Toast.fail(err);
  286. });
  287. },
  288. methods: {
  289. handleSelect(val) {
  290. this.patient_name = val.name;
  291. this.patient_id = val.id;
  292. },
  293. querySearchAsync(keyword, cb) {
  294. let key = "";
  295. if (keyword != undefined) {
  296. key = keyword;
  297. }
  298. let searchArray = [];
  299. PostSearch(key).then(response => {
  300. if (response.data.state == 1) {
  301. searchArray = response.data.data.patient;
  302. cb(searchArray);
  303. } else {
  304. cb([]);
  305. }
  306. });
  307. },
  308. selectPatientAction: function() {
  309. this.$refs.patient_field.blur();
  310. this.show_patient_picker = true;
  311. },
  312. selectModeAction: function() {
  313. this.$refs.mode_field.blur();
  314. this.show_mode_picker = true;
  315. },
  316. selectBedAction: function() {
  317. this.$refs.bed_field.blur();
  318. this.show_bed_picker = true;
  319. },
  320. selectSchTypeAction: function() {
  321. this.$refs.sch_type_field.blur();
  322. this.show_sch_type_picker = true;
  323. },
  324. didChangePatient: function(picker, patient, index) {
  325. this.patient_id = patient.id;
  326. },
  327. didChangeMode: function(picker, mode, index) {
  328. this.mode_id = mode.id;
  329. },
  330. didChangeBed: function(picker, values, col_index) {
  331. if (col_index == 0) {
  332. this.zone_name = values[0];
  333. this.current_devices = this.zone_device_map[this.zone_name];
  334. this.device_id = this.current_devices[0].id;
  335. picker.setColumnValues(1, this.current_devices);
  336. } else if (col_index == 1) {
  337. this.device_id = values[1].id;
  338. }
  339. },
  340. didChangeSchType: function(picker, sch_type, index) {
  341. this.schedule_type = sch_type.value;
  342. this.loading = true;
  343. let params = {
  344. type: this.schedule_type
  345. };
  346. getUrgentScheduleInitData(params)
  347. .then(rs => {
  348. this.loading = false;
  349. // console.log(rs.data.data)
  350. if (rs.data.state == 1) {
  351. this.origin_schedules = rs.data.data.schedules;
  352. this.patients = rs.data.data.patients;
  353. this.modes = rs.data.data.modes;
  354. this.origin_device_numbers = rs.data.data.device_numbers;
  355. for (let i = this.origin_schedules.length - 1; i >= 0; i--) {
  356. for (let y = this.origin_device_numbers.length - 1; y >= 0; y--) {
  357. if (
  358. this.origin_device_numbers[y].id ==
  359. this.origin_schedules[i].bed_id
  360. ) {
  361. this.origin_device_numbers.splice(y, 1);
  362. }
  363. }
  364. }
  365. // if (this.patients.length > 0) {
  366. // this.patient_id = this.patients[0].id
  367. // }
  368. // if (this.modes.length > 0) {
  369. // this.mode_id = this.modes[0].id
  370. // }
  371. var zone_device_map = {};
  372. for (
  373. let index = 0;
  374. index < this.origin_device_numbers.length;
  375. index++
  376. ) {
  377. const device_number = this.origin_device_numbers[index];
  378. if (
  379. zone_device_map[device_number.zone.name] == null ||
  380. zone_device_map[device_number.zone.name] == undefined
  381. ) {
  382. zone_device_map[device_number.zone.name] = [];
  383. }
  384. zone_device_map[device_number.zone.name].push(device_number);
  385. }
  386. this.zone_device_map = zone_device_map;
  387. this.zone_names = Object.keys(this.zone_device_map);
  388. if (this.zone_names.length > 0) {
  389. this.zone_name = this.zone_names[0];
  390. this.current_devices = this.zone_device_map[this.zone_name];
  391. this.device_id = this.current_devices[0].id;
  392. }
  393. this.zone_device_options = [
  394. { values: this.zone_names },
  395. // { values: this.getDeviceNumberNames(this.current_devices) },
  396. { values: this.current_devices }
  397. ];
  398. } else {
  399. Toast.fail(rs.data.msg);
  400. }
  401. })
  402. .catch(err => {
  403. this.loading = false;
  404. Toast.fail(err);
  405. });
  406. },
  407. submitAction: function() {
  408. if (this.patient_id == 0 || this.mode_id == 0 || this.device_id == 0) {
  409. Toast.fail("请选择班次、床位等");
  410. return;
  411. }
  412. var repeated = false;
  413. for (let index = 0; index < this.origin_schedules.length; index++) {
  414. const schedule = this.origin_schedules[index];
  415. if (
  416. schedule.bed_id == this.device_id &&
  417. this.schedule_type == schedule.schedule_type
  418. ) {
  419. repeated = true;
  420. break;
  421. }
  422. }
  423. if (repeated) {
  424. Dialog.confirm({
  425. title: "提醒",
  426. message: "你选择的床位已经被排班,确认要替换吗?"
  427. })
  428. .then(() => {
  429. // on confirm
  430. this.submit();
  431. })
  432. .catch(() => {
  433. // on cancel
  434. });
  435. } else {
  436. this.submit();
  437. }
  438. },
  439. submit: function() {
  440. var params = {
  441. patient_id: this.patient_id,
  442. mode: this.mode_id,
  443. schedule_type: this.schedule_type,
  444. bed: this.device_id
  445. };
  446. this.loading = true;
  447. postUrgentSchedule(params)
  448. .then(rs => {
  449. this.loading = false;
  450. var resp = rs.data;
  451. if (resp.state == 1) {
  452. console.log(resp.data);
  453. var patient = resp.data.patient;
  454. var schedule = resp.data.schedule;
  455. this.$router.push({
  456. path: "/details",
  457. query: {
  458. patient_id: patient.id,
  459. date: schedule.schedule_date,
  460. patient_name: patient.name
  461. }
  462. });
  463. } else {
  464. Toast.fail(resp.msg);
  465. }
  466. })
  467. .catch(err => {
  468. this.loading = false;
  469. Toast.fail("err");
  470. });
  471. }
  472. }
  473. };
  474. </script>
  475. <style style="stylesheet/scss" lang="scss" scoped>
  476. .mainContent {
  477. position: relative;
  478. .navigation {
  479. padding: 0.3rem 0.36rem;
  480. border-bottom: 1px #e5e5e5 solid;
  481. position: fixed;
  482. top: 0;
  483. left: 0;
  484. right: 0;
  485. z-index: 100;
  486. background: #fff;
  487. .goBack {
  488. float: left;
  489. .back {
  490. color: $main-color;
  491. margin-right: 0.87rem;
  492. .iconfont {
  493. color: $main-color;
  494. }
  495. }
  496. }
  497. .nav {
  498. text-align: center;
  499. font-size: 0.45rem;
  500. margin-right: 56px;
  501. }
  502. }
  503. .form {
  504. background: #fff;
  505. min-height: calc(100vh - 2px);
  506. padding-top: 55px;
  507. // padding-left: 20px;
  508. @media only screen and (min-width: 768px) {
  509. padding-top: 100px;
  510. }
  511. .row {
  512. // padding: 5px 0;
  513. width: 80%;
  514. margin: 0 auto;
  515. .title {
  516. color: #8f8f8f;
  517. margin-right: 5px;
  518. text-align: left;
  519. font-size: 0.45rem;
  520. line-height: 45px;
  521. width: 3rem;
  522. float: left;
  523. // @media only screen and (max-width: 812px) {
  524. // font-size: 0.3rem !important;
  525. // }
  526. // @media only screen and (max-width: 376px) {
  527. // width: 50px !important;
  528. // font-size: 0.3rem !important;
  529. // }
  530. }
  531. .el-input__inner {
  532. @media only screen and (max-width: 812px) {
  533. height: 24px !important;
  534. line-height: 24px !important;
  535. }
  536. }
  537. .field_panel {
  538. // display: inline-block;
  539. height: 1.4rem;
  540. .field {
  541. padding: 0 0;
  542. font-size: 0.45rem;
  543. line-height: 45px;
  544. width: 180px;
  545. // @media only screen and (max-width: 812px) {
  546. // width: 100px;
  547. // }
  548. }
  549. }
  550. .danger_hint {
  551. font-size: 0.34rem;
  552. line-height: 40px;
  553. text-align: center;
  554. color: red;
  555. @media only screen and (max-width: 812px) {
  556. margin-left: -10px !important;
  557. }
  558. }
  559. .nowScheduling {
  560. width: 100%;
  561. height: 1.3rem;
  562. line-height: 1.3rem;
  563. border-radius: 30px;
  564. text-align: center;
  565. background: #258ffc;
  566. font-size: 0.45rem;
  567. color: #fff;
  568. margin-top: 0.5rem;
  569. }
  570. }
  571. }
  572. }
  573. .popup {
  574. border-radius: 0 !important;
  575. top: initial !important;
  576. }
  577. .mainBox {
  578. display: flex;
  579. height: 100%;
  580. flex-direction: column;
  581. > :first-child {
  582. overflow: auto;
  583. flex: 1;
  584. }
  585. }
  586. </style>
  587. <style lang="scss">
  588. .Input {
  589. width: 100%;
  590. .el-input__inner {
  591. border-radius: 30px;
  592. font-size: 0.4rem;
  593. @media only screen and (min-width: 768px) {
  594. height: 1.2rem;
  595. line-height: 1.2rem;
  596. border-radius: 50px;
  597. }
  598. }
  599. .el-input__icon {
  600. font-size: 0.45rem;
  601. @media only screen and (min-width: 768px) {
  602. margin-top: 2px;
  603. margin-right: 8px;
  604. }
  605. }
  606. }
  607. </style>