微信小程序+Vant-自定义选择器组件(单选带筛选

实现效果

  • 筛选是filter,搜索框如有显隐需要,需自行添加配置显隐参数
  • 弹出层高度样式需要手动修改,需自行添加配置高度参数
  • .json文件配置"component": true,

实现代码

组件代码
html 复制代码
<van-popup show="{{ show }}" position="bottom" round custom-style="height:100%;z-index:2000;" class="relative">
  <view class="pd-30 mb-30 fixed pickerTop w100 bg-white">
    <view class="flex">
      <view class="gray-3 fs14" bindtap="close">取消</view>
      <view class="pickerText bold">{{title}}</view>
      <view class="fs14" style="color: {{colorStyle}};" bindtap="getData">确认</view>
    </view>
    <view class="pd-20 mt-40 bg border radius-10 flex_l">
      <image src="../../../assets/img/search1.png" style="width: 40rpx;height: 40rpx;" mode="" class="mr-20" />
      <input bindinput="getSearch" placeholder="请输入">
      </input>
    </view>
  </view>
  <view class="plr-30 mulPicker">
    <van-checkbox-group value="{{ value }}" bind:change="onChange">
      <van-cell-group>
        <van-cell wx:for="{{ dataList }}" wx:key="index" value-class="value-class" clickable data-index="{{ index }}" bind:click="toggle">
          <van-checkbox catch:tap="noop" class="checkboxes-{{ index }}" checked-color="{{colorStyle}}" name="{{ item.dictValue * 1 }}">
            {{item.dictLabel}}
          </van-checkbox>
        </van-cell>
      </van-cell-group>
    </van-checkbox-group>
  </view>
</van-popup>
js 复制代码
// pages/menu/components/pickDateTime.js
Component({
  options: {
    addGlobalClass: true, // 可允许外部修改样式
  },
  /**
   * 组件的属性列表
   */
  properties: {
    show: Boolean,// 是否显示弹出层
    title: String, // 弹出层标题
    columns: {
      type: Array,
      value: [],
      observer: function () {
        this.handleData();
      }
    }, // 选择的数据
    value: Array,  // 选中的值
    colorStyle: {
      type: String,
      value: "#3772E9"
    },
    flag: String, // 1-服务对象 2-位置
  },
  /**
   * 组件的初始数据
   */
  data: {
    selectItem: null,
    dataList: [],
  },
  /**
   * 组件的方法列表
   */
  methods: {
    handleData() {
      this.setData({
        dataList: this.data.columns
      })
    },
    getData() {
      this.triggerEvent("getData", this.data.selectItem);
      this.close();
    },
    onChange(e) {
      console.log(e.detail);
      let item
      let list
      if (e.detail.length > 0) {
        if (e.detail.length > 1) {
          list = e.detail.splice(1, 1)
        } else {
          list = e.detail
        }
        item = this.properties.columns.find(r => r.dictValue == list[0])
      } else {
        item = null
        list = []
      }
      this.setData({ value: list, selectItem: item });
    },
    close() {
      console.log("pick");
      this.triggerEvent("close");
    },
    toggle(event) {
      const { index } = event.currentTarget.dataset;
      const checkbox = this.selectComponent(`.checkboxes-${index}`);
      checkbox.toggle();
    },
    noop() { },
    getSearch(event) {
      let { value, cursor, keyCode } = event.detail
      //keyCode 为键值,处理函数可以直接 return 一个字符串,将替换输入框的内容。
      /* wx.http('yourHttpUrl', {
        name: value
      }, 'post').then(data => {
        console.log('getSearch');
        let list = data.map(r => {
          return {
            ...r,
            dictValue: r.olderId,
            dictLabel: r.olderName
          }
        })
        this.setData({
          columns: list
        })
      }) */
      let list = this.data.columns.filter(item => item.nodeName?.includes(value))
      this.setData({
        dataList: value ? list : this.data.columns
      })
    }
  },
})
css 复制代码
/* pages/menu/components/pickDateTime.wxss */
.pickerText {
  font-size: 16px;
}

.pickerTop {
  border-radius: 50rpx 50rpx 0 0;
  z-index: 2000;
}

.mulPicker {
  margin-top: 240rpx;
}

.value-class {
  flex: none !important;
}
页面使用
html 复制代码
<w-picker show="{{show}}" columns="{{columns}}" title="{{title}}" bindgetData="getData" colorStyle="{{colorStyle}}" bindclose="close" />
js 复制代码
  getData(e) {
    console.log(e.detail);
    this.close();
  },
  close() {
    this.setData({
      show: false,
    })
  },
相关推荐
梦梦代码精18 分钟前
《全栈开源智能体:终结企业AI拼图时代》
人工智能·后端·深度学习·小程序·前端框架·开源·语音识别
米饭同学i5 小时前
微信小程序实现动态环形进度条组件
前端·微信小程序
说私域8 小时前
基于AI智能名片链动2+1模式服务预约小程序的旅拍消费需求激发路径研究
大数据·人工智能·小程序
小白学大数据9 小时前
某程旅行小程序爬虫技术解析与实战案例
爬虫·小程序
小小王app小程序开发10 小时前
家政服务小程序特殊玩法开发全解析:技术实现+架构支撑+合规落地
小程序·架构
游戏开发爱好者810 小时前
2025年iOS应用上架App Store全指南,开发者必看
android·ios·小程序·https·uni-app·iphone·webview
集成显卡10 小时前
CVE检索工具 | 开发一款检索漏洞信息的小程序
网络安全·小程序·uni-app·cve·漏洞信息
luffy545911 小时前
微信小程序实现图片横向滑动的示例
微信小程序·小程序
万岳软件开发小城11 小时前
直播电商系统源码搭建直播带货APP/小程序的完整流程
小程序·php·软件开发·直播带货系统源码·直播电商app开发
棒棒的唐11 小时前
使用微信小程序版Vant的upload组件上传身份证的样式自定义方案(Css魔改版)
css·微信小程序·小程序