微信小程序日期插件封裝-年月日時(shí)粘室,只可選當(dāng)前時(shí)間之后時(shí)間

微信小程序日期插件封裝-年月日時(shí),只可選當(dāng)前時(shí)間之后時(shí)間

本插件在他人基礎(chǔ)上修改

目錄:
image.png

date-picker.js:

// components/pickerYMDHM/pickerYMDHM.js
Component({
  /**
   * 組件的屬性列表
   */
  properties: {
    placeholder: {
      type: null,    
      value: null
    },
    value: {
      type: null,    
      value: null
    }
  },

  /**
   * 組件的初始數(shù)據(jù)
   */
  data: {
    pickerArray: [],
    select: [0, 0, 0, 0],
    pickerChanged: [0,0,0,0]
  },

  /**
   * 組件的方法列表
   */
  methods: {
    onInit() {
      const date = new Date()
      const year = date.getFullYear()
      const month = date.getMonth() + 1
      const day = date.getDate()
      const horus = date.getHours()
      const yearArr = this.getLoopArray(year, year + 100, '年')
      const monthArr = this.getLoopArray(month, 12, '月')
      const dayArr = this.getMonthDay(year, month,  day)
      const hoursArr = this.getLoopArray(horus, 23, '時(shí)')
      this.setData({
        pickerArray: [yearArr, monthArr, dayArr, hoursArr]
      })
      
      

    },

    withData(param){
       return param < 10 ? '0' + param : '' + param;
    },

    getMonthDay(year, startMonth, startDay) {
      startMonth = this.withData(startMonth)
      startDay = this.withData(startDay)

      let flag = year % 400 == 0 || (year % 4 == 0 && year % 100 != 0), array = [];
      switch (startMonth) {
        case '01':
        case '03':
        case '05':
        case '07':
        case '08':
        case '10':
        case '12':
         array = this.getLoopArray(startDay, 31, '日')
         break;
        case '04':
        case '06':
        case '09':
        case '11':
         array = this.getLoopArray(startDay, 30, '日')
         break;
        case '02':
         array = flag ? this.getLoopArray(startDay, 29, '日') : this.getLoopArray(startDay, 28, '日')
         break;
        default:
         array = this.getLoopArray(1, 31, '日')
        }
        return array;
    },

    getLoopArray(start, end, unit) {
      start = Number(start)
      end = Number(end)
      const arr = []
      for(let i = start; i <= end; i++) {
        arr.push({
          id: i < 10 ? '0' + i  : '' + i , name: (i < 0 ? '0' + i  : '' + i)+ unit
        })
      }
      return arr
    },

    createdPicker() {
      const date = new Date()
      const currentYear = date.getFullYear()
      const currentMonth = date.getMonth() + 1
      const currentDay = date.getDate()
      const currentHorus = date.getHours()
      const pickerChanged = this.data.pickerChanged
      let [yearArr, monthArr, dayArr, hoursArr] = this.data.pickerArray
      const changedYear = yearArr[pickerChanged[0]]
      const changedMonth = monthArr[pickerChanged[1]]
      const changedDay = dayArr[pickerChanged[2]]
      const changedHours = hoursArr[pickerChanged[3]]
      if (pickerChanged[0] != 0) {
        monthArr = this.getLoopArray(1, 12, '月')
        dayArr = this.getMonthDay(changedYear, changedMonth, 0)
        hoursArr = this.getLoopArray(1, 23, '時(shí)')
      } else {
        monthArr = this.getLoopArray(currentMonth, 12, '月')
        if (pickerChanged[1] != 0) {
          dayArr = this.getMonthDay(changedYear, changedMonth, 0)
          hoursArr = this.getLoopArray(1, 23, '時(shí)')
        } else {
          dayArr = this.getMonthDay(currentYear, currentMonth, currentDay)
          if (pickerChanged[2] != 0) {
            hoursArr = this.getLoopArray(1, 23, '時(shí)')
          } else {
            hoursArr = this.getLoopArray(currentHorus, 23, '時(shí)')
          }
        }
      }
      this.setData({
        pickerArray: [yearArr, monthArr, dayArr, hoursArr],
      })

    },

    
    pickerColumnChange(e) {
      const column = e.detail.column, value = e.detail.value
      const pickerArray = this.data.pickerArray
      const pickerChanged = this.data.pickerChanged
      pickerChanged[column] = value
      if(column == 0) {
        pickerChanged[1] = 0
        pickerChanged[2] = 0
        pickerChanged[3] = 0
      }

      if (column == 1) {
        pickerChanged[2] = 0
        pickerChanged[3] = 0
      }

      if (column == 2) {
        pickerChanged[3] = 0
      }

      this.setData({
        pickerChanged: pickerChanged
      })
      this.createdPicker()
      
    },

    pickerChange(e) {
      const selectedIndex = e.detail.value
      const pickerArray = this.data.pickerArray
      console.log(pickerArray, selectedIndex)
      const dateStr = pickerArray[0][selectedIndex[0]].id + '-' + pickerArray[1][selectedIndex[1]].id + '-' + pickerArray[2][selectedIndex[2]].id + ' ' + pickerArray[3][selectedIndex[3]].id
      this.triggerEvent('onPickerChange', dateStr);
      this.setData({
        value: dateStr
      })
    }
   
  },
  ready() {
    this.onInit();
  },
  lifetimes: {
    ready() {
      // console.log('進(jìn)入ready節(jié)點(diǎn)=', this.data.date);
      this.onInit();
    }
  }
})

