微信小程序下拉组件

本文介绍如何在微信小程序中实现下拉选择组件。通过分析`select.wxml`、`select.wxss`和`select.js`文件的内容,了解组件的结构、样式和交互逻辑。在`index.json`中引入该组件,最终展示了一个功能完善的下拉选择效果。
摘要由CSDN通过智能技术生成

select.wxml

<view class="select-box">
  <view class="select-current" catchtap="openClose">
    <text class="current-name">{
  {current.name}}</text>
  </view>
  <view class="option-list" wx:if="{
  {isShow}}" catchtap="optionTap">
    <!-- <text class="option"
      data-id="{
  {defaultOption.id}}"
      data-name="{
  {defaultOption.name}}">{
  {defaultOption.name}}
    </text> -->
    <text class="option"
      wx:for="{
  {result}}"
      wx:key="{
  {item.id}}"
      data-id="{
  {item.id}}"
      data-name="{
  {item.name}}">{
  {item.name}}
    </text>
  </view>
</view>

select.wxss

.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值