|
@@ -2,6 +2,7 @@
|
2
|
2
|
<template>
|
3
|
3
|
<div class="patient-container">
|
4
|
4
|
<patient-sidebar :id="patientID"></patient-sidebar>
|
|
5
|
+ <!-- <physicalexamination :is-edit='true' :class='panelClass' v-on:tran-patient-info="patientInfo=$event"></physicalexamination> -->
|
5
|
6
|
<patient-detail :is-edit='true' :class='panelClass' v-on:tran-patient-info="patientInfo=$event"></patient-detail>
|
6
|
7
|
</div>
|
7
|
8
|
</template>
|
|
@@ -9,10 +10,10 @@
|
9
|
10
|
<script>
|
10
|
11
|
import PatientDetail from './components/PatientDetail'
|
11
|
12
|
import PatientSidebar from './components/PatientSidebar'
|
12
|
|
-
|
|
13
|
+import Physicalexamination from './components/Physicalexamination'
|
13
|
14
|
export default {
|
14
|
15
|
name: 'editForm',
|
15
|
|
- components: { PatientDetail, PatientSidebar },
|
|
16
|
+ components: { PatientDetail, PatientSidebar,Physicalexamination },
|
16
|
17
|
data() {
|
17
|
18
|
return {
|
18
|
19
|
patientID: 0,
|