浏览代码

修改排序样式

zhaoke 2 年之前
父节点
当前提交
e80cbaa98b
共有 1 个文件被更改,包括 5 次插入3 次删除
  1. 5 3
      src/views/newQuery/components/table.vue

+ 5 - 3
src/views/newQuery/components/table.vue

@@ -3,11 +3,11 @@
     <template v-if="istableChild">
       <el-table v-el-table-infinite-scroll="load" :data="dealedTableData" :summary-method="getSummaries" :span-method="tableSpanMethod" stripe :show-summary="showSummary" border @cell-click="cellClick" :cell-class-name="cellClass" ref="table" height="100%" class="table infinite-list">
         <el-table-column v-for="col in tableColsCopy" :key="col.columnName" :prop="col.columnName" :label="col.groupName" align="center">
-          <el-table-column v-for="childCol in col.children" :key="childCol.columnName" :prop="childCol.columnName" :label="childCol.columnLabel" :formatter="formatter">
+          <el-table-column v-for="childCol in col.children" :key="childCol.columnName" :sortable="childCol.needSort" :prop="childCol.columnName" :label="childCol.columnLabel" :formatter="formatter">
             <template #header>
               <el-tooltip :content="childCol.columnDescribe || childCol.columnLabel" placement="top">
                 <template v-if="childCol.needFilters">
-                  <TableHeaderCell :label="childCol.columnLabel" :filter-options="tableDataFilters[childCol.columnName]" :filter-values.sync="filterValues[childCol.columnName]" :sortable="childCol.needSort" />
+                  <TableHeaderCell :label="childCol.columnLabel" :filter-options="tableDataFilters[childCol.columnName]" :filter-values.sync="filterValues[childCol.columnName]" />
                 </template>
                 <template v-else>
                   <div>{{ childCol.columnLabel }}</div>
@@ -486,7 +486,7 @@ export default {
       const fileName = `高级查询.xlsx`
       throttledExportToExcel(table, '高级查询', fileName)
     },
-    formatter(row, column, cellValue, index) {
+    formatter (row, column, cellValue, index) {
       const sameColumn = this.tableCols.find(col => col.columnName === column.property)
       if (sameColumn && this.fromDataType(sameColumn.dataType) === 'datetime') {
         return (cellValue ?? '').replace('T', ' ')
@@ -513,6 +513,8 @@ export default {
       color: #000;
       text-align: center;
       white-space: nowrap;
+      display: flex;
+      justify-content: center;
       // display: flex;
       .el-tooltip {
         white-space: nowrap;