1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
| <template>
| <div>
| <el-select v-model="modelValue" v-bind="{ ...$attrs }">
| <el-option
| v-for="item in proTableProps.tableData"
| :key="item[props.enumValueKey]"
| :label="item[props.enumLabelKey]"
| :value="item[props.enumValueKey]"
| >
| </el-option>
| <template #footer>
| <ProPagination v-bind="proTableProps" layout="total, prev, pager, next"></ProPagination>
| </template>
| </el-select>
| </div>
| </template>
|
| <script setup lang="ts">
| import { ProPagination } from '@bole-core/components';
|
| defineOptions({
| name: 'FieldPaginationSelect',
| });
|
| type Props = {
| proTableProps: any;
| enumLabelKey?: string;
| enumValueKey?: string;
| };
|
| const props = withDefaults(defineProps<Props>(), {
| enumLabelKey: 'label',
| enumValueKey: 'value',
| });
|
| const modelValue = defineModel<string>();
| </script>
|
|