Browse Source

费用清单患者列表样式

lighter 1 year ago
parent
commit
4d44ba4f7f
1 changed files with 1 additions and 3 deletions
  1. 1 3
      src/components/medical-insurance/charge-list/Index.vue

+ 1 - 3
src/components/medical-insurance/charge-list/Index.vue

@@ -7,7 +7,7 @@
           <el-button type="primary" icon="Search" style="margin-left: 20px" @click="fetchOverview">查询</el-button>
         </div>
         <div style="width: 336px">
-          <el-table :height="tableHeight" :data="patList" stripe highlight-current-row style="width: 336px"
+          <el-table :data="patList" stripe highlight-current-row style="width: 336px"
                     @row-click="fetchBriefPatInfo">
             <el-table-column prop="times" label="次数" width="35"></el-table-column>
             <el-table-column prop="name" label="姓名" width="70"></el-table-column>
@@ -189,7 +189,6 @@ export default {
   },
   emits: ['close'],
   setup(props, ctx) {
-    const tableHeight = window.innerHeight - 72
     const patList = ref([])
     const briefPatInfo = ref({})
     const chargeListMap = ref({})
@@ -287,7 +286,6 @@ export default {
     }
     return {
       currentPatNo,
-      tableHeight,
       patList,
       briefPatInfo,
       chargeListMap,