144 lines
2.9 KiB
Vue
144 lines
2.9 KiB
Vue
<script setup lang="ts">
|
|
import { ref, useAttrs } from "vue";
|
|
|
|
const attrs = ref<any>(useAttrs());
|
|
const table = ref<any>(null);
|
|
|
|
/** รับ props มาจากหน้าหลัก */
|
|
const props = defineProps({
|
|
count: Number,
|
|
pass: Number,
|
|
notpass: Number,
|
|
|
|
inputfilter: String,
|
|
name: String,
|
|
icon: String,
|
|
inputvisible: Array,
|
|
editvisible: Boolean,
|
|
add: {
|
|
type: Function,
|
|
default: () => console.log("not function"),
|
|
},
|
|
validate: {
|
|
type: Function,
|
|
default: () => console.log("not function"),
|
|
},
|
|
nornmalData: {
|
|
type: Boolean,
|
|
defualt: true,
|
|
},
|
|
conclude: {
|
|
type: Boolean,
|
|
defualt: false,
|
|
},
|
|
paging: {
|
|
type: Boolean,
|
|
defualt: false,
|
|
},
|
|
});
|
|
|
|
const emit = defineEmits([
|
|
"update:inputfilter",
|
|
"update:inputvisible",
|
|
"update:editvisible",
|
|
]);
|
|
|
|
const pagination = ref({
|
|
sortBy: "desc",
|
|
descending: false,
|
|
page: 1,
|
|
rowsPerPage: 10,
|
|
});
|
|
|
|
const paginationLabel = (start: string, end: string, total: string) => {
|
|
if (props.paging == true)
|
|
return " " + start + " ใน " + end + " จากจำนวน " + total + " รายการ";
|
|
else return start + "-" + end + " ใน " + total;
|
|
};
|
|
</script>
|
|
<template>
|
|
<div class="q-pb-sm row q-col-gutter-sm">
|
|
<!-- -->
|
|
<q-space />
|
|
</div>
|
|
<d-table
|
|
ref="table"
|
|
flat
|
|
v-bind="attrs"
|
|
virtual-scroll
|
|
:virtual-scroll-sticky-size-start="48"
|
|
dense
|
|
:pagination-label="paginationLabel"
|
|
v-model:pagination="pagination"
|
|
>
|
|
<template v-slot:header="props">
|
|
<q-tr :props="props">
|
|
<q-th auto-width v-if="nornmalData == true" />
|
|
<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>
|
|
<template #body="props">
|
|
<slot v-bind="props" name="columns"></slot>
|
|
</template>
|
|
<template v-slot:pagination="scope">
|
|
<q-pagination
|
|
v-model="pagination.page"
|
|
active-color="primary"
|
|
color="dark"
|
|
:max="scope.pagesNumber"
|
|
:max-pages="5"
|
|
size="sm"
|
|
boundary-links
|
|
direction-links
|
|
></q-pagination>
|
|
</template>
|
|
</d-table>
|
|
</template>
|
|
<style lang="scss">
|
|
.icon-color {
|
|
color: #4154b3;
|
|
}
|
|
|
|
.custom-table2 {
|
|
max-height: 64vh;
|
|
|
|
.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;
|
|
}
|
|
|
|
.q-table td:nth-of-type(2) {
|
|
z-index: 3 !important;
|
|
}
|
|
|
|
.q-table th:nth-of-type(2),
|
|
.q-table td:nth-of-type(2) {
|
|
position: sticky;
|
|
left: 0;
|
|
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>
|