• 微信小程序开发之日期组件


    一: wxml:

        <view class="navbarlift" style="background:#ffffff;padding:20rpx">
          <picker mode="date" value="{{date}}" start="2010-09-01" end="2020-09-01" bindchange="bindDateChange">
            <view class="picker">
              {{date}}
              <image style="height:20rpx;20rpx" src="pic/日期.png"></image>
            </view>
          </picker>
        </view>

    wcss:

    .picker{
      float:left;
      margin-left: -10rpx;
      margin-top: -20rpx;
      margin-bottom: -20rpx;

    }

    .navbarlift
    {
      float:left;
      margin-left: 20rpx;
      margin-top: 20rpx;
      border:1px solid rgba(0, 0, 0, 0.2);
    }

    js:

      //  点击日期组件确定事件  
      bindDateChange: function (e) {
        var that = this;
        this.setData({
          date: e.detail.value,
        });}

    ui:

    二:wxml

      <view class="navbarlift" style="background:#ffffff;padding:20rpx;margin-right:20rpx;">
            <picker mode="date" value="{{date}}" start="2010-09-01" end="2020-09-01" bindchange="bindDateChange"style="margin-top:-8rpx">
              <view class="picker" style="">
              {{date}}
              <image src="../../../images/日期.png" style="40rpx;height:40rpx;float:right"></image>
              </view>
            </picker>
            
          </view>

    wcss:

    /*日期选择组件样式*/
    .picker{
      margin-left: 250rpx;
      margin-bottom: -12rpx;
      align-items: center;
    }
    .navbarlift
    {
      margin-left: 20rpx;
      margin-top: 20rpx;
      border:1px solid rgba(255, 255, 0, 0.2);
    }

    js:

      //  点击日期组件确定事件  
      bindDateChange: function (e) {
        var that = this;
        that.setData({
          date: e.detail.value,
          currentTab: 4
        });}

    UI:

  • 相关阅读:
    swift-教你如何实现导航上的UISearchController动画效果。
    swift-自动计算字符串的宽高
    值得收藏--GitHub Top 20 开源项目
    swift-通知的基本使用
    swift-UITableView的基本使用
    绝对好用的浏览器json解析网址
    swift-正则验证手机号码
    swift-计算字符串长度
    swift-导航栏添加自定义返回按钮
    swift-UITextfield控件的基本属性设置
  • 原文地址:https://www.cnblogs.com/min-min-min/p/7452842.html
Copyright © 2020-2023  润新知