vipshop / ams

AMS是基于 Vue.js 和 Element组件库、通过JSON配置来快速搭建管理后台的一整套前端解决方案
Apache License 2.0
392 stars 69 forks source link

feat(select): 通过API加载下拉菜单列表 #177

Closed ly525 closed 3 years ago

ly525 commented 3 years ago

利用远程搜索的能力,支持初始化的时候,通过API加载下拉菜单列表

ly525 commented 3 years ago
remoteOptions: {
    slot: 'searchs',
    type: 'field',
    label: '远程列表',
    field: {
       // isInitOptionsWithAPI: 通过API加载下拉菜单,会默认开启
       // 1. field.remoteConfig.isInitEmpty: true, // 空值允许加载
       // 2. field.props.remote: false // 关闭远程搜索
        isInitOptionsWithAPI: true, 
        type: 'select',
        BASE: 'SELECT_REMOTE',
        remoteConfig: {
            action:
                'http://rap2api.taobao.org/app/mock/245887/example/1582993530845',
            queryKey: 'query'
        }
    }
},

image