uView IndexList 索引列表

通过折叠面板收纳内容区域

#平台差异说明

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"> <u-index-anchor :text="indexList[index]"></u-index-anchor> <u-index-item> <u-index-anchor :text="indexList[index]"></u-index-anchor> <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>
相关推荐
z***I39426 分钟前
JavaScript爬虫应用案例
开发语言·javascript·爬虫
d***93536 分钟前
Webpack、Vite区别知多少?
前端·webpack·node.js
清风徐来QCQ43 分钟前
javaScript(map,ref,?,forEach,watch)
java·前端·javascript
q***73551 小时前
windows配置永久路由
android·前端·后端
前端布鲁伊1 小时前
再来聊聊,Vue3 项目中 Pinia 的替代方案
前端·面试
星月前端1 小时前
[特殊字符]面向 ArcGIS for JavaScript(4.x)开发者的「坐标系统(CRS / 投影)」全面解读
开发语言·javascript·arcgis
星空的资源小屋2 小时前
永久删除文件利器:Permadelete
java·javascript·人工智能
柒昀2 小时前
Vue.js
前端·javascript·vue.js
2201_757830872 小时前
Stream的终结方法
java·服务器·前端
进阶的鱼2 小时前
React+ts+vite脚手架搭建(五)【登录篇】
前端·javascript