date-picker.json

{
  "component": true,
  "usingComponents": {}
}

date-picker.wxml

<!--components/pickerYMDHM/pickerYMDHM.wxml-->
<view class="picker-class">
  <picker style="width: 100%;" disabled="{{disabled}}" mode="multiSelector" bindchange="pickerChange" bindcolumnchange="pickerColumnChange" bindcancel ="pickerCancel" range="{{pickerArray}}" range-key="{{'name'}}">
    <view class="{{value ? 'value-style' : 'placeholder'}}">
      {{value ? value : placeholder}}
    </view>
  </picker>
</view>

date-picker.wxss

.picker-class {
  width: 300rpx;
  height: 100%;
  display: flex;
  align-items: center;
}

picker {
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
}

.placeholder {
  color: #999FB1;
  width: 300rpx;
  height: 60rpx;
  line-height: 60rpx;
}

.value-style {
  color: #131936;
  width: 300rpx;
  height: 60rpx;
  line-height: 60rpx;
}

使用方法:

目錄:
image.png

commodity.json

{
  "navigationBarTitleText": "商品管理",
  "usingComponents": {
    "date-picker": "/components/date-picker/date-picker"
  }
}

commodity.wxml

<view class="content-item">
        <view class="item-title">售賣截至:<text class="require">*</text></view>
        <view class="item-value">
          <view class="input-value">
            <date-picker placeholder = "{{placeholder}}" value="{{updataForm.stop_sale_date}}" class="input-value" bind:onPickerChange="onPickerChange" class="">
            
            </date-picker>
          </view>
      </view>

commodity.js

// pages/commodity/commodity.js
Page({
  data: {
    placeholder:'請(qǐng)選擇時(shí)間',
    updataForm: {}
  },

  onPickerChange (e) {
    const date = e.detail
    this.data.updataForm.stop_sale_date = date
  },

  

})
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末卜范,一起剝皮案震驚了整個(gè)濱河市衔统,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌海雪,老刑警劉巖锦爵,帶你破解...
    沈念sama閱讀 206,214評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異喳魏,居然都是意外死亡棉浸,警方通過查閱死者的電腦和手機(jī)怀薛,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門刺彩,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人,你說我怎么就攤上這事创倔∥撕Γ” “怎么了?”我有些...
    開封第一講書人閱讀 152,543評(píng)論 0 341
  • 文/不壞的土叔 我叫張陵畦攘,是天一觀的道長(zhǎng)霸妹。 經(jīng)常有香客問我,道長(zhǎng)知押,這世上最難降的妖魔是什么叹螟? 我笑而不...
    開封第一講書人閱讀 55,221評(píng)論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮台盯,結(jié)果婚禮上罢绽,老公的妹妹穿的比我還像新娘。我一直安慰自己静盅,他們只是感情好良价,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,224評(píng)論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著蒿叠,像睡著了一般明垢。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上市咽,一...
    開封第一講書人閱讀 49,007評(píng)論 1 284
  • 那天痊银,我揣著相機(jī)與錄音,去河邊找鬼魂务。 笑死曼验,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的粘姜。 我是一名探鬼主播鬓照,決...
    沈念sama閱讀 38,313評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼孤紧!你這毒婦竟也來了豺裆?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,956評(píng)論 0 259
  • 序言:老撾萬榮一對(duì)情侶失蹤号显,失蹤者是張志新(化名)和其女友劉穎臭猜,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體押蚤,經(jīng)...
    沈念sama閱讀 43,441評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡蔑歌,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,925評(píng)論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了揽碘。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片次屠。...
    茶點(diǎn)故事閱讀 38,018評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡园匹,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出劫灶,到底是詐尸還是另有隱情金砍,我是刑警寧澤肮之,帶...
    沈念sama閱讀 33,685評(píng)論 4 322
  • 正文 年R本政府宣布,位于F島的核電站,受9級(jí)特大地震影響澎羞,放射性物質(zhì)發(fā)生泄漏倍阐。R本人自食惡果不足惜突那,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,234評(píng)論 3 307
  • 文/蒙蒙 一独旷、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧宿稀,春花似錦朱监、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至奋隶,卻和暖如春擂送,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背唯欣。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評(píng)論 1 261
  • 我被黑心中介騙來泰國(guó)打工嘹吨, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人境氢。 一個(gè)月前我還...
    沈念sama閱讀 45,467評(píng)論 2 352
  • 正文 我出身青樓蟀拷,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親萍聊。 傳聞我的和親對(duì)象是個(gè)殘疾皇子问芬,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,762評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容