uView IndexList 索引列表
2024-01-07 17:39:11
通过折叠面板收纳内容区域
#平台差异说明
App(vue) | App(nvue) | H5 | 小程序 |
---|---|---|---|
√ | √ | √ | √ |
#基本使用
外层包裹一个index-list
组件,锚点通过index-anchor
组件传入,自定义列表内容通过index-item
嵌套使用
- nvue需要将
index-anchor
写在index-item
的外部 - 非nvue需要将
index-anchor
嵌套在index-item
的内部 - 可以通过
index-list
参数自定义索引字符列表 - 需要监听页面的onPageScroll事件,将当前滚动条高度传入
index-list
组件
<template>
<u-index-list :index-list="indexList">
<template v-for="(item, index) in itemArr">
<!-- #ifdef APP-NVUE -->
<u-index-anchor :text="indexList[index]"></u-index-anchor>
<!-- #endif -->
<u-index-item>
<!-- #ifndef APP-NVUE -->
<u-index-anchor :text="indexList[index]"></u-index-anchor>
<!-- #endif -->
<view class="list-cell" v-for="(cell, index) in item">
{{cell}}
</view>
</u-index-item>
</template>
</u-index-list>
</template>
<script>
export default {
data() {
return {
indexList: ["A", "B", "C"],
itemArr: [
['列表A1','列表A2','列表A3'],
['列表B1','列表B2','列表B3'],
['列表C1','列表C2','列表C3']
]
}
}
}
</script>
<style lang="scss" scoped>
.list-cell {
display: flex;
box-sizing: border-box;
width: 100%;
padding: 10px 24rpx;
overflow: hidden;
color: #323233;
font-size: 14px;
line-height: 24px;
background-color: #fff;
}
</style>
文章来源:https://blog.csdn.net/m0_72196169/article/details/135430696
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!