Browse Source

hah阿凡达

28169 2 days ago
parent
commit
1d4d0ffd8d
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/xt_pages/user/patientInfo.vue

+ 3 - 1
src/xt_pages/user/patientInfo.vue View File

1
 
1
 
2
 <template>
2
 <template>
3
   <div class="patient-container">
3
   <div class="patient-container">
4
-  <patient-sidebar :id="patientID"></patient-sidebar>
4
+  <patient-sidebar :id="patientID" v-if="org_id!=0&&org_id!=10702"></patient-sidebar>
5
+  <PatientSidebar_ord :id="patientID" v-if="org_id==0 || org_id==10702"></PatientSidebar_ord>
5
    <!-- <PatientSidebar_new :id="patientID"></PatientSidebar_new> -->
6
    <!-- <PatientSidebar_new :id="patientID"></PatientSidebar_new> -->
6
   <patient-detail :is-edit='true' :class='panelClass' v-on:tran-patient-info="patientInfo=$event"></patient-detail>
7
   <patient-detail :is-edit='true' :class='panelClass' v-on:tran-patient-info="patientInfo=$event"></patient-detail>
8
+
7
   </div>
9
   </div>
8
 </template>
10
 </template>
9
 
11