wupengfei
6 天以前 a4bb5626dcf18a1893792eeeca75e9139c744ad0
src/components/Form/FieldPaginationSelect.vue
New file
@@ -0,0 +1,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>