Browse Source

缺陷数量下钻列表-增加边框属性拖拉,调整主要诊断名称和主要手术名称列宽

liyanyan 1 week ago
parent
commit
3f541803db
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/views/allcase/defectNumber.vue

+ 3 - 3
src/views/allcase/defectNumber.vue

@@ -195,7 +195,7 @@
         </el-table-column>
       </el-table>
       <!--终末病历质控-问题数量-->
-      <el-table :data="tableData" ref='tableRef' style="width: 100%" v-else  @sort-change="handleSortChange" :row-class-name="tableRowClassName">
+      <el-table :data="tableData" ref='tableRef' style="width: 100%" v-else border @sort-change="handleSortChange" :row-class-name="tableRowClassName">
         <el-table-column type="index" label="序号" width="80"></el-table-column>
         <el-table-column prop="notice" label="问题描述" width="200" show-overflow-tooltip></el-table-column>
         <el-table-column prop="AAA28" label="病案号" width="120">
@@ -212,8 +212,8 @@
         <el-table-column prop="AEE03" label="主治医师" width="120"></el-table-column>
         <el-table-column prop="AEM01C_MC" label="离院方式" width="150" show-overflow-tooltip></el-table-column>
         <el-table-column prop="AAB01" label="入院时间" width="160" sortable></el-table-column>
-        <el-table-column prop="ICD10_NAME" label="主要诊断名称" show-overflow-tooltip></el-table-column>
-        <el-table-column prop="ICD9_NAME" label="主要手术名称" show-overflow-tooltip></el-table-column>
+        <el-table-column prop="ICD10_NAME" label="主要诊断名称" width="160" show-overflow-tooltip></el-table-column>
+        <el-table-column prop="ICD9_NAME" label="主要手术名称" width="160" show-overflow-tooltip></el-table-column>
       </el-table>
       <!-- 分页控制 -->
       <mPagination v-if="tableData && tableData.length !== 0" :data="paginationData" @pageChangeEvent="pageHasChanged"></mPagination>