Vueプロジェクトの都市選択ページ-リストレイアウト(8-3)

リストのレイアウト

  1. プロジェクトブランチの都市リストを作成する
  2. List.vueを作成します
    ここに画像の説明を挿入
<template>
  <div class="list">
    <div class="area">
      <div class="title border-topbottom">当前城市</div>
      <div class="button-list">
        <div class="button-wrapper">
          <div class="button">北京</div>
        </div>
      </div>
    </div>
    <div class="area">
      <div class="title border-topbottom">热门城市</div>
      <div class="button-list">
        <div class="button-wrapper">
          <div class="button">北京</div>
        </div>
        <div class="button-wrapper">
          <div class="button">北京</div>
        </div>
        <div class="button-wrapper">
          <div class="button">北京</div>
        </div>
      </div>
    </div>
    <div class="area">
      <div class="title border-topbottom">A</div>
      <div class="item-list">
        <div class="item border-bottom">阿拉尔</div>
        <div class="item border-bottom">阿拉尔</div>
        <div class="item border-bottom">阿拉尔</div>
        <div class="item border-bottom">阿拉尔</div>
        <div class="item border-bottom">阿拉尔</div>
        <div class="item border-bottom">阿拉尔</div>
      </div>
    </div>
  </div>
</template>

<script>
export default {
     
     
  name: 'CityList'
}
</script>

<style lang="stylus" scoped>
  @import '~styles/varibles.styl'
  .border-topbottom
    &:before
      border-color: #ccc
    &:after
      border-color: #ccc
  .border-bottom
    &:before
      border-color: #ccc
  .list
    overflow: hidden
    position: absolute
    top: 1.58rem
    left: 0
    right: 0
    bottom: 0
    .title
      line-height: .4rem
      background: #eee
      padding-left: .2rem
      color: #666
      font-size: .26rem
    .button-list
      overflow: hidden
      padding: .1rem .6rem .1rem .1rem
      .button-wrapper
        float: left
        width: 33.33%
      .button
        margin: .1rem
        padding: .1rem 0
        text-align: center
        border: .02rem solid #ccc
        border-radius: .06rem
    .item-list
      .item
        line-height: .54rem
        padding-left: .2rem
</style>


  1. ここに画像の説明を挿入
    レンダリングを導入、登録、使用します。
    ここに画像の説明を挿入
    デメリットはプルダウンできません。

cnpm install better-scroll --save

ここに画像の説明を挿入

  1. プラグインを使用する
    ここに画像の説明を挿入
    ここに画像の説明を挿入
  2. 右側の1つのコンポーネント
    ここに画像の説明を挿入
  3. コンポーネントを作成する
    ここに画像の説明を挿入
  4. インポート、登録、使用
    ここに画像の説明を挿入

おすすめ

転載: blog.csdn.net/weixin_45647118/article/details/114273873
おすすめ