微信小程序时间选择器的实现

样式:

 wxml

<view class="pop2">
    <view class="pop2_title">
      <text style="color:red;">*</text>
      <text>生效日期</text>
    </view>
    <view class="center">
      <picker mode="date" value="{{startdate}}" bindchange="bindDateChange" name="effective_date" class="picker">
        <view class="pickerall">
          <view class="pop2_input">
            <text class="{{startdate=='开始日期'?'text-style1':'text-style2'}}">{{startdate}}</text>
          </view>
        </view>
      </picker>
    </view>
  </view>

wxss

.pop2 {
  background-color: white;
  width: 100%;
  padding-top: 5%;
  padding-bottom: 5%;
  margin-bottom: 5%;
}
.pop2_title {
  margin-left: 5%;
  margin-bottom: 3%;
}
.pop2_input{
  padding:2% 0 2% 5%;
}
.pickerall{
  display: flex;
  flex-direction: column;
  width: 100%;
}
.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.picker {
  width: 85%;
  border: 1px solid #EDEDEE;
  padding-top: 5%;
  padding-bottom: 5%;
  margin-bottom: 3%;
}

js

Page({
  data: {
    startdate: '请选择', //默认初始值
  },
   //选择日期
   bindDateChange(e) {
    let that = this;
    console.log(e.detail.value)
    that.setData({
      startdate: e.detail.value, //默认开始日期
    })
  },
})

  • 2
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值