Skip to content

ApiList 数据列表

新增版本:1.0.34

该组件为su-search, su-listsu-loadmore组合的高性能组件,传listProps可设置su-list 属性,传searchProps可设置 su-search 属性

平台差异说明

AppApp(nvue)H5小程序

基础使用

  • 传入list数据
  • showSearchtrue,开启本地搜索
  • 不可传入api
  • multiple: true, 开启多选
html
<template>
  <view class="su-page">
    <view class="su-demo-block">
      <text class="su-demo-block__title">基础使用</text>
      <view class="su-demo-block__content">
        <su-api-list v-model="modelValue" v-bind="basicListProps"></su-api-list>
      </view>
    </view>
  </view>
</template>

<script setup lang="ts">
  import type { SuApiListProps } from 'sun-uni/components/su-api-list/props'
  import { watch } from 'vue'
  import { ref } from 'vue'

  const modelValue = ref([1101])

  const basicListProps: Partial<SuApiListProps> = {
    labelField: 'cnName',
    valueField: 'id',
    listProps: {
      height: '200px'
    },
    showPager: false,
    multiple: true,
    showSearch: true,
    list: [
      {
        id: 1101,
        cnName: '中国'
      },
      {
        id: 1102,
        cnName: '美国'
      },
      {
        id: 1103,
        cnName: '日本'
      }
    ]
  }

  watch(
    () => modelValue.value,
    () => {
      console.log(modelValue.value, 'modelValue.value')
    },
    { deep: true }
  )
</script>

api使用

  • apidataField快速获取接口数据
  • showSearch: true, 需要设置searchField
  • showPager: true, 开启分页
  • remoteSearch: true, 远程搜索
html
<template>
  <view class="su-page">
    <view class="su-demo-block">
      <text class="su-demo-block__title">api使用</text>
      <view class="su-demo-block__content">
        <su-api-list v-model="modelValue" v-bind="apiListProps"></su-api-list>
      </view>
    </view>
  </view>
</template>

<script setup lang="ts">
  import { CountryGetPageGET } from '@/api/dc-default/Country'
  import type { SuApiListProps } from 'sun-uni/components/su-api-list/props'
  import { watch } from 'vue'
  import { ref } from 'vue'

  const modelValue = ref([1101])

  const apiListProps: Partial<SuApiListProps> = {
    api: CountryGetPageGET,
    labelField: 'cnName',
    valueField: 'id',
    totalField: 'data.pagination.total',
    dataField: 'data.list',
    searchField: 'keyWord',
    listProps: {
      height: '500px'
    },
    showPager: true,
    multiple: true,
    remoteSearch: true,
    showSearch: true
  }

  watch(
    () => modelValue.value,
    () => {
      console.log(modelValue.value, 'modelValue.value')
    },
    { deep: true }
  )
</script>

抽屉使用

su-drawer一起使用

html
<template>
  <view class="su-page">
    <su-drawer selector="user-drawer" title="国家列表" show-footer :custom-style="{ height: '600px' }">
      <view style="padding: 24rpx">
        <su-api-list v-model="modelValue" v-bind="apiListProps"></su-api-list>
      </view>
    </su-drawer>
  </view>
</template>
<script setup lang="ts">
  import { CountryGetPageGET } from '@/api/dc-default/Country'
  import type { SuApiListProps } from 'sun-uni/components/su-api-list/props'
  import { watch } from 'vue'
  import { ref } from 'vue'

  import { useDrawer } from 'sun-uni/hooks'
  const modelValue = ref([1101])

  const { openDrawer } = useDrawer('user-drawer')

  const apiListProps: Partial<SuApiListProps> = {
    api: CountryGetPageGET,
    labelField: 'cnName',
    valueField: 'id',
    totalField: 'data.pagination.total',
    dataField: 'data.list',
    searchField: 'keyWord',
    listProps: {
      height: '500px'
    },
    showPager: true,
    multiple: true,
    remoteSearch: true,
    showSearch: true
  }

  watch(
    () => modelValue.value,
    () => {
      console.log(modelValue.value, 'modelValue.value')
    },
    { deep: true }
  )
</script>

示例源码

点击可以查看 右侧演示页面的源码

API

Props

参数说明类型默认值可选值
apiapi请求方法Function--
immediate是否初始化加载数据Booleantruefalse
loading是否加载中Booleanfalsetrue
afterFetch请求后的回调Function--
beforeFetch请求前的回调Function--
params请求携带的参数Object{}-
labelFieldlabel 字段String--
valueFieldvalue 字段String--
currentPageField当前页数 fieldStringpageIndex-
pageSizeField当前页的大小 fieldStringpageSize-
totalField总数 fieldStringdata.pagination.total-
dataField数据的 fieldStringdata.list-
showSearch是否开启搜索Booleantruefalse
searchField搜索的 fieldstring--
listPropssu-listprops配置SuListProps--
searchPropssu-searchprops配置SuListProps--
showPager是否开启分页SuListProps--
pagerConfig分页设置SuApiListPageConfigProps{ currentPage: 1, pageSize: 50, total: 0 }-
modelValue当前选中的值String|Number|Array--
multiple是否多选Booleanfalsetrue
showLoadmore是否显示加载更多状态Booleanfalsetrue
loadmorePropssu-loadmore的propsBooleanfalsetrue
remoteSearch是否远程搜索/本地搜索, 默认false本地搜索, true 远程搜索Booleanfalsetrue
list数据Array[]-

Emit

事件名说明
search搜索事件
scroll滚动事件
fetch-success加载数据成功
fetch-error加载数据失败
item-clickitem点击事件
scrolltolower滚动到底部事件
update:modelValue双向数绑定

Events

事件名说明类型
setDataSource设置data数据(data: SuUni.Recordable[]) => void
reload重新获取数据(pramas?: SuApiListProps['params']) => void
getDataSource获取data数据() => SuUni.Recordable[]
setPagination设置分页(info: Partial<SuApiListPageConfigProps>) => void
getPagination获取分页() => SuApiListPageConfigProps
getLoading获取加载状态boolean
setLoading获取loading(bool: boolean) => void

Released under the MIT License.

Released under the MIT License.