30 lines
607 B
Vue
30 lines
607 B
Vue
<!-- 这里单纯的配置表格页就好了-->
|
|
<template>
|
|
<div class="full-page w-full bg-slate-200">
|
|
<BaseListTable :over-all="tableConfig.overAll" :table-config="tableConfig.props" :table-data="tableConfig.data" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
// TODO:
|
|
// 1. ListView 相关
|
|
import BaseListTable from '@/components/BaseListTable.vue';
|
|
|
|
export default {
|
|
name: 'ListView',
|
|
components: { BaseListTable },
|
|
props: {
|
|
tableConfig: {
|
|
type: Object,
|
|
default: () => ({ props: [], data: [], overAll: undefined }),
|
|
},
|
|
},
|
|
data() {
|
|
return {};
|
|
},
|
|
methods: {},
|
|
};
|
|
</script>
|
|
|
|
<style scoped></style>
|