|
@@ -2,7 +2,7 @@
|
|
|
<el-container>
|
|
|
<el-main>
|
|
|
<el-button type="danger" @click="xiangMuTuiFeiClick" icon="el-icon-delete-solid">退费</el-button>
|
|
|
- <el-button type="primary" @click="weiGuiTuiFeiFenXiDialogOpen">违规费用分析</el-button>
|
|
|
+ <el-button type="primary" @click="weiGuiTuiFeiFenXiDialogOpen(true)">违规费用分析</el-button>
|
|
|
<el-table :data="cptTableDataHuanZheFeiYong" :height="windowHeigth / 1.35" @selection-change="handleSelectionChange" highlight-current-row stripe>
|
|
|
<el-table-column type="selection"></el-table-column>
|
|
|
<el-table-column label="流水号" prop="detailSn" width="70px"></el-table-column>
|
|
@@ -86,6 +86,7 @@ export default {
|
|
|
() => {
|
|
|
cptTableDataHuanZheFeiYong.value = props.init.records
|
|
|
fenYe.value.total = typeof props.init.total === 'undefined' ? 0 : props.init.total
|
|
|
+ weiGuiTuiFeiFenXiDialogOpen(false)
|
|
|
}
|
|
|
)
|
|
|
|
|
@@ -161,8 +162,10 @@ export default {
|
|
|
|
|
|
const weiGuiJiBenXinXi = ref({})
|
|
|
|
|
|
- const weiGuiTuiFeiFenXiDialogOpen = () => {
|
|
|
+ const weiGuiTuiFeiFenXiDialogOpen = (val) => {
|
|
|
+ // 014912
|
|
|
weiGuiTuiFeiInit.value += 1
|
|
|
+ weiGuiJiBenXinXi.value.openDialog = val
|
|
|
weiGuiJiBenXinXi.value.deptCode = store.state.user.info.deptCode
|
|
|
weiGuiJiBenXinXi.value.inpatientNo = typeof props.patient.inpatientNo === 'undefined' ? '' : props.patient.inpatientNo
|
|
|
}
|