修改
This commit is contained in:
parent
67fe4fc586
commit
3fbc4829a3
@ -13,7 +13,7 @@ export function Detailed(id) {
|
||||
return request({
|
||||
url: `/system/appointmentOrderDetails/getCancelOrderInfo` + `?orderNo=${id}`,
|
||||
method: 'get',
|
||||
|
||||
|
||||
})
|
||||
}
|
||||
|
||||
@ -69,3 +69,12 @@ export function confirmCancel(appointmentOrderId) {
|
||||
method: 'post'
|
||||
})
|
||||
}
|
||||
|
||||
//派单点击护理员获取信息
|
||||
|
||||
export function getPersonInfo(nurseStationPersonId) {
|
||||
return request({
|
||||
url: `/system/appointmentOrder/getPersonInfo?nurseStationPersonId=${nurseStationPersonId}`,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
@ -280,9 +280,12 @@
|
||||
>{{ nursePersonlist.geniusItem }}</div>
|
||||
</el-form-item>
|
||||
<el-form-item label v-else></el-form-item>
|
||||
<el-form-item label="资质证书图片" v-if="nursePersonlist.nurseStationPersonCheckList">
|
||||
<el-form-item label="资质证书图片" v-if="nursePersonlist.nurseStationPersonCertificateList">
|
||||
<div style="width:780px;display: flex;flex-wrap: wrap;">
|
||||
<div v-for="(item,index) in nursePersonlist.nurseStationPersonCheckList" :key="index">
|
||||
<div
|
||||
v-for="(item,index) in nursePersonlist.nurseStationPersonCertificateList"
|
||||
:key="index"
|
||||
>
|
||||
<el-image
|
||||
style="width: 120px; height: 120px;margin-right:10px"
|
||||
:src="baseurl+item.certificateUrl"
|
||||
@ -397,7 +400,8 @@ import {
|
||||
getPerson,
|
||||
dispatchsubmit,
|
||||
xylWeChatRefundNotify,
|
||||
appointmentOrderDetails
|
||||
appointmentOrderDetails,
|
||||
getPersonInfo
|
||||
} from "@/api/system/order";
|
||||
import { getListByUser } from "@/api/system/userlist.js";
|
||||
import baseurl from "@/api/baseurl.js";
|
||||
@ -694,11 +698,13 @@ export default {
|
||||
// 选择姓名按钮
|
||||
nursePersonclick(row) {
|
||||
this.nursePersonid = row.nurseStationPersonId;
|
||||
this.nurseName = row.nursePersonName;
|
||||
this.nursePersonNameinfo = false;
|
||||
this.nursePersonlist = row;
|
||||
row.nurseStationPersonCheckList.forEach(e => {
|
||||
this.PersonChecksrcList.push(this.baseurl + e.certificateUrl);
|
||||
getPersonInfo(row.nurseStationPersonId).then(res => {
|
||||
this.nurseName = res.data.nursePersonName;
|
||||
this.nursePersonNameinfo = false;
|
||||
this.nursePersonlist = res.data;
|
||||
res.data.nurseStationPersonCertificateList.forEach(e => {
|
||||
this.PersonChecksrcList.push(this.baseurl + e.certificateUrl);
|
||||
});
|
||||
});
|
||||
},
|
||||
// 确认取消预约
|
||||
|
||||
Loading…
Reference in New Issue
Block a user