vant框架picker选择器形式列表,以及封装

以下是VantUi插件中常用的各种选择器下拉列表,项目中遇到,就在这里总结以下,下面是代码

.select-wrapper {

  width: 100%;

  height:1000px;

  overflow-y: scroll;

  background: #fff;

}

.van-dropdown-menu__title::after {

  position: absolute;

  top: 50%;

  right: -67px !important;

  margin-top: -5px;

  border: 3px solid;

  border-color: transparent transparent currentColor currentColor;

  -webkit-transform: rotate(-45deg);

  transform: rotate(-45deg);

  opacity: 0.8;

  content: "";

}

.title {

  background: #007aff!important;

  opacity: .5;

  color: #fff;

}

.he-44 {

  height: 44px;

  line-height: 44px;

}

.cancel {

  color: #007aff!important;

}

.tip {

  color: black;

}

.confirm {

  color: #007aff!important;

}

你可能感兴趣的:(vant框架picker选择器形式列表,以及封装)