IndexedList 索引列表

用于展示索引列表,组件名:uni-indexed-list,代码块: uIndexedList。

使用方式:

script 中引用组件

  1. import uniIndexedList from "@/components/uni-indexed-list/uni-indexed-list.vue"
  2. export default {
  3. components: {uniIndexedList}
  4. }

template 中使用组件

  1. <uni-indexed-list :options="list" :showSelect="false" @click="bindClick"></uni-indexed-list>

IndexedList 属性说明:

属性名类型默认值说明
optionsObject-索引列表需要的数据对象
showSelectBoolean-展示模式 ,true 为展示默认,false 为选择模式,默认为 false

IndexedList 事件说明:

事件名说明
click点击列表事件 ,返回当前选择项的事件对象

options 数据格式说明

  1. [{
  2. "letter": "A",
  3. "data": [
  4. "阿克苏机场",
  5. "阿拉山口机场",
  6. "阿勒泰机场",
  7. "阿里昆莎机场",
  8. "安庆天柱山机场",
  9. "澳门国际机场"
  10. ]
  11. }, {
  12. "letter": "B",
  13. "data": [
  14. "保山机场",
  15. "包头机场",
  16. "北海福成机场",
  17. "北京南苑机场",
  18. "北京首都国际机场"
  19. ]
  20. }]