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