时间:2021-05-18
本文为大家分享了微信小程序实现MUI索引列表的具体代码,供大家参考,具体内容如下
效果展示图
实现的原理
WXML
<view class="right-nav"> <view bindtap="getCurrentCode" class="{{chooseIndex == index ? '.city-list-active' : ''}}" wx:for="{{cityList}}" style="height:{{codeHeight}}px" data-code="{{item.code}}"> {{item.code}} </view></view><view class="city-layer {{isShowLayer ? '' : 'layer-hide'}}"> {[code]}</view><view class="current-choose-city">当前选择机场:{{chooseCity}}</view><scroll-view class="city-scroll" scroll-y="true" style="height:{{cityHeight}}px" bindscroll="scroll" scroll-top="{{scrollTop}}"> <view class="city-box" wx:for="{{cityList}}" wx:key="{{item.code}}"> <view class="city-code">{{item.code}}</view> <view class="city-list" wx:for="{{item.cityList}}" wx:for-item="city" bindtap="getChooseCity" data-city="{{city}}"> {{city}} </view> </view></scroll-view>WXSS
.current-choose-city{ position: fixed; width: 100%; height: 50px; line-height: 50px; padding: 0 10px; top: 0; left: 0; background-color: #fff; z-index: 10;}.right-nav{ width: 30px; color: #888; text-align: center; position: fixed; bottom: 0; right: 0; background-color: rgb(200, 200, 200); z-index: 9;}.city-scroll{padding-top: 50px;}.city-code{ background-color: #f7f7f7;}.city-list,.city-code{ height: 39px; line-height: 40px; padding: 0 30px 0 10px; overflow: hidden; border-bottom: 1px solid #c8c7cc;}.city-list-active{color:#007aff;}.city-layer{ width: 70px; height: 70px; line-height: 70px; text-align: center; border-radius: 50%; color: #fff; background-color: rgba(0, 0, 0, .7); position: fixed; top: calc(50% - 35px); left:calc(50% - 35px); z-index: 11;}.layer-hide{display: none;}JS
var city_list = require('./city.js');Page({ data: { cityList: city_list.city, chooseCity: '您还未选择机场!', isShowLayer: false, chooseIndex: 0, len: [], code: null, codeHeight: null, cityHeight:null, scrollTop: 0 }, onLoad (options) { var windowHeight = wx.getSystemInfoSync().windowHeight; var arr = []; this.data.cityList.forEach(current => arr.push(current.cityList.length + 1)); this.setData({ codeHeight: (windowHeight - 50) / this.data.cityList.length, cityHeight: windowHeight - 50, len: arr }); }, getCurrentCode(e){ var index = 0, sum = 0,self = this; for (var i = 0; i < this.data.cityList.length;i++){ if (this.data.cityList[i].code === e.target.dataset.code){ index = i break; } } for (var j = 0; j < index; j++) { sum += this.data.len[j]; } this.setData({ code: e.target.dataset.code, scrollTop: sum * 40, chooseIndex: index, isShowLayer: true }); setTimeout(() => { self.setData({ isShowLayer: false }) },500); }, getChooseCity(e){ this.setData({ chooseCity: e.target.dataset.city }); }})总结:
在onLoad函数中设置左侧的展示高度和右侧导航每一个字母所在盒子的高度;
getCurrentCode函数是获取点击字母的index,然后进行提示以及500ms后关闭提示;
getChooseCity函数是获取选择的机场,对chooseCity进行赋值。
代码简化:
var index = 0;for (var i = 0; i < this.data.cityList.length;i++){ if (this.data.cityList[i].code === e.target.dataset.code){ index = i break; }}简化为:
添加data-index="{{index}}",减少循环的消耗:
<view bindtap="getCurrentCode" class="{{chooseIndex == index ? '.city-list-active' : ''}}" wx:for="{{cityList}}" style="height:{{codeHeight}}px" data-code="{{item.code}}" data-index="{{index}}">
var index = e.target.dataset.index;
DEMO下载
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
微信小程序开发之好友列表字母列表跳转对应位置前言:在小程序里实现微信好友列表点击右侧字母列表跳转对应位置效果。写了个demo,核心部分很简单,所以没多少注释,如
当地时间5月17日,微信支付与荷兰阿姆斯特丹史基浦机场联合发布欧洲首个微信支付智慧旗舰机场。通过小程序、微信支付等微信全平台生态能力,史基浦机场实现数字化升级,
小程序APP如何快速运营盈利,实现转化小程序则背靠微信巨大流量,目前已开发附近小程序、主动搜索小程序,微信好友聊天和微信群扫码识别,公众号菜单关联、聊天列表置顶
12月19日,希腊雅典国际机场发布微信小程序,专门为到访的中国游客提供快捷便利的机场服务指南。通过微信扫描二维码开启小程序后,旅客可了解机场内餐饮、购物、退税、
微信小程序实现给循环列表添加点击样式实例微信小程序有个属性hover-class='active',是指当点击列表元素时当按下鼠标左键会显示active样式,但