Commit b1f3421c authored by 罗超's avatar 罗超

1

parent 13922b0b
<template> <template>
<div class="orderCourse"> <q-table :pagination="msg" selection="single" :selected.sync="selection" no-data-label="暂无相关数据" flat
<q-table class="sticky-tow-column-table sticky-two-header-table" separator="none" :data="dataList" :columns="columns"
:pagination="msg" row-key="ClassId" @update:selected="emitSel" table-class="table" hide-bottom>
selection="single"
:selected.sync="selection"
no-data-label="暂无相关数据"
flat
class="sticky-tow-column-table "
separator="none"
:data="dataList"
:columns="columns"
row-key="ClassId"
title="日语培训产品列表"
@update:selected ="emitSel"
>
<!-- <template v-slot:body-cell-ClassName="props">
<q-td :props="props">
{{ props.row.ClassName }}
</q-td>
</template> -->
<template v-slot:bottom> </template>
</q-table> </q-table>
</div>
</template> </template>
<script> <script>
export default { export default {
props: { props: {
dataList: { dataList: {
type: Array, type: Array,
default: () => [] default: () => []
}, },
select:{ select: {
type: Array, type: Array,
default: () => [] default: () => []
} }
...@@ -43,8 +24,7 @@ export default { ...@@ -43,8 +24,7 @@ export default {
pageIndex: 1, pageIndex: 1,
rowsPerPage: 0 rowsPerPage: 0
}, },
columns: [ columns: [{
{
name: "ClassName", name: "ClassName",
label: "班级", label: "班级",
align: "left", align: "left",
...@@ -72,17 +52,42 @@ export default { ...@@ -72,17 +52,42 @@ export default {
}; };
}, },
mounted() { mounted() {
this.selection=this.select this.selection = this.select
}, },
methods: { methods: {
emitSel(val){ emitSel(val) {
this.$emit("select",val) this.$emit("select", val)
}, },
} }
}; };
</script> </script>
<style > <style>
.orderCourse .q-table__bottom { .table {
min-height: 0; max-height: 400px;
} }
.table::-webkit-scrollbar {
width: 5px;
height: 5px;
}
.table::-webkit-scrollbar-track {
background: #fff;
border-radius: 2px;
}
.table::-webkit-scrollbar-thumb {
background: #444;
border-radius: 10px;
}
.table::-webkit-scrollbar-thumb:hover {
background: #999;
}
.table::-webkit-scrollbar-corner {
background: #204754;
}
</style> </style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment