123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396 |
- <template>
- <div>
- <el-dialog title="透析上机" class="newDialog" :visible.sync="visible" width="854px" :modal-append-to-body="false">
- <div class="warnTxt" v-if="showTxt != ''">{{ showTxt }}</div>
- <el-form :model="form" label-width="100px">
-
- <el-form-item label="班次">
- <el-select v-model="schedual_type" placeholder="请选择班次" @change="changeSchedualType">
- <el-option v-for="(item, index) in schedules_type" :key="index" :value="item.id"
- :label="item.name"></el-option>
- </el-select>
- </el-form-item>
-
- <el-form-item label="上机床位">
- <el-select v-model="form.bed_id" placeholder="请选择上机床位">
- <el-option v-for="(bed, index) in zone_beds" :key="index" :value="bed.id" :label="bed.number"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="上机护士">
- <el-select v-model="form.nurse_id" placeholder="请选择上机护士">
- <el-option v-for="(admin, index) in admins" :key="index" :value="admin.id" :label="admin.name"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="穿刺护士">
- <el-select v-model="form.puncture_nurse_id" placeholder="请选择穿刺护士">
- <el-option v-for="(admin, index) in admins" :key="index" :value="admin.id" :label="admin.name"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="引血(ml/min)" v-if="template_id == 6">
- <el-input type="number" v-model="form.blood_drawing" style="width:200px;"></el-input>
- </el-form-item>
-
- <el-form-item label="上机时间 :" style="width:300px">
- <el-date-picker
- type="datetime"
- format="yyyy-MM-dd HH:mm"
- value-format="yyyy-MM-dd HH:mm"
- placeholder="选择时间"
- v-model="form.start_time"
- style="width:100%;"
- ></el-date-picker>
- </el-form-item>
- <el-form-item>
- <el-button v-if="dialysis_order.id == 0" @click="submit" type="primary" :loading="loading">执行上机</el-button>
- <el-button v-else type="info" :disabled="true">已上机</el-button>
- <el-button
- v-if="dialysis_order.id > 0"
- type="primary" @click="editOrder">修改上机
- </el-button>
-
- </el-form-item>
- </el-form>
- </el-dialog>
- </div>
-
- </template>
-
- <script>
- import { GetSchedualNumber, PostModifyStartDialysis, startDialysis } from '@/api/dialysis_record'
- import { parseTime } from '@/utils'
-
- import request from '@/utils/request'
-
- export default {
- name: 'ComputerDialog',
- data() {
- return {
- showTxt:'',
- hasPermission:true,
- zone_beds: [],
- visible: false,
- loading: false,
- template_id: 0,
- patient_id: 0,
- schedule_date: 0,
- start_time: 0,
- creator: 0,
- form: {
- bed_id: '',
- nurse_id: '',
- start_time: '',
- puncture_nurse_id: '',
- blood_drawing: 100
- },
- schedual_type: 0,
- schedules_type: [
- { id: 1, name: '上午' },
- { id: 2, name: '下午' },
- { id: 3, name: '晚上' }
- ], // 该排班的区里的床位
- isPremission: false
- }
- },
- props: {
- dialysis_order: {
- type: Object
- },
- schedule: {
- type: Object
- },
- admins: {
- type: Array
- },
- device_numbers: {
- type: Array
- },
- special_premission: {
- type: Array
- }
- }, mounted() {
-
- },
- created() {
-
- this.template_id = this.$store.getters.xt_user.template_info.template_id
- this.patient_id = this.$route.query.patient_id
- this.schedule_date = this.$route.query.date
- this.form.nurse_id = this.dialysis_order.id == 0 ? this.$store.getters.xt_user.user.id : this.dialysis_order.start_nurse
- this.form.puncture_nurse_id = this.dialysis_order.id == 0 ? this.$store.getters.xt_user.user.id : this.dialysis_order.puncture_nurse
- if (this.form.puncture_nurse_id == 0) {
- this.form.puncture_nurse_id = this.$store.getters.xt_user.user.id
- }
-
- },
- watch: {
- 'schedule.id': function() {
- },
- 'dialysis_order.id': function() {
-
- this.form.nurse_id = this.dialysis_order.id == 0 ? this.$store.getters.xt_user.user.id : this.dialysis_order.start_nurse
- this.form.puncture_nurse_id = this.dialysis_order.id == 0 ? this.$store.getters.xt_user.user.id : this.dialysis_order.puncture_nurse
-
- var nowDate = new Date()
- var nowYear = nowDate.getFullYear()
- var nowMonth = nowDate.getMonth() + 1
- var nowDay = nowDate.getDate()
- var nowHours = nowDate.getHours()
- var nowMinutes = nowDate.getMinutes()
- var nowSeconds = nowDate.getSeconds()
- var time =
- nowYear +
- '-' +
- (nowMonth < 10 ? '0' + nowMonth : nowMonth) +
- '-' +
- (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + (nowHours < 10 ? '0' + nowHours : nowHours) + ':' + (nowMinutes < 10 ? '0' + nowMinutes : nowMinutes)
- this.form.start_time = this.dialysis_order.id == 0 ? time : this.getTime(this.dialysis_order.start_time, '{y}-{m}-{d} {h}:{i}')
-
- }
- },
- computed: {},
- methods: {
- changeSchedualType: function(schedual_type) {
- let ParamsQuery = {}
- ParamsQuery['schedual_type'] = schedual_type
- GetSchedualNumber(ParamsQuery).then(response => {
- if (response.data.state == 0) {
- return false
- } else {
- this.temp_device_numbers = response.data.data.number
- for (let index = 0; index < this.temp_device_numbers.length; index++) {
- const device_number = this.temp_device_numbers[index]
- this.temp_device_numbers[index]['number'] = device_number['zone_name'] + '-' + device_number['number']
- }
- this.zone_beds = this.temp_device_numbers
- this.form.bed_id = this.zone_beds[0].id
-
- }
- })
-
- },
- GetSchedualNumber: function() {
- let ParamsQuery = {}
- ParamsQuery['schedual_type'] = this.schedual_type
- GetSchedualNumber(ParamsQuery).then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg)
- return false
- } else {
- this.temp_device_numbers = response.data.data.number
- for (let index = 0; index < this.temp_device_numbers.length; index++) {
- const device_number = this.temp_device_numbers[index]
- this.temp_device_numbers[index]['number'] = device_number['zone_name'] + '-' + device_number['number']
- }
- this.zone_beds = this.temp_device_numbers
-
- this.form.bed_id = this.dialysis_order.id == 0 ? this.schedule.bed_id : this.dialysis_order.bed_id
- if (this.dialysis_order.id == 0) {
- let isFilter = true
- for (let i = 0; i < this.zone_beds.length; i++) {
- if (this.zone_beds[i].id == this.schedule.bed_id) {
- isFilter = false
-
- }
- }
- if (isFilter) {
- this.form.bed_id = this.zone_beds[0].id
- }
- } else {
- for (let i = 0; i < this.device_numbers.length; i++) {
- if (this.device_numbers[i].id == this.dialysis_order.bed_id) {
- let obj = {}
- obj = this.device_numbers[i]
- if (obj['number'].indexOf(this.device_numbers[i]['zone_name']) == -1) {
- obj['number'] = this.device_numbers[i]['zone_name'] + '-' + this.device_numbers[i]['number']
- }
- this.zone_beds.unshift(obj)
- this.zone_beds.sort((a, b) => a.id - b.id)
- }
- }
- }
- }
- })
- },
- getTime(value, temp) {
- if (value != undefined) {
- return parseTime(value, temp)
- }
- return ''
- },
- show: function(dialysis) {
- this.record = dialysis
- console.log("上机",dialysis)
- this.getPermission()
- this.visible = true
-
- var nowDate = new Date()
- var nowYear = nowDate.getFullYear()
- var nowMonth = nowDate.getMonth() + 1
- var nowDay = nowDate.getDate()
- var nowHours = nowDate.getHours()
- var nowMinutes = nowDate.getMinutes()
- var nowSeconds = nowDate.getSeconds()
-
- if (this.dialysis_order.id != 0) {
- this.form.start_time = this.getTime(this.dialysis_order.start_time, '{y}-{m}-{d} {h}:{i}')
- } else {
- this.form.start_time =
- nowYear +
- '-' +
- (nowMonth < 10 ? '0' + nowMonth : nowMonth) +
- '-' +
- (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + (nowHours < 10 ? '0' + nowHours : nowHours) + ':' + (nowMinutes < 10 ? '0' + nowMinutes : nowMinutes)
- }
-
- if (this.dialysis_order.id == 0) {
- let now = new Date()
- let hour = now.getHours()
- if (hour >= 6 && hour < 12) {
- this.schedual_type = 1
-
- } else if (hour >= 12 && hour < 18) {
-
- this.schedual_type = 2
-
- } else if (hour >= 18) {
- this.schedual_type = 3
- }
- } else {
-
- this.schedual_type = this.dialysis_order.schedual_type
- }
-
-
- if (this.dialysis_order.id > 0) {
- if (this.dialysis_order.creator == 0) {
- this.creator = this.dialysis_order.start_nurse
- } else {
- this.creator = this.dialysis_order.creator
- }
- }
-
- this.GetSchedualNumber()
- },
- hide: function() {
- this.visible = false
- },
- submit: function() {
- if (this.form.start_time == '' || this.form.start_time == null) {
- this.$message.error('开始时间不能为空')
- return
- }
- console.log(this.dialysis_order)
- this.loading = true
- let mode = '1'
-
- startDialysis(this.patient_id, parseTime(this.schedule_date, '{y}-{m}-{d}'), this.form.nurse_id, this.form.bed_id, this.form.lood_drawing, this.form.puncture_nurse_id, this.form.start_time, this.schedual_type, mode).then(rs => {
- this.loading = false
- var resp = rs.data
- if (resp.state == 1) {
- var resp_dialysis_order = resp.data.dialysis_order
- var this_order = this.dialysis_order
- for (const key in resp_dialysis_order) {
- this.$set(this_order, key, resp_dialysis_order[key])
- }
- this.hide()
- this.$emit('monitor', resp.data.monitor)
- this.$message.success('上机成功')
- } else {
- this.$message.error(resp.msg)
- }
- })
- }, editOrder() {
- let ParamsQuery = {}
- ParamsQuery['schedual_type'] = this.schedual_type
- ParamsQuery['id'] = this.dialysis_order.id
- ParamsQuery['nurse'] = this.form.nurse_id
- ParamsQuery['bed'] = this.form.bed_id
- ParamsQuery['start_time'] = this.form.start_time
- ParamsQuery['puncture_nurse'] = this.form.puncture_nurse_id
-
- ParamsQuery['mode'] = "2"
- if (this.dialysis_order.creator != this.$store.getters.xt_user.user.id) {
- ParamsQuery['mode'] = "3"
- }
- PostModifyStartDialysis(ParamsQuery).then(rs => {
- var resp = rs.data
- if (resp.state == 1) {
- this.$message.success('修改成功')
-
- var resp_dialysis_order = resp.data.dialysis_order
- var this_order = this.dialysis_order
- for (const key in resp_dialysis_order) {
- this.$set(this_order, key, resp_dialysis_order[key])
- this.$emit('assessmentAfterDislysis', resp.data.after)
-
- }
-
- } else {
- this.$message.error(resp.msg)
- }
- })
- },
- getPermission(){
- request.get("/api/func_per/get",{
- params:{
- create_url:"/api/dialysis/start_record?mode=1",
- modify_url:"/api/start_dialysis/modify?mode=2",
- modify_other_url:"/api/start_dialysis/modify?mode=3",
- module:0
- }
- }).then(res => {
- console.log(res)
- console.log("上机",this.record)
- if(res.data.state == 0){
- this.hasPermission = false
- }else if(res.data.state == 1){
- if(this.record.id != "" && this.record.creater != 0){//有数据
- if(this.record.creater == this.$store.getters.xt_user.user.id){//创建人是自己
- if(res.data.data.is_has_modify == false){
- this.hasPermission = false
- this.showTxt = "你没有修改执行上机权限"
- }
- }else{//创建人不是自己
- if(res.data.data.is_has_modify_other == false){
- this.hasPermission = false
- this.showTxt = "你没有修改他人执行上机权限"
- }
- }
- }else if(this.record.id == "" || this.record.creater == 0){
- if(res.data.data.is_has_create == false){
- this.hasPermission = false
- this.showTxt = "你没有执行上机权限"
- }
- }
- }
- })
- }
-
- }
- }
- </script>
-
- <style scoped>
- .txsj {
- text-align: center;
- margin-bottom: 20px;
- }
- .warnTxt{
- text-align: center;
- margin: 0 auto;
- background: #faa331;
- max-width: 240px;
- padding: 10px 20px;
- border-radius: 4px;
- margin-bottom: 10px;
- color:#fff;
- }
- </style>
- <style lang="scss">
- .newDialog{
- .el-dialog__body{
- padding: 10px 20px 30px;
- }
- }
- </style>
|