vant area组件简单修改

可能需要的数据 省市数据

html

 <div class="area-box" :class="showArea?'show':''">
     <van-area title="标题" :area-list="areaList" value="110101" @confirm="confirm" @cancel="cancle" />
</div>

style

.area-box {
  position: fixed;
  bottom: 0;
  width: 100%;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  /* ops */
}

.area-box.show {
  transform: translateY(0);
}
posted @ 2020-06-22 16:49  阿臻  阅读(804)  评论(0编辑  收藏  举报