|
@@ -3,7 +3,7 @@
|
|
|
<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" :sortable="childCol.needSort" :prop="childCol.columnName" :label="childCol.columnLabel" :formatter="formatter">
|
|
|
+ <el-table-column v-for="childCol in col.children" :key="childCol.columnName" :sortable="childCol.needSort ? true : false" :prop="childCol.columnName" :label="childCol.columnLabel" :formatter="formatter">
|
|
|
<template #header>
|
|
|
<el-tooltip :content="childCol.columnDescribe || childCol.columnLabel" placement="top">
|
|
|
<template v-if="childCol.needFilters">
|