From a4bb5626dcf18a1893792eeeca75e9139c744ad0 Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期一, 13 十月 2025 16:30:45 +0800
Subject: [PATCH] Merge branch 'dev-1.1.2' of http://120.26.58.240:8888/r/flexJobAdmin into dev-1.1.2

---
 src/components/Form/ProFormPaginationSelect.vue |   35 +++++++++++++++++++++++++++++++++++
 1 files changed, 35 insertions(+), 0 deletions(-)

diff --git a/src/components/Form/ProFormPaginationSelect.vue b/src/components/Form/ProFormPaginationSelect.vue
new file mode 100644
index 0000000..384b2d8
--- /dev/null
+++ b/src/components/Form/ProFormPaginationSelect.vue
@@ -0,0 +1,35 @@
+<template>
+  <ProFieldCustom>
+    <FieldPaginationSelect
+      v-model="modelValue"
+      :proTableProps="proTableProps"
+      v-bind="{ ...$attrs }"
+      :enumLabelKey="enumLabelKey"
+      :enumValueKey="enumValueKey"
+    />
+  </ProFieldCustom>
+</template>
+
+<script setup lang="ts">
+import { ProFieldCustom } from '@bole-core/components';
+import FieldPaginationSelect from './FieldPaginationSelect.vue';
+
+defineOptions({
+  name: 'ProFormPaginationSelect',
+});
+
+type Props = {
+  proTableProps: any;
+  enumLabelKey?: string;
+  enumValueKey?: string;
+};
+
+const props = withDefaults(defineProps<Props>(), {});
+console.log('props: ', props);
+
+const modelValue = defineModel<string>();
+</script>
+
+<style lang="scss" scoped>
+@use '@/style/common.scss' as *;
+</style>

--
Gitblit v1.9.1