Browse Source

HIS 系统提交

XMLWAN 4 years ago
parent
commit
57ec0e31a2

+ 6 - 6
src/xt_pages/outpatientDoctorStation/components/additionalCharges.vue View File

5
         :visible.sync="visible"
5
         :visible.sync="visible"
6
         :before-close="_close"
6
         :before-close="_close"
7
     >
7
     >
8
-        <el-table :data="tableData" border style="width: 100%;" height="300" :row-style="{ color: '#303133' }" 
8
+        <el-table :data="tableData" border style="width: 100%;" height="300" :row-style="{ color: '#303133' }"
9
         :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}" highlight-current-row
9
         :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}" highlight-current-row
10
           @selection-change="handleSelectionChange">
10
           @selection-change="handleSelectionChange">
11
             <el-table-column align="center" type="selection" width="40"></el-table-column>
11
             <el-table-column align="center" type="selection" width="40"></el-table-column>
22
             <el-button @click="hide">取 消</el-button>
22
             <el-button @click="hide">取 消</el-button>
23
             <el-button type="primary"  @click="submitAction()">保 存</el-button>
23
             <el-button type="primary"  @click="submitAction()">保 存</el-button>
24
         </div>
24
         </div>
25
-    </el-dialog>         
25
+    </el-dialog>
26
 </template>
26
 </template>
27
 
27
 
28
 <script>
28
 <script>
41
             tableData:[
41
             tableData:[
42
               {id:1,name:"工本费",money:""},
42
               {id:1,name:"工本费",money:""},
43
               {id:2,name:"挂号费",money:""},
43
               {id:2,name:"挂号费",money:""},
44
-              {id:3,name:"诊疗费",money:""}  
44
+              {id:3,name:"诊疗费",money:""}
45
             ],
45
             ],
46
             chargeTable:[]
46
             chargeTable:[]
47
         }
47
         }
78
           saveCharges(params).then(response=>{
78
           saveCharges(params).then(response=>{
79
              if(response.data.state == 1){
79
              if(response.data.state == 1){
80
                var additionalCharge =  response.data.data.additionalCharge
80
                var additionalCharge =  response.data.data.additionalCharge
81
-               console.log("additionalchar",additionalCharge)
81
+               // console.log("additionalchar",additionalCharge)
82
                this.visible = false
82
                this.visible = false
83
                this.$message.success("保存成功")
83
                this.$message.success("保存成功")
84
              }
84
              }
85
-          })      
85
+          })
86
         }
86
         }
87
     },
87
     },
88
     watch:{
88
     watch:{
89
        hisPatientInfo:function(val){
89
        hisPatientInfo:function(val){
90
-         console.log("患者ID",this)  
90
+         console.log("患者ID",this)
91
        }
91
        }
92
     }
92
     }
93
 }
93
 }