zoukankan      html  css  js  c++  java
  • 入坑微信小程序必经之路(四)时间组件

       <view class="pro-section">
        <view class="selectTime">
         <text style="float:left;margin-left:-30rpx;">申请时间:</text>
         <view class="section" style="float:left;30%;">
          <picker mode="time" value="{{time}}" start="09:00" end="21:00" bindchange="bindTimeChange" id='startTime'>
          <!-- 在js中判断所选picker的id为startTime时,将value赋值给startTime,放在input内 -->
           <view class="picker" style="margin-top:-2rpx;">
             <input placeholder='开始时间' value='{{ApplyForStartTime}}' name="startTime"></input>
           </view>
          </picker>
         </view>
       </view>
        </view>
    

      

    data:{
    ApplyForStartTime:'',
    },
     bindTimeChange: function(e){
        if (e.currentTarget.id=="startTime") {
         this.setData({ApplyForStartTime:e.detail.value});
        }
       },
    

      

    const util = require("../../../utils/dateTimePicker");
    

      下方为 :dateTimePicker.js

    function withData(param){
      return param < 10 ? '0' + param : '' + param;
    }
    function getLoopArray(start,end){
      var start = start || 0;
      var end = end || 1;
      var array = [];
      for (var i = start; i <= end; i++) {
        array.push(withData(i));
      }
      return array;
    }
    function getMonthDay(year,month){
      var flag = year % 400 == 0 || (year % 4 == 0 && year % 100 != 0), array = null;
    
      switch (month) {
        case '01':
        case '03':
        case '05':
        case '07':
        case '08':
        case '10':
        case '12':
          array = getLoopArray(1, 31)
          break;
        case '04':
        case '06':
        case '09':
        case '11':
          array = getLoopArray(1, 30)
          break;
        case '02':
          array = flag ? getLoopArray(1, 29) : getLoopArray(1, 28)
          break;
        default:
          array = '月份格式不正确,请重新输入!'
      }
      return array;
    }
    function getNewDateArry(){
      // 当前时间的处理
      var newDate = new Date();
      var year = withData(newDate.getFullYear()),
          mont = withData(newDate.getMonth() + 1),
          date = withData(newDate.getDate()),
          hour = withData(newDate.getHours()),
          minu = withData(newDate.getMinutes()),
          seco = withData(newDate.getSeconds());
    
      return [year, mont, date, hour, minu, seco];
    }
    function dateTimePicker(startYear,endYear,date) {
      // 返回默认显示的数组和联动数组的声明
      var dateTime = [], dateTimeArray = [[],[],[],[],[],[]];
      var start = startYear || 1978;
      var end = endYear || 2100;
      // 默认开始显示数据
      var defaultDate = date ? [...date.split(' ')[0].split('-'), ...date.split(' ')[1].split(':')] : getNewDateArry();
      // 处理联动列表数据
      /*年月日 时分秒*/ 
      dateTimeArray[0] = getLoopArray(start,end);
      dateTimeArray[1] = getLoopArray(1, 12);
      dateTimeArray[2] = getMonthDay(defaultDate[0], defaultDate[1]);
      dateTimeArray[3] = getLoopArray(0, 23);
      dateTimeArray[4] = getLoopArray(0, 59);
      dateTimeArray[5] = getLoopArray(0, 59);
    
      dateTimeArray.forEach((current,index) => {
        dateTime.push(current.indexOf(defaultDate[index]));
      });
    
      return {
        dateTimeArray: dateTimeArray,
        dateTime: dateTime
      }
    }
    module.exports = {
      dateTimePicker: dateTimePicker,
      getMonthDay: getMonthDay
    }
    

      

  • 相关阅读:
    承接小项目嵌入式linux相关开发、开源飞控相关开发、qt相关开发、无人机地面站相关开发
    转载 ardupilot 学习
    PX4 IO板启动流程
    PX4 FMU启动流程 1.nsh
    PX4 FMU启动流程 2. 一、 nsh_newconsole
    PX4 FMU启动流程 2. 二、 nsh_initscript
    Pixhawk源码快速阅读 02_进程间通信
    PX4 FMU [5] Loop
    Oracle 执行JOB程序自动存储数据
    C# 禁止非数字输入TextBoox
  • 原文地址:https://www.cnblogs.com/jstblog/p/15226762.html
Copyright © 2011-2022 走看看