hrms-user/src/modules/06_evaluate/components/viewstep/tableStep1.vue

71 lines
1.5 KiB
Vue
Raw Normal View History

2023-12-18 10:05:40 +07:00
<script setup lang="ts">
const props = defineProps({
columns: {
type: Array as () => any[],
require: true,
},
});
</script>
<template>
<q-table
ref="table"
flat
bordered
class="custom-header-table"
:columns="props.columns"
dense
2023-12-18 10:05:40 +07:00
:rows-per-page-options="[10, 25, 50, 100]"
style="width: 625px"
2023-12-18 10:05:40 +07:00
>
<template v-slot:header="props">
2023-12-18 10:05:40 +07:00
<q-tr :props="props">
<q-th v-for="col in props.cols" :key="col.name" :props="props">
<span class="text-weight-medium" v-html="col.label" />
</q-th>
</q-tr>
</template>
2023-12-18 10:05:40 +07:00
<!-- <template v-slot:body="props">
<q-tr :props="props" class="cursor-pointer">
<q-td v-for="col in props.cols" :key="col.name" :props="props">
<div v-if="col.name == 'no'">
{{ props.rowIndex + 1 }}
</div>
2023-12-18 10:05:40 +07:00
<div>
{{ col.value }}
</div>
</q-td>
</q-tr>
</template> -->
</q-table>
</template>
<style lang="scss" scoped>
.custom-header-table {
height: auto;
.q-table tr:nth-child(odd) td {
background: white;
}
.q-table tr:nth-child(even) td {
background: #f8f8f8;
}
.q-table thead tr {
background: #ecebeb;
}
.q-table thead tr th {
position: sticky;
z-index: 1;
}
/* this will be the loading indicator */
.q-table thead tr:last-child th {
/* height of all previous header rows */
top: 48px;
}
.q-table thead tr:first-child th {
top: 0;
}
}
</style>