Compare commits
No commits in common. "42d2e7e1e8daf33897d6e719f13d0ff0cca07e38" and "5d6a029d50cfce9753feba15535e0087932b5488" have entirely different histories.
42d2e7e1e8
...
5d6a029d50
@ -256,7 +256,7 @@
|
||||
</a-col>
|
||||
</a-row>
|
||||
<a-divider v-if="modalForm.order_prescription" />
|
||||
<div class="titlebox" v-if="modalForm.user_doctor && from==''">
|
||||
<div class="titlebox" v-if="modalForm.user_doctor && !from">
|
||||
<div class="bar"></div>
|
||||
<div class="name">医生信息</div>
|
||||
<a-space
|
||||
@ -272,10 +272,10 @@
|
||||
>
|
||||
</a-space>
|
||||
</div>
|
||||
<a-row :gutter="24" style="margin-top: 35px" v-if="modalForm.user_doctor && from==''">
|
||||
<a-row :gutter="24" style="margin-top: 35px">
|
||||
<a-col :span="24">
|
||||
<a-form-item field="license_cert" :hide-label="true">
|
||||
<div class="doctorInfo" v-if="modalForm.user_doctor && from==''">
|
||||
<div class="doctorInfo" v-if="modalForm.user_doctor && !from">
|
||||
<a-space size="large">
|
||||
<a-image
|
||||
width="80"
|
||||
@ -313,9 +313,8 @@
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
<a-divider v-if="modalForm.user_doctor && from==''" />
|
||||
|
||||
<div class="titlebox" v-if="modalForm.inquiry_doctor && from=='transfer'">
|
||||
<a-divider v-if="modalForm.user_doctor && !from" />
|
||||
<div class="titlebox" v-if="modalForm.inquiry_doctor && from">
|
||||
<div class="bar"></div>
|
||||
<div class="name">医生信息</div>
|
||||
<a-space
|
||||
@ -326,16 +325,15 @@
|
||||
justify-content: flex-end;
|
||||
"
|
||||
>
|
||||
<a-button type="primary" @click="openDcotorTransfer"
|
||||
<a-button type="primary" @click="openDcotor"
|
||||
>查看医生完整信息</a-button
|
||||
>
|
||||
</a-space>
|
||||
</div>
|
||||
<a-row :gutter="24" style="margin-top: 35px" v-if="modalForm.inquiry_doctor && from=='transfer'">
|
||||
<a-row :gutter="24" style="margin-top: 35px">
|
||||
<a-col :span="24">
|
||||
<a-form-item field="license_cert" :hide-label="true">
|
||||
|
||||
<div class="doctorInfo" v-if="modalForm.inquiry_doctor && from=='transfer'">
|
||||
<div class="doctorInfo" v-if="modalForm.inquiry_doctor && from">
|
||||
<a-space size="large">
|
||||
<a-image
|
||||
width="80"
|
||||
@ -360,7 +358,7 @@
|
||||
formatDoctorTitle(modalForm.inquiry_doctor.doctor_title)
|
||||
}}
|
||||
</div>
|
||||
<div class="hospital" v-if="modalForm.inquiry_doctor.hospital">
|
||||
<div class="hospital">
|
||||
{{
|
||||
modalForm.inquiry_doctor.hospital.hospital_name
|
||||
}} {{
|
||||
@ -373,7 +371,7 @@
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
<a-divider v-if="modalForm.inquiry_doctor && from=='transfer'" />
|
||||
<a-divider v-if="modalForm.inquiry_doctor && from" />
|
||||
<div class="titlebox">
|
||||
<div class="bar"></div>
|
||||
<div class="name">就诊人信息</div>
|
||||
@ -618,12 +616,6 @@ const openDcotor=()=>{
|
||||
doctor_id.value=props.modalForm.user_doctor.doctor_id;
|
||||
doctorVisible.value=true
|
||||
}
|
||||
const openDcotorTransfer=()=>{
|
||||
doctor_id.value=props.modalForm.inquiry_doctor.doctor_id;
|
||||
doctorVisible.value=true
|
||||
}
|
||||
|
||||
|
||||
|
||||
//关闭确认框
|
||||
const closeChange = (data) => {
|
||||
|
||||
@ -589,7 +589,7 @@
|
||||
</a-col>
|
||||
</a-row>
|
||||
<a-divider v-if="modalForm.order_prescription" />
|
||||
<div class="titlebox" v-if="(modalForm.inquiry_doctor && showTransferDoctor) || (!showTransferDoctor && !modalForm.transfer_prescription_doctor)">
|
||||
<div class="titlebox" v-if="modalForm.user_doctor && showTransferDoctor">
|
||||
<div class="bar"></div>
|
||||
<div class="name">医生信息</div>
|
||||
<a-space
|
||||
@ -605,7 +605,7 @@
|
||||
>
|
||||
</a-space>
|
||||
</div>
|
||||
<a-row :gutter="24" style="margin-top: 35px" v-if="(modalForm.inquiry_doctor && showTransferDoctor) || (!showTransferDoctor && !modalForm.transfer_prescription_doctor)">
|
||||
<a-row :gutter="24" style="margin-top: 35px" v-if="modalForm.inquiry_doctor && showTransferDoctor">
|
||||
<a-col :span="24">
|
||||
<a-form-item field="license_cert" :hide-label="true">
|
||||
<div class="doctorInfo" v-if="modalForm.inquiry_doctor">
|
||||
@ -646,7 +646,7 @@
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
<a-divider v-if="(modalForm.inquiry_doctor && showTransferDoctor) || (!showTransferDoctor && !modalForm.transfer_prescription_doctor)" />
|
||||
<a-divider v-if="modalForm.inquiry_doctor && showTransferDoctor" />
|
||||
<div class="titlebox" v-if="modalForm.transfer_prescription_doctor && !showTransferDoctor && modalForm.is_transfer_order==1">
|
||||
<div class="bar"></div>
|
||||
<div class="name">医生信息</div>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user