소스 검색

提交代码

陈少旭 1 년 전
부모
커밋
862f0f4b9f
1개의 변경된 파일20개의 추가작업 그리고 1개의 파일을 삭제
  1. 20 1
      src/xt_pages/outpatientCharges/summary.vue

+ 20 - 1
src/xt_pages/outpatientCharges/summary.vue 파일 보기

66
             </el-option>
66
             </el-option>
67
           </el-select>
67
           </el-select>
68
 
68
 
69
+
70
+          <el-select v-model="medTypeVal" placeholder="请选择医疗类别" style="margin-right:20px;" @change="handleMedChange">
71
+            <el-option
72
+              v-for="item in med_options"
73
+              :key="item.id"
74
+              :label="item.text"
75
+              :value="item.id">
76
+            </el-option>
77
+          </el-select>
78
+
69
           <!-- <el-date-picker
79
           <!-- <el-date-picker
70
               size="small"
80
               size="small"
71
               v-model="start_time"
81
               v-model="start_time"
496
     return {
506
     return {
497
       orderObj: {},
507
       orderObj: {},
498
       batchOrderObj:{},
508
       batchOrderObj:{},
509
+      med_options:[
510
+        { id: 0, text: '全部' },
511
+        { id: 11, text: '普通门诊' },
512
+        { id: 14, text: '门诊特殊病' },
513
+      ],
499
       zone_options: [
514
       zone_options: [
500
         { id: 0, text: '全部分区' }
515
         { id: 0, text: '全部分区' }
501
       ],
516
       ],
515
       keywords: "",
530
       keywords: "",
516
       sch_type:"0",//班次
531
       sch_type:"0",//班次
517
       zoneVal:0,//分区
532
       zoneVal:0,//分区
533
+      medTypeVal:0,
518
       start_time: moment(new Date()).add('year',0).format("YYYY-MM-DD"),
534
       start_time: moment(new Date()).add('year',0).format("YYYY-MM-DD"),
519
       end_time: moment(new Date()).add('year',0).format("YYYY-MM-DD"),
535
       end_time: moment(new Date()).add('year',0).format("YYYY-MM-DD"),
520
       total: "",
536
       total: "",
583
     handleSchType(val){
599
     handleSchType(val){
584
       this.sch_type = val
600
       this.sch_type = val
585
       this.getHisOrderList()
601
       this.getHisOrderList()
602
+    },handleMedChange(){
603
+      this.getHisOrderList()
586
     },
604
     },
587
     handleZoneChange(val){
605
     handleZoneChange(val){
588
       this.zoneVal = val
606
       this.zoneVal = val
3577
         p_type: 2,
3595
         p_type: 2,
3578
         sort_type: this.sort_type,
3596
         sort_type: this.sort_type,
3579
         sch_type: this.sch_type,
3597
         sch_type: this.sch_type,
3580
-        zone_type: this.zoneVal
3598
+        zone_type: this.zoneVal,
3599
+        med_type: this.medTypeVal
3581
       };
3600
       };
3582
       getHisOrderList(params).then((response) => {
3601
       getHisOrderList(params).then((response) => {
3583
         if (response.data.state == 0) {
3602
         if (response.data.state == 0) {