|
@@ -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 => {
|