Browse Source

11月15 透析历史

yq1 6 months ago
parent
commit
3e4782e351

+ 1 - 2
src/xt_pages/outpatientDoctorStation/components/dialysishistory.vue View File

306
 
306
 
307
     },
307
     },
308
     rowclick(event){
308
     rowclick(event){
309
+      console.log('111111event',event.patient_id);
309
       this.$router.push({
310
       this.$router.push({
310
         path: "/dialysis/details/indexs",
311
         path: "/dialysis/details/indexs",
311
         query: { patient_id: event.patient_id, date: event.dialysis_date }
312
         query: { patient_id: event.patient_id, date: event.dialysis_date }
319
 
320
 
320
     },
321
     },
321
     getPatientDialysisRecords() {
322
     getPatientDialysisRecords() {
322
-      console.log("prams--------------------",this.queryParams)
323
       getPatientDialysisRecords(this.queryParams).then(response => {
323
       getPatientDialysisRecords(this.queryParams).then(response => {
324
         if (response.data.state == 1) {
324
         if (response.data.state == 1) {
325
           this.total = response.data.data.total;
325
           this.total = response.data.data.total;
370
       }
370
       }
371
     },
371
     },
372
     setAnticoagulantsConfit(prescription) {
372
     setAnticoagulantsConfit(prescription) {
373
-      console.log("透析处方----------------",prescription)
374
       if (typeof this.anticoagulantsConfit[prescription.anticoagulant] ==="undefined") {
373
       if (typeof this.anticoagulantsConfit[prescription.anticoagulant] ==="undefined") {
375
         return "";
374
         return "";
376
       } else {
375
       } else {

+ 3 - 1
src/xt_pages/outpatientDoctorStation/doctorDesk.vue View File

2745
     },
2745
     },
2746
 
2746
 
2747
     choosePatient(val) {
2747
     choosePatient(val) {
2748
+      console.log('1234567890',val);
2749
+      
2748
       if (this.titleType == '电子病历') {
2750
       if (this.titleType == '电子病历') {
2749
         if (this.$refs.child != undefined && this.$refs.child.watchSign > 2) {
2751
         if (this.$refs.child != undefined && this.$refs.child.watchSign > 2) {
2750
           this.$confirm('是否保存当前病例', '保存', {
2752
           this.$confirm('是否保存当前病例', '保存', {
4734
           this.$refs.child.watchSign = 0
4736
           this.$refs.child.watchSign = 0
4735
         }
4737
         }
4736
       }else if(this.titleType == '透析历史'){
4738
       }else if(this.titleType == '透析历史'){
4737
-
4739
+        this.patientid = val.id
4738
          this.$refs.childOne.show(this.patientid)
4740
          this.$refs.childOne.show(this.patientid)
4739
       } else {
4741
       } else {
4740
 
4742