hd 5 hónapja
szülő
commit
99cda57811

+ 2 - 1
app/rehabilitation/html/selectDoctor.html

@ -67,13 +67,14 @@
        methods: {
          getDoctorList(){
            const vm = this
            vm.page ++ 
            const params = {
              town: JSON.parse(localStorage.getItem("docInfo")).hospital,
              patient: this.patient,
              page: this.page,
              size: 15
            }
            vm.page ++ 
            if(vm.page == 1){
              vm.doctorList = []
            }

+ 83 - 8
app/rehabilitation/html/toDoorService.html

@ -116,7 +116,17 @@
        <div class="form-item">
          <div class="form-label required-icon">希望服务时间</div>
          <div class="form-value">
            <el-date-picker v-model="time" type="datetime" size="small" value-format="yyyy-MM-dd HH:mm:ss" placeholder="选择日期时间"></el-date-picker>
            <el-date-picker v-model="time" type="date" style="width: 150px;" size="small" value-format="yyyy-MM-dd" placeholder="选择日期时间"></el-date-picker>
            <el-time-picker
              is-range
              v-model="time1"
              start-placeholder="开始时间"
              end-placeholder="结束时间"
              placeholder="选择时间范围"
              range-separator="-"
              value-format="HH:mm"
              size="small" style="width: 240px;">
            </el-time-picker>
          </div>
        </div>
        <div class="form-item">
@ -151,6 +161,7 @@
            patientInfo: {},
            serveDesc: '',
            time: null,
            time1: null,
            serviceList: [],
            bmap: null,
            serveAddress: null,
@ -159,12 +170,14 @@
            detailId: null,
            docInfo: null,
            serveLat: null,
            serveLon: null
            serveLon: null,
            relationCode: null
          }
        },
        mounted() {
          this.patient = GetRequest().patient
          this.detailId = GetRequest().detailId
          this.relationCode = GetRequest().relationCode
          this.docInfo = JSON.parse(localStorage.getItem('docInfo'))
          this.getPatientInfo()
          this.initMap()
@ -219,7 +232,6 @@
            // vm.bmap.enableScrollWheelZoom()
            vm.bmap.addEventListener('click', function (e) {
              console.log(2)
              // return
              vm.getAddress(e.point)
              vm.bmap.clearOverlays()
@ -294,8 +306,9 @@
            })
          },
          reservationFn() {
            
            const nowDate = new Date().getTime()
            const serviceDate = new Date(this.time).getTime()
            const serviceDate = new Date(this.time + " "+ this.time1[0]).getTime()
            const vm = this
            if (!vm.serveAddress) {
              vm.$message.warning('请输入上门地址')
@ -309,10 +322,15 @@
              vm.$message.warning('请选择服务医生')
              return
            }
            if(!this.time1){
              vm.$message.warning('请输入希望服务时间')
              return
            }
            if (nowDate >= serviceDate) {
              this.$message.warning('服务时间不能早于当前时间')
              return
            }
            
            const params = {
              dataJson: JSON.stringify({
                rehabilitationDetailId: this.detailId,
@ -350,18 +368,18 @@
                  patient: vm.patient,
                  patientName: vm.patientInfo.name,
                  patientPhone: vm.patientInfo.mobile,
                  patientExpectedServeTime: vm.time,
                  patientExpectedServeTime: `${vm.time} ${vm.time1[0]}-${vm.time1[1]}` ,
                  serveDesc: vm.serveDesc,
                  serveTown: vm.patientInfo.townName,
                  serveAddress: vm.serveAddress,
                  serveLat: vm.serveLat,
                  serveLon: vm.serveLon,
                  doctor: vm.docInfo.doctor,
                  doctor: vm.docInfo.code,
                  doctorName: vm.docInfo.name,
                  doctorType: vm.docInfo.jobName,
                  id: null, //重新派单增加orderId
                  relationCode: vm.detailId
                  relationCode: vm.relationCode
                },
                deleteItemArr: [], ////重新派单编辑服务项需传原来服务项id
                packageItemArr: packageItemArr, //提交的服务项
@ -370,7 +388,13 @@
                }
              })
            }
            this.saveRehabilitationOperateRecord(params, param)
            if(this.relationCode){
              this.createSend(param)
            }else{
              this.saveRehabilitationOperateRecord(params, param)
            }
            
          },
          saveRehabilitationOperateRecord(params, param) {
            const vm = this
@ -392,10 +416,61 @@
            httpRequest.post(url, { data: param }).then(function (res) {
              if (res.status == 200) {
                vm.$message.success('预约成功!')
                var index = parent.layer.getFrameIndex(window.name)
                parent.layer.close(index) 
              } else {
                vm.$message.error(res.msg)
              }
            })
          },
          createOperateRecord(vm,cb){
            const vm = this
            var url = "doctor/specialist/rehabilitation/saveRehabilitationOperateRecord",
                obj = {
                    rehabilitationDetailId: vm.detailId,
                    patientCode: vm.patient,
                    patientName: vm.patientInfo.patientName,
                    doctorCode: vm.docInfo.code,
                    doctorName: vm.docInfo.name,
                    relationRecordType: 5, //上传附件
                    relationRecordCode: "",
                    status: 0
                };
                
            var params = {
                dataJson: JSON.stringify(obj)
            };
            plus.nativeUI.showWaiting();
            sendPost(url, params, null, function(res){
                if (res.status == 200) {
                        cb&&cb() 
                }else{
                }
                plus.nativeUI.closeWaiting();
            });
          },
          updateNoteAndImageRehabilitationOperate(text) {
            const vm = this
            var params = {
              planDetailId: detailId,
              node: text,
              image: ''
            }
            if (vm.detailInfo.type == '6') {
              params.relationCode = vm.followId || ''
              params.flag = vm.followFlag || ''
            }
            plus.nativeUI.showWaiting('提交中..')
            var uRl =
              '/doctor/specialist/rehabilitation/updateNoteAndImageRehabilitationOperate'
            sendPost(uRl, params, null, function (res) {
              plus.nativeUI.closeWaiting()
              if (res.status == 200) {
                freeListGet(vm)
              } else {
                mui.toast(res.msg || '服务记录失败')
              }
            })
          }
        }
      })

+ 3 - 1
app/rehabilitation/js/guide_the_message.js

@ -292,6 +292,8 @@ top.rehabilitationGuideVue = new Vue({
			});
		},
		toDoorDialog(){
			// console.log("guide_the_message");
			
			top.layer.open({
				type: 2,
				area: ['850px', '700px'],
@ -302,7 +304,7 @@ top.rehabilitationGuideVue = new Vue({
				closeBtn: 1,
				// shift: 5,
				shadeClose: false, //点击遮罩关闭层
				content: `/app/rehabilitation/html/toDoorService.html?patient=${this.patient}detailId=${this.planId}`
				content: `/app/rehabilitation/html/toDoorService.html?patient=${this.patient}&detailId=${this.planid}&relationCode=${this.planid}`
			})
		},
		viewGuidance: function(o){

+ 3 - 0
component/rehabilitation/server-items-detail.js

@ -1012,6 +1012,9 @@ Vue.component('server-items-detail', {
			imgShow("#outerdiv", "#innerdiv", "#bigimg", url);
		},
		toDoorDialog(){
			// console.log("server");
			
			top.layer.open({
				type: 2,
				area: ['850px', '700px'],