1
1
<script lang="ts" setup>
2
- import { ref } from ' vue' ;
2
+ import { h , ref } from ' vue' ;
3
3
4
4
import { Page } from ' @vben/common-ui' ;
5
5
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' ;
7
8
import dayjs from ' dayjs' ;
8
9
9
10
import { useVbenForm } from ' #/adapter/form' ;
@@ -12,6 +13,22 @@ import { getAllMenusApi } from '#/api';
12
13
import DocButton from ' ../doc-button.vue' ;
13
14
14
15
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
+ }
15
32
16
33
const [BaseForm, baseFormApi] = useVbenForm ({
17
34
// 所有表单项共用,可单独在表单内覆盖
@@ -64,6 +81,37 @@ const [BaseForm, baseFormApi] = useVbenForm({
64
81
// 界面显示的label
65
82
label: ' ApiSelect' ,
66
83
},
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
+ },
67
115
{
68
116
component: ' ApiTreeSelect' ,
69
117
// 对应组件的参数
0 commit comments