|
@ -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 || '服务记录失败')
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
}
|
|
|
})
|