123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510 |
- <template>
- <div>
- <div class="Dialog" v-show="!selecting">
- <div class="DialogTit">
- <span @click="close()" class="iconfont"></span>
- <h1 class="name">透析上机</h1>
- <span
- class="success"
- v-if="
- this.record.id == 0 ||
- this.$store.getters.user.user.id != this.creator
- "
- ></span>
- <span
- class="success"
- @click="modify()"
- v-if="
- isPremission || this.$store.getters.user.user.id == this.creator
- "
- >修改</span
- >
- </div>
-
- <div class="DialogContent">
- <div class="item" @click="select_bed">
- <h2 class="name">上机床位</h2>
- <div class="content">
- <span class="text" style="width: 100px">{{
- device_number_map[bed_id].number
- }}</span>
- <span class="iconfont"></span>
- </div>
- </div>
- <div class="item" @click="select_nurse">
- <h2 class="name">上机护士</h2>
- <div class="content">
- <span class="text" style="width: 100px">{{
- admin_map[nurse_id].name
- }}</span>
- <span class="iconfont"></span>
- </div>
- </div>
-
- <div class="item" @click="select_puncture_nurse">
- <h2 class="name">穿刺者</h2>
- <div class="content">
- <span
- class="text"
- style="width: 100px"
- v-if="admin_map[puncture_nurse_id]"
- >{{ admin_map[puncture_nurse_id].name }}</span
- >
- <span class="iconfont"></span>
- </div>
- </div>
-
- <div class="item" v-if="template_id == 6">
- <label class="name" for="xll">引血(ml/min)</label>
- <div class="content">
- <input
- type="tel"
- @focus="inputFocus"
- id="xll"
- v-model="blood_drawing"
- />
- </div>
- </div>
-
- <div class="item">
- <h2 class="name">上机时间</h2>
- <div class="content">
- <span
- class="text"
- style="width: 100px"
- @click="selectStartTimeAction"
- >{{ start_time_str }}</span
- >
- <span class="iconfont"></span>
- </div>
- </div>
- <div class="perform">
- <button @click="commitInfo" v-if="record == null || record.id == ''">
- 执行上机
- </button>
- <button :disabled="true" style="background-color:lightgray;" v-else>
- 已上机
- </button>
- </div>
- </div>
- </div>
-
- <two-menu ref="selector"></two-menu>
- <mt-datetime-picker
- ref="start_time_picker"
- type="datetime"
- @confirm="didSelectStartTime"
- v-model="start_time"
- ></mt-datetime-picker>
- </div>
- </template>
-
- <script>
- import { startDialysis, PostModifyStartDialysis } from "@/api/dialysis";
- import { Toast } from "vant";
- import { parseTime } from "@/utils";
-
- import TwoMenu from "./TwoMenu";
-
- export default {
- name: "ComputerDialog",
- components: {
- TwoMenu
- },
- data() {
- return {
- start_time: new Date(),
- selecting: false,
- start_time_str: "",
- bed_id: 0,
- nurse_id: 0,
- puncture_nurse_id: 0,
- isPremission: false,
- zone_beds: [], // 该排班的区里的床位
- creator: 0,
- template_id: 0,
- blood_drawing: 100
- };
- },
- props: {
- schedule: {
- type: Object
- },
- patient_prop: {
- type: Object
- },
- record: {
- type: Object
- },
- admins: {
- type: Array
- },
- device_numbers: {
- type: Array
- },
- admin_map: {
- type: Object
- },
- device_number_map: {
- type: Object
- },
- special_premission: {
- type: Array
- }
- },
- mounted() {
- if (this.record.id == 0) {
- this.start_time_str =
- parseTime(this.start_time, "{y}-{m}-{d} {h}:{i}") + ":00";
- } else {
- if (this.record.start_time == 0) {
- this.start_time_str =
- parseTime(this.start_time, "{y}-{m}-{d} {h}:{i}") + ":00";
- } else {
- this.start_time_str =
- parseTime(this.record.start_time, "{y}-{m}-{d} {h}:{i}") + ":00";
- }
- }
- },
- created() {
- this.template_id = this.$store.getters.user.template_info.template_id;
- var date = this.$route.query && this.$route.query.date;
- date *= 1000;
- var newDate = new Date(date);
- var y = newDate.getFullYear();
- var m = newDate.getMonth() + 1;
- var d = newDate.getDate();
- if (isNaN(y) || isNaN(m) || isNaN(d)) {
- newDate = new Date();
- y = newDate.getFullYear();
- m = newDate.getMonth() + 1;
- d = newDate.getDate();
- }
- this.record_date =
- y + "-" + (m < 10 ? "0" + m : m) + "-" + (d < 10 ? "0" + d : d);
-
- this.bed_id =
- this.record == null || this.record.id == ""
- ? this.schedule.bed_id
- : this.record.bed_id;
- this.nurse_id =
- this.record == null || this.record.id == ""
- ? this.$store.getters.user.user.id
- : this.record.start_nurse;
- this.puncture_nurse_id =
- this.record == null || this.record.id == ""
- ? this.$store.getters.user.user.id
- : this.record.puncture_nurse;
-
- if (this.puncture_nurse_id == 0) {
- this.puncture_nurse_id = this.$store.getters.user.user.id;
- }
-
- // var beds = []
- // for (let index = 0; index < this.device_numbers.length; index++) {
- // const device_number = this.device_numbers[index]
- // if (device_number.zone_id == this.schedule.partition_id) {
- // beds.push(device_number)
- // }
- // }
- // this.zone_beds = beds
-
- for (let index = 0; index < this.device_numbers.length; index++) {
- const device_number = this.device_numbers[index];
- this.device_numbers[index]["number"] =
- device_number["zone_name"] + "-" + device_number["number"];
- }
- this.zone_beds = this.device_numbers;
-
- if (this.record.id > 0) {
- for (let i = 0; i < this.special_premission.length; i++) {
- if (
- this.$store.getters.user.user.id ==
- this.special_premission[i].admin_user_id
- ) {
- this.isPremission = true;
- }
- }
- }
-
- if (this.record.id > 0) {
- if (this.record.creator == 0) {
- this.creator = this.record.start_nurse;
- } else {
- this.creator = this.record.creator;
- }
- }
- },
- methods: {
- inputFocus: function(event) {
- var input = event.target;
- setTimeout(function() {
- input.scrollIntoView();
- }, 0);
-
- if (input.setSelectionRange) {
- setTimeout(function() {
- input.setSelectionRange(0, input.value.length);
- }, 0);
- } else if (input.createTextRange) {
- var rng = input.createTextRange();
- rng.move("character", input.value.length);
- rng.select();
- }
- },
- modify() {
- let ParamsQuery = {};
- ParamsQuery["id"] = this.record.id;
- ParamsQuery["nurse"] = this.nurse_id;
- ParamsQuery["bed"] = this.bed_id;
- ParamsQuery["start_time"] = this.start_time_str;
- ParamsQuery["puncture_nurse"] = this.puncture_nurse_id;
- PostModifyStartDialysis(ParamsQuery).then(response => {
- if (response.data.state == 0) {
- Toast.fail(response.data.msg);
- return false;
- } else {
- Toast.success("修改成功");
- this.$emit('did_add_monitor', monitor)
- this.$emit("did_start", response.data.data.dialysis_order);
- var record = this.record;
- for (const key in response.data.data.dialysis_order) {
- this.$set(record, key, response.data.data.dialysis_order[key]);
- }
- }
- });
- },
- didSelectStartTime: function(time) {
- this.start_time_str = parseTime(time, "{y}-{m}-{d} {h}:{i}") + ":00";
- },
- selectStartTimeAction: function() {
- if (this.record.id != 0) {
- var creator = 0;
- if (this.record.creator == 0) {
- creator = this.record.start_nurse;
- } else {
- creator = this.record.creator;
- }
-
- if (this.$store.getters.user.user.id == creator || this.isPremission) {
- this.$refs.start_time_picker.open();
- } else {
- return;
- }
- }
- this.$refs.start_time_picker.open();
- },
- commitInfo: function() {
- Toast.loading({ forbidClick: true, duration: 0 });
- let ParamsQuery = {};
- ParamsQuery["patient_id"] = this.patient_prop.id;
- ParamsQuery["record_date"] = this.record_date;
- ParamsQuery["nurse"] = this.nurse_id;
- ParamsQuery["bed"] = this.bed_id;
- ParamsQuery["start_time"] = this.start_time_str;
- ParamsQuery["puncture_nurse"] = this.puncture_nurse_id;
- ParamsQuery["blood_drawing"] = this.blood_drawing;
-
- startDialysis(ParamsQuery).then(response => {
- if (response.data.state == 0) {
- Toast.fail(response.data.msg);
- return false;
- } else {
- Toast.success("上机成功");
- var monitor = response.data.data.monitor;
- // this.$emit('did_add_monitor', monitor)
- this.$emit("did_start", response.data.data.dialysis_order);
- var record = this.record;
- for (const key in response.data.data.dialysis_order) {
- this.$set(record, key, response.data.data.dialysis_order[key]);
- // this.record[key] = response.data.data.dialysis_order[key]
- }
- }
- });
- },
- close: function() {
- this.$emit("close");
- },
- select_bed: function() {
- if (this.record.id != 0) {
- var creator = 0;
- if (this.record.creator == 0) {
- creator = this.record.start_nurse;
- } else {
- creator = this.record.creator;
- }
-
- if (this.$store.getters.user.user.id == creator || this.isPremission) {
- this.selecting = true;
- var t = this;
- this.$refs.selector.showSingleSelect(
- this.zone_beds,
- this.bed_id,
- "选择床位号",
- "number",
- "id",
- function(select_id) {
- t.bed_id = select_id;
- },
- function() {
- t.selecting = false;
- }
- );
- } else {
- return;
- }
- }
-
- this.selecting = true;
- var t = this;
- this.$refs.selector.showSingleSelect(
- this.zone_beds,
- this.bed_id,
- "选择床位号",
- "number",
- "id",
- function(select_id) {
- t.bed_id = select_id;
- },
- function() {
- t.selecting = false;
- }
- );
- },
- select_nurse: function() {
- if (this.record.id != 0) {
- var creator = 0;
- if (this.record.creator == 0) {
- creator = this.record.start_nurse;
- } else {
- creator = this.record.creator;
- }
- if (this.$store.getters.user.user.id == creator || this.isPremission) {
- this.selecting = true;
- var t = this;
- this.$refs.selector.showSingleSelect(
- this.admins,
- this.nurse_id,
- "选择上机护士",
- "name",
- "id",
- function(select_id) {
- t.nurse_id = select_id;
- },
- function() {
- t.selecting = false;
- }
- );
- } else {
- return;
- }
- }
- this.selecting = true;
- var t = this;
- this.$refs.selector.showSingleSelect(
- this.admins,
- this.nurse_id,
- "选择上机护士",
- "name",
- "id",
- function(select_id) {
- t.nurse_id = select_id;
- },
- function() {
- t.selecting = false;
- }
- );
- },
- select_puncture_nurse: function() {
- if (this.record.id != 0) {
- var creator = 0;
- if (this.record.creator == 0) {
- creator = this.record.start_nurse;
- } else {
- creator = this.record.creator;
- }
- if (this.$store.getters.user.user.id == creator || this.isPremission) {
- this.selecting = true;
- var t = this;
- this.$refs.selector.showSingleSelect(
- this.admins,
- this.puncture_nurse_id,
- "选择穿刺护士",
- "name",
- "id",
- function(select_id) {
- t.puncture_nurse_id = select_id;
- },
- function() {
- t.selecting = false;
- }
- );
- } else {
- return;
- }
- }
- this.selecting = true;
- var t = this;
- this.$refs.selector.showSingleSelect(
- this.admins,
- this.puncture_nurse_id,
- "选择穿刺护士",
- "name",
- "id",
- function(select_id) {
- t.puncture_nurse_id = select_id;
- },
- function() {
- t.selecting = false;
- }
- );
- },
- open: function() {
- this.selecting = false;
- this.$refs.selector.hide();
- }
- },
- watch: {
- "record.id": function(val) {
- if (val > 0) {
- for (let i = 0; i < this.special_premission.length; i++) {
- if (
- this.$store.getters.user.user.id ==
- this.special_premission[i].admin_user_id
- ) {
- this.isPremission = true;
- }
- }
- if (this.record.creator == 0) {
- this.creator = this.record.start_nurse;
- } else {
- this.creator = this.record.creator;
- }
- }
- }
- }
- };
- </script>
-
- <style style="stylesheet/scss" lang="scss" scoped>
- .perform {
- text-align: center;
- font-size: 0.3rem;
- padding-top: 2rem;
- .crew {
- color: $pgh-color;
- }
- button {
- background: $main-color;
- color: #fff;
- font-size: 0.45rem;
- text-align: center;
- width: 3rem;
- height: 1.2rem;
- line-height: 1.2rem;
- border-radius: 4px;
- margin-top: 10px;
- }
- }
- </style>
|