yq1 1 년 전
부모
커밋
dbcca120a8
2개의 변경된 파일12개의 추가작업 그리고 9개의 파일을 삭제
  1. 2 2
      src/xt_pages/outpatientDoctorStation/doctorDesk.vue
  2. 10 7
      src/xt_pages/user/dialysisRecord.vue

+ 2 - 2
src/xt_pages/outpatientDoctorStation/doctorDesk.vue 파일 보기

@@ -111,7 +111,7 @@
111 111
             <el-tab-pane label="透析记录" name="透析记录">
112 112
             </el-tab-pane>
113 113
             <el-tab-pane label="电子病历" name="电子病历"></el-tab-pane>
114
-            <el-tab-pane label="透析历史" name="透析历史"></el-tab-pane>
114
+            <!-- <el-tab-pane label="透析历史" name="透析历史"></el-tab-pane> -->
115 115
 
116 116
           </el-tabs>
117 117
           <div class="mainCell fixedCell" style="float:right" v-if="titleType == '电子处方'">
@@ -191,7 +191,7 @@
191 191
         <dialysis-index v-if="titleType == '透析记录'" :record_date="record_date" :patientid='patientid'
192 192
                         :dialysisShow="dialysisShow"></dialysis-index>
193 193
 
194
-        <dialysishistory v-if="titleType == '透析历史'" :patientid='patientid'></dialysishistory>
194
+        <!-- <dialysishistory v-if="titleType == '透析历史'" :patientid='patientid'></dialysishistory> -->
195 195
       </div>
196 196
 
197 197
     </div>

+ 10 - 7
src/xt_pages/user/dialysisRecord.vue 파일 보기

@@ -685,13 +685,16 @@ export default {
685 685
       this.patient_id = val.patient_id
686 686
       this.dialysis_date = val.dialysis_date
687 687
     },
688
-    rowclick(event){
689
-
690
-      console.log('kkkkkkk',event);
691
-      this.patient_id = event.patient_id
692
-      this.dialysis_date = parseTime(event.dialysis_date, '{y}-{m}-{d}')
693
-      this.drawer =true
694
-      this.dialysisShow =true
688
+    rowclick(val){
689
+      this.$router.push({
690
+        path: "/dialysis/details",
691
+        query: { patient_id: val.patient_id, date: val.dialysis_date }
692
+      });
693
+      // console.log('kkkkkkk',event);
694
+      // this.patient_id = event.patient_id
695
+      // this.dialysis_date = parseTime(event.dialysis_date, '{y}-{m}-{d}')
696
+      // this.drawer =true
697
+      // this.dialysisShow =true
695 698
     },
696 699
     exportList(){
697 700
       import('@/vendor/Export2Excel').then(excel => {