위 챗 애플 릿 전국 공항 색인 목록 구현

본 고 는 위 챗 애플 릿 이 MUI 색인 목록 을 실현 하 는 구체 적 인 코드 를 공유 하 였 으 며,참고 하 시기 바 랍 니 다.구체 적 인 내용 은 다음 과 같 습 니 다.
효과 전시 도
这里写图片描述
실현 의 원리
4.567917.'현재 공항 선택'과 오른쪽 네 비게 이 션 바 는 고정 적 인 포 지 셔 닝 을 사용한다
  • 왼쪽 전시 창의 스크롤 은 scroll-view 구성 요 소 를 사용 합 니 다
  • 선택 한 알파벳 힌트 는 자신의 WXSS 스타일 로 제작 되 었 습 니 다.
  • 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 를 가 져 온 다음 에 알림 과 500 ms 를 한 후에 알림 을 닫 습 니 다.
    getChoose City 함 수 는 선택 한 공항 을 가 져 와 choose City 에 값 을 부여 합 니 다.
    코드 간소화:
    
    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}"를 추가 하여 순환 소 모 를 줄 입 니 다.

    var index = e.target.dataset.index;
    DEMO 다운로드 하 다.
    이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

    좋은 웹페이지 즐겨찾기