| | |
| | | <template> |
| | | <div class="min-w-[100ch]"> |
| | | <template v-if="summaryList && summaryList.length > 0"> |
| | | <div class="ml-10" v-for="(item, idx) in summaryList" :key="idx"> |
| | | <div class="ml-10 w-full" v-for="(item, idx) in summaryList" :key="idx"> |
| | | <h3>{{ item.title }}</h3> |
| | | <el-table class="mt-2" :data="item.values" :style="{ width: `${columnsWidth * (item.values?.length ?? 1)}px` }"> |
| | | <el-table class="mt-2 w-full" :data="[{}]"> |
| | | <el-table-column v-for="(col, index) in item.values" :label="col.title" :key="index"> |
| | | <template #default="scope"> |
| | | {{ col?.value }} |