Skip to content

Commit 3aeeca9

Browse files
committed
test: add apiSelect remote search demo
1 parent 68a7e79 commit 3aeeca9

File tree

1 file changed

+50
-2
lines changed

1 file changed

+50
-2
lines changed

playground/src/views/examples/form/basic.vue

+50-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
<script lang="ts" setup>
2-
import { ref } from 'vue';
2+
import { h, ref } from 'vue';
33
44
import { Page } from '@vben/common-ui';
55
6-
import { Button, Card, message, TabPane, Tabs } from 'ant-design-vue';
6+
import { useDebounceFn } from '@vueuse/core';
7+
import { Button, Card, message, Spin, TabPane, Tabs } from 'ant-design-vue';
78
import dayjs from 'dayjs';
89
910
import { useVbenForm } from '#/adapter/form';
@@ -12,6 +13,22 @@ import { getAllMenusApi } from '#/api';
1213
import DocButton from '../doc-button.vue';
1314
1415
const activeTab = ref('basic');
16+
const keyword = ref('');
17+
const fetching = ref(false);
18+
// 模拟远程获取数据
19+
function fetchRemoteOptions({ keyword = '选项' }: Record<string, any>) {
20+
fetching.value = true;
21+
return new Promise((resolve) => {
22+
setTimeout(() => {
23+
const options = Array.from({ length: 10 }).map((_, index) => ({
24+
label: `${keyword}-${index}`,
25+
value: `${keyword}-${index}`,
26+
}));
27+
resolve(options);
28+
fetching.value = false;
29+
}, 1000);
30+
});
31+
}
1532
1633
const [BaseForm, baseFormApi] = useVbenForm({
1734
// 所有表单项共用,可单独在表单内覆盖
@@ -64,6 +81,37 @@ const [BaseForm, baseFormApi] = useVbenForm({
6481
// 界面显示的label
6582
label: 'ApiSelect',
6683
},
84+
{
85+
component: 'ApiSelect',
86+
// 对应组件的参数
87+
componentProps: () => {
88+
return {
89+
api: fetchRemoteOptions,
90+
// 禁止本地过滤
91+
filterOption: false,
92+
// 如果正在获取数据,使用插槽显示一个loading
93+
notFoundContent: fetching.value ? undefined : null,
94+
// 搜索词变化时记录下来, 使用useDebounceFn防抖。
95+
onSearch: useDebounceFn((value: string) => {
96+
keyword.value = value;
97+
}, 300),
98+
// 远程搜索参数。当搜索词变化时,params也会更新
99+
params: {
100+
keyword: keyword.value || undefined,
101+
},
102+
showSearch: true,
103+
};
104+
},
105+
// 字段名
106+
fieldName: 'remoteSearch',
107+
// 界面显示的label
108+
label: '远程搜索',
109+
renderComponentContent: () => {
110+
return {
111+
notFoundContent: fetching.value ? h(Spin) : undefined,
112+
};
113+
},
114+
},
67115
{
68116
component: 'ApiTreeSelect',
69117
// 对应组件的参数

0 commit comments

Comments
 (0)