mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 20:27:44 +08:00
a1834a4151
* style(docs): change navbar z-index * style: change the example mask and overlay z-index
60 lines
1.4 KiB
Vue
60 lines
1.4 KiB
Vue
<template>
|
|
<el-table-v2
|
|
:columns="columns"
|
|
:data="data"
|
|
:row-height="40"
|
|
:width="700"
|
|
:height="400"
|
|
>
|
|
<template #overlay>
|
|
<div
|
|
class="el-loading-mask"
|
|
style="display: flex; align-items: center; justify-content: center"
|
|
>
|
|
<el-icon class="is-loading" color="var(--el-color-primary)" :size="26">
|
|
<loading-icon />
|
|
</el-icon>
|
|
</div>
|
|
</template>
|
|
</el-table-v2>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { Loading as LoadingIcon } from '@element-plus/icons-vue'
|
|
|
|
const generateColumns = (length = 10, prefix = 'column-', props?: any) =>
|
|
Array.from({ length }).map((_, columnIndex) => ({
|
|
...props,
|
|
key: `${prefix}${columnIndex}`,
|
|
dataKey: `${prefix}${columnIndex}`,
|
|
title: `Column ${columnIndex}`,
|
|
width: 150,
|
|
}))
|
|
|
|
const generateData = (
|
|
columns: ReturnType<typeof generateColumns>,
|
|
length = 200,
|
|
prefix = 'row-'
|
|
) =>
|
|
Array.from({ length }).map((_, rowIndex) => {
|
|
return columns.reduce(
|
|
(rowData, column, columnIndex) => {
|
|
rowData[column.dataKey] = `Row ${rowIndex} - Col ${columnIndex}`
|
|
return rowData
|
|
},
|
|
{
|
|
id: `${prefix}${rowIndex}`,
|
|
parentId: null,
|
|
}
|
|
)
|
|
})
|
|
|
|
const columns = generateColumns(10)
|
|
const data = generateData(columns, 200)
|
|
</script>
|
|
<style>
|
|
.example-showcase .el-table-v2__overlay {
|
|
z-index: 9;
|
|
}
|
|
</style>
|