123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635 |
- <template>
- <div class="mainBox">
- <div class="mainContent">
- <div class="navigation">
- <div class="goBack">
- <span class="back" @click="$router.back(-1)">
- <span class="iconfont"></span>返回
- </span>
- </div>
- <div class="nav">
- <span>临时排班</span>
- </div>
- <div class="goBack"></div>
- </div>
-
- <div class="form" v-loading="loading">
- <van-row class="row">
- <van-col :span="24" class="danger_hint">
- <!--本次临时排班会覆盖已有排班中的同班次、同床位的排班,请仔细检查后再提交-->
- 温馨提示:本次临时排班只能调整到空余的床位
- </van-col>
- </van-row>
- <van-row class="row">
- <van-col :span="24">
- <div class="field_panel">
- <el-autocomplete
- class="Input"
- popper-class="my-autocomplete"
- v-model="value"
- :fetch-suggestions="querySearchAsync"
- :trigger-on-focus="false"
- placeholder="请输入病人名字"
- @select="handleSelect"
- >
- <i class="el-icon-search el-input__icon" slot="suffix"></i>
- <template slot-scope="{ item }">
- <div class="name">{{ item.name }}</div>
- </template>
- </el-autocomplete>
- </div>
- </van-col>
- </van-row>
- <van-row class="row">
- <van-col :span="24">
- <span class="title">日期:</span>
- <div class="field_panel">
- <van-field v-model="date" class="field"></van-field>
- </div>
- </van-col>
- </van-row>
- <van-row class="row">
- <van-col :span="24">
- <span class="title">患者:</span>
- <div class="field_panel">
- <van-field
- ref="patient_field"
- @focus="selectPatientAction"
- :value="patient_name"
- class="field"
- left-icon="arrow-down"
- ></van-field>
- </div>
- </van-col>
- </van-row>
- <van-row class="row">
- <van-col :span="24">
- <span class="title">班次:</span>
- <div class="field_panel">
- <van-field
- ref="sch_type_field"
- @focus="selectSchTypeAction"
- :value="schedule_type_title"
- class="field"
- left-icon="arrow-down"
- ></van-field>
- </div>
- </van-col>
-
- <van-col :span="24">
- <span class="title">治疗模式:</span>
- <div class="field_panel">
- <van-field
- ref="mode_field"
- @focus="selectModeAction"
- :value="mode_name"
- class="field"
- left-icon="arrow-down"
- ></van-field>
- </div>
- </van-col>
- <van-col :span="24">
- <span class="title">床位:</span>
- <div class="field_panel">
- <van-field
- ref="bed_field"
- @focus="selectBedAction"
- :value="bed_name"
- class="field"
- left-icon="arrow-down"
- ></van-field>
- </div>
- </van-col>
- </van-row>
- <van-row class="row">
- <van-col :span="24">
- <!-- <span class="title"> </span>
- <div class="field_panel">
- <van-button type="info" size="normal" @click="submitAction">立即排班</van-button>
- </div>-->
- <div class="nowScheduling" @click="submitAction">立即排班</div>
- </van-col>
- </van-row>
- </div>
- </div>
- <side-bar :active_index="0"></side-bar>
- <van-popup v-model="show_patient_picker" position="bottom" class="popup">
- <van-picker :columns="patients" value-key="name" @change="didChangePatient"></van-picker>
- </van-popup>
- <van-popup v-model="show_mode_picker" position="bottom" class="popup">
- <van-picker :columns="modes" value-key="name" @change="didChangeMode"></van-picker>
- </van-popup>
- <van-popup v-model="show_bed_picker" position="bottom" class="popup">
- <van-picker :columns="zone_device_options" value-key="number" @change="didChangeBed"></van-picker>
- </van-popup>
- <van-popup v-model="show_sch_type_picker" position="bottom" class="popup">
- <van-picker :columns="schedule_types" value-key="text" @change="didChangeSchType"></van-picker>
- </van-popup>
- </div>
- </template>
-
- <script>
- import SideBar from "@/pages/layout/SideBar";
- import { parseTime } from "@/utils";
- import {
- getUrgentScheduleInitData,
- PostSearch,
- postUrgentSchedule
- } from "@/api/dialysis";
- import { Dialog, Toast } from "vant";
-
- export default {
- name: "AddUrgentSchedule",
- components: {
- SideBar
- },
- data() {
- return {
- loading: false,
- value: "",
- date: "2019-09-09",
- patient_id: 0,
- mode_id: 0,
- device_id: 0,
- schedule_type: 1,
- zone_name: "",
-
- show_patient_picker: false,
- show_mode_picker: false,
- show_bed_picker: false,
- show_sch_type_picker: false,
-
- patients: [],
- modes: [],
- schedule_types: [
- { value: 1, text: "上午" },
- { value: 2, text: "下午" },
- { value: 3, text: "晚上" }
- ],
-
- origin_device_numbers: [],
- zone_device_map: {},
- zone_names: [],
- current_devices: [],
- zone_device_options: [],
-
- origin_schedules: []
- };
- },
- computed: {
- patient_name: function() {
- for (let index = 0; index < this.patients.length; index++) {
- const patient = this.patients[index];
- if (patient.id == this.patient_id) {
- return patient.name;
- }
- }
- return "";
- },
- mode_name: function() {
- for (let index = 0; index < this.modes.length; index++) {
- const mode = this.modes[index];
- if (mode.id == this.mode_id) {
- return mode.name;
- }
- }
- return "";
- },
- bed_name: function() {
- if (this.zone_name.length > 0 && this.device_id != 0) {
- for (let index = 0; index < this.current_devices.length; index++) {
- const device_number = this.current_devices[index];
- if (device_number.id == this.device_id) {
- return device_number.zone.name + " - " + device_number.number;
- }
- }
- }
- return "";
- },
- schedule_type_title: function() {
- for (let index = 0; index < this.schedule_types.length; index++) {
- const type = this.schedule_types[index];
- if (type.value == this.schedule_type) {
- return type.text;
- }
- }
- return "";
- }
- },
- mounted() {
- var today = new Date();
- this.date = parseTime(today, "{y}-{m}-{d}");
-
- var hour = today.getHours();
- if (hour > 3 && hour < 11) {
- this.schedule_type = 1;
- } else if (hour >= 11 && hour < 18) {
- this.schedule_type = 2;
- } else {
- this.schedule_type = 3;
- }
-
- this.loading = true;
- let params = {
- type: this.schedule_type
- };
- console.log(params);
- getUrgentScheduleInitData(params)
- .then(rs => {
- this.loading = false;
- // console.log(rs.data.data)
- if (rs.data.state == 1) {
- this.origin_schedules = rs.data.data.schedules;
- this.patients = rs.data.data.patients;
- this.modes = rs.data.data.modes;
- this.origin_device_numbers = rs.data.data.device_numbers;
-
- for (let i = this.origin_schedules.length - 1; i >= 0; i--) {
- for (let y = this.origin_device_numbers.length - 1; y >= 0; y--) {
- if (
- this.origin_device_numbers[y].id ==
- this.origin_schedules[i].bed_id
- ) {
- this.origin_device_numbers.splice(y, 1);
- }
- }
- }
-
- if (this.patients.length > 0) {
- this.patient_id = this.patients[0].id;
- }
- if (this.modes.length > 0) {
- this.mode_id = this.modes[0].id;
- }
-
- var zone_device_map = {};
- for (
- let index = 0;
- index < this.origin_device_numbers.length;
- index++
- ) {
- const device_number = this.origin_device_numbers[index];
- if (
- zone_device_map[device_number.zone.name] == null ||
- zone_device_map[device_number.zone.name] == undefined
- ) {
- zone_device_map[device_number.zone.name] = [];
- }
- zone_device_map[device_number.zone.name].push(device_number);
- }
- this.zone_device_map = zone_device_map;
-
- this.zone_names = Object.keys(this.zone_device_map);
- if (this.zone_names.length > 0) {
- this.zone_name = this.zone_names[0];
- this.current_devices = this.zone_device_map[this.zone_name];
- this.device_id = this.current_devices[0].id;
- }
- this.zone_device_options = [
- { values: this.zone_names },
- // { values: this.getDeviceNumberNames(this.current_devices) },
- { values: this.current_devices }
- ];
- } else {
- Toast.fail(rs.data.msg);
- }
- })
- .catch(err => {
- this.loading = false;
- Toast.fail(err);
- });
- },
- methods: {
- handleSelect(val) {
- this.patient_name = val.name;
- this.patient_id = val.id;
- },
- querySearchAsync(keyword, cb) {
- let key = "";
- if (keyword != undefined) {
- key = keyword;
- }
- let searchArray = [];
- PostSearch(key).then(response => {
- if (response.data.state == 1) {
- searchArray = response.data.data.patient;
- cb(searchArray);
- } else {
- cb([]);
- }
- });
- },
-
- selectPatientAction: function() {
- this.$refs.patient_field.blur();
- this.show_patient_picker = true;
- },
- selectModeAction: function() {
- this.$refs.mode_field.blur();
- this.show_mode_picker = true;
- },
- selectBedAction: function() {
- this.$refs.bed_field.blur();
- this.show_bed_picker = true;
- },
- selectSchTypeAction: function() {
- this.$refs.sch_type_field.blur();
- this.show_sch_type_picker = true;
- },
-
- didChangePatient: function(picker, patient, index) {
- this.patient_id = patient.id;
- },
- didChangeMode: function(picker, mode, index) {
- this.mode_id = mode.id;
- },
- didChangeBed: function(picker, values, col_index) {
- if (col_index == 0) {
- this.zone_name = values[0];
- this.current_devices = this.zone_device_map[this.zone_name];
- this.device_id = this.current_devices[0].id;
-
- picker.setColumnValues(1, this.current_devices);
- } else if (col_index == 1) {
- this.device_id = values[1].id;
- }
- },
- didChangeSchType: function(picker, sch_type, index) {
- this.schedule_type = sch_type.value;
-
- this.loading = true;
- let params = {
- type: this.schedule_type
- };
- getUrgentScheduleInitData(params)
- .then(rs => {
- this.loading = false;
- // console.log(rs.data.data)
- if (rs.data.state == 1) {
- this.origin_schedules = rs.data.data.schedules;
- this.patients = rs.data.data.patients;
- this.modes = rs.data.data.modes;
- this.origin_device_numbers = rs.data.data.device_numbers;
-
- for (let i = this.origin_schedules.length - 1; i >= 0; i--) {
- for (let y = this.origin_device_numbers.length - 1; y >= 0; y--) {
- if (
- this.origin_device_numbers[y].id ==
- this.origin_schedules[i].bed_id
- ) {
- this.origin_device_numbers.splice(y, 1);
- }
- }
- }
-
- // if (this.patients.length > 0) {
- // this.patient_id = this.patients[0].id
- // }
- // if (this.modes.length > 0) {
- // this.mode_id = this.modes[0].id
- // }
-
- var zone_device_map = {};
- for (
- let index = 0;
- index < this.origin_device_numbers.length;
- index++
- ) {
- const device_number = this.origin_device_numbers[index];
- if (
- zone_device_map[device_number.zone.name] == null ||
- zone_device_map[device_number.zone.name] == undefined
- ) {
- zone_device_map[device_number.zone.name] = [];
- }
- zone_device_map[device_number.zone.name].push(device_number);
- }
- this.zone_device_map = zone_device_map;
-
- this.zone_names = Object.keys(this.zone_device_map);
- if (this.zone_names.length > 0) {
- this.zone_name = this.zone_names[0];
- this.current_devices = this.zone_device_map[this.zone_name];
- this.device_id = this.current_devices[0].id;
- }
- this.zone_device_options = [
- { values: this.zone_names },
- // { values: this.getDeviceNumberNames(this.current_devices) },
- { values: this.current_devices }
- ];
- } else {
- Toast.fail(rs.data.msg);
- }
- })
- .catch(err => {
- this.loading = false;
- Toast.fail(err);
- });
- },
-
- submitAction: function() {
- if (this.patient_id == 0 || this.mode_id == 0 || this.device_id == 0) {
- Toast.fail("请选择班次、床位等");
- return;
- }
-
- var repeated = false;
- for (let index = 0; index < this.origin_schedules.length; index++) {
- const schedule = this.origin_schedules[index];
- if (
- schedule.bed_id == this.device_id &&
- this.schedule_type == schedule.schedule_type
- ) {
- repeated = true;
- break;
- }
- }
- if (repeated) {
- Dialog.confirm({
- title: "提醒",
- message: "你选择的床位已经被排班,确认要替换吗?"
- })
- .then(() => {
- // on confirm
- this.submit();
- })
- .catch(() => {
- // on cancel
- });
- } else {
- this.submit();
- }
- },
- submit: function() {
- var params = {
- patient_id: this.patient_id,
- mode: this.mode_id,
- schedule_type: this.schedule_type,
- bed: this.device_id
- };
- this.loading = true;
- postUrgentSchedule(params)
- .then(rs => {
- this.loading = false;
- var resp = rs.data;
- if (resp.state == 1) {
- console.log(resp.data);
- var patient = resp.data.patient;
- var schedule = resp.data.schedule;
- this.$router.push({
- path: "/details",
- query: {
- patient_id: patient.id,
- date: schedule.schedule_date,
- patient_name: patient.name
- }
- });
- } else {
- Toast.fail(resp.msg);
- }
- })
- .catch(err => {
- this.loading = false;
- Toast.fail("err");
- });
- }
- }
- };
- </script>
-
- <style style="stylesheet/scss" lang="scss" scoped>
- .mainContent {
- position: relative;
- .navigation {
- padding: 0.3rem 0.36rem;
- border-bottom: 1px #e5e5e5 solid;
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- z-index: 100;
- background: #fff;
- .goBack {
- float: left;
- .back {
- color: $main-color;
- margin-right: 0.87rem;
- .iconfont {
- color: $main-color;
- }
- }
- }
- .nav {
- text-align: center;
- font-size: 0.45rem;
- margin-right: 56px;
- }
- }
-
- .form {
- background: #fff;
- min-height: calc(100vh - 2px);
- padding-top: 55px;
- // padding-left: 20px;
- @media only screen and (min-width: 768px) {
- padding-top: 100px;
- }
- .row {
- // padding: 5px 0;
- width: 80%;
- margin: 0 auto;
- .title {
- color: #8f8f8f;
- margin-right: 5px;
- text-align: left;
- font-size: 0.45rem;
- line-height: 45px;
- width: 3rem;
- float: left;
- // @media only screen and (max-width: 812px) {
- // font-size: 0.3rem !important;
- // }
- // @media only screen and (max-width: 376px) {
- // width: 50px !important;
- // font-size: 0.3rem !important;
- // }
- }
- .el-input__inner {
- @media only screen and (max-width: 812px) {
- height: 24px !important;
- line-height: 24px !important;
- }
- }
- .field_panel {
- // display: inline-block;
- height: 1.4rem;
- .field {
- padding: 0 0;
- font-size: 0.45rem;
- line-height: 45px;
- width: 180px;
- // @media only screen and (max-width: 812px) {
- // width: 100px;
- // }
- }
- }
-
- .danger_hint {
- font-size: 0.34rem;
- line-height: 40px;
- text-align: center;
- color: red;
- @media only screen and (max-width: 812px) {
- margin-left: -10px !important;
- }
- }
- .nowScheduling {
- width: 100%;
- height: 1.3rem;
- line-height: 1.3rem;
- border-radius: 30px;
- text-align: center;
- background: #258ffc;
- font-size: 0.45rem;
- color: #fff;
- margin-top: 0.5rem;
- }
- }
- }
- }
- .popup {
- border-radius: 0 !important;
- top: initial !important;
- }
- .mainBox {
- display: flex;
- height: 100%;
- flex-direction: column;
- > :first-child {
- overflow: auto;
- flex: 1;
- }
- }
- </style>
- <style lang="scss">
- .Input {
- width: 100%;
- .el-input__inner {
- border-radius: 30px;
- font-size: 0.4rem;
- @media only screen and (min-width: 768px) {
- height: 1.2rem;
- line-height: 1.2rem;
- border-radius: 50px;
- }
- }
- .el-input__icon {
- font-size: 0.45rem;
- @media only screen and (min-width: 768px) {
- margin-top: 2px;
- margin-right: 8px;
- }
- }
- }
- </style>
